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 months 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 (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-19T17:22:05.000Z (over 2 years ago)
- Last Synced: 2025-04-11T02:20:38.870Z (3 months ago)
- Topics: dvd, dvd-parse, ifo
- Language: Python
- Homepage:
- Size: 16.6 KB
- Stars: 6
- Watchers: 1
- 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)