vs-parsedvd
DVDs were an error.
A wrapper for DVD file structure and ISO files.
You can find me in the IEW Discord server, @Setsugennoao#6969.
How to install
Install parsedvd
with the following command:
$ pip install parsedvd
Or if you want the latest git version, install it with this command:
$ pip install git+https://github.com/Setsugennoao/vs-parsedvd.git
Usage
After installation, functions can be loaded and used as follows:
from parsedvd import IsoFile, DGIndexNV
# Indexing with D2VWitch
haruhi = IsoFile(r".\Suzumiya_2009_DVD\KABA_6001.ISO")
...
# Indexing with DGIndexNV
haruhi = IsoFile(r".\Suzumiya_2009_DVD\KABA_6001.ISO", DGIndexNV())
ep1, ep2, dvd_menu = haruhi.get_title(None, [(0, 7), (8, 15), -1])
...