Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ichunjo/pyparsedvd
Parse and extract binary data from dvd files
https://github.com/ichunjo/pyparsedvd
dvd dvd-parse ifo
Last synced: 3 days ago
JSON representation
Parse and extract binary data from dvd files
- Host: GitHub
- URL: https://github.com/ichunjo/pyparsedvd
- Owner: Ichunjo
- License: mit
- Created: 2021-06-22T02:51:03.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-03-19T17:22:05.000Z (over 1 year ago)
- Last Synced: 2024-10-14T11:08:09.472Z (about 1 month ago)
- Topics: dvd, dvd-parse, ifo
- Language: Python
- Homepage:
- Size: 16.6 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pyparsedvd
Parse and extract binary data from dvd files
# Installation
```
python -m pip install pyparsedvd
```
or from Github:
```
python -m pip install git+https://github.com/Ichunjo/pyparsedvd.git
```# Example
```py
from pyparsedvd import load_vts_pgciwith open('DVD/VIDEO_TS/VTS_01_0.IFO', 'rb') as ifo_file:
vts_pgci = load_vts_pgci(ifo_file)print(vts_pgci)
```
# TODO
* Maybe one day add the sectors left# Credits
* [ChapterTool](https://github.com/tautcony/ChapterTool)
* [DVD Video Information](http://dvd.sourceforge.net/dvdinfo/ifo.html)