Metadata-Version: 2.1
Name: vsparsedvd
Version: 0.1.0
Summary: Vapoursynth Wrapper for DVDs stuff
Author: Setsugen no ao
Author-email: setsugen@setsugen.dev
Maintainer: Setsugen no ao
Maintainer-email: setsugen@setsugen.dev
Project-URL: Source Code, https://github.com/Irrational-Encoding-Wizardry/vs-parsedvd
Project-URL: Documentation, https://vsparsedvd.encode.moe/en/latest/
Project-URL: Contact, https://discord.gg/qxTxVJGtst
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE

# vs-parsedvd

### DVDs were an error.
<br>

A wrapper for DVD file structure and ISO files.

You can find me in the [IEW Discord server](https://discord.gg/qxTxVJGtst), @Setsugennoao#6969.
<br><br>
## How to install

Install `vsparsedvd` with the following command:

```sh
$ pip install vsparsedvd
```

Or if you want the latest git version, install it with this command:

```sh
$ pip install git+https://github.com/Irrational-Encoding-Wizardry/vs-parsedvd.git
```
<br>

## Usage

After installation, functions can be loaded and used as follows:

```py
from vsparsedvd 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])
...
```
