Metadata-Version: 2.1
Name: fese
Version: 0.1.1
Summary: A library to extract FFmpeg subtitle streams
Home-page: UNKNOWN
Author: Vitiko
Author-email: vhnz98@gmail.com
License: UNKNOWN
Project-URL: Source, https://github.com/vitiko98/fese
Project-URL: Issues, https://github.com/vitiko98/fese/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pysubs2
Requires-Dist: babelfish
Requires-Dist: setuptools
Provides-Extra: dev
Requires-Dist: tox ; extra == 'dev'
Provides-Extra: lint
Requires-Dist: black ; extra == 'lint'
Requires-Dist: isort ; extra == 'lint'
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'

# fese

A library to extract FFmpeg subtitle streams

## Usage

```python
import logging
import sys

import fese

logging.basicConfig(level=logging.DEBUG)

video_path = sys.argv[1]

video = fese.FFprobeVideoContainer(video_path)

subtitles = video.get_subtitles()

paths = video.extract_subtitles(subtitles)
print(paths)
```


