summaryrefslogtreecommitdiffhomepage
path: root/libs/fese-0.3.0.dist-info/METADATA
diff options
context:
space:
mode:
Diffstat (limited to 'libs/fese-0.3.0.dist-info/METADATA')
-rw-r--r--libs/fese-0.3.0.dist-info/METADATA34
1 files changed, 34 insertions, 0 deletions
diff --git a/libs/fese-0.3.0.dist-info/METADATA b/libs/fese-0.3.0.dist-info/METADATA
new file mode 100644
index 000000000..8c8782450
--- /dev/null
+++ b/libs/fese-0.3.0.dist-info/METADATA
@@ -0,0 +1,34 @@
+Metadata-Version: 2.1
+Name: fese
+Version: 0.3.0
+Summary: A library to extract FFmpeg subtitle streams
+Author-email: Vitiko Nogales <[email protected]>
+Requires-Python: >=3.7
+Description-Content-Type: text/markdown
+License-File: LICENSE
+Requires-Dist: babelfish
+Requires-Dist: pysubs2
+
+# fese
+
+A library to extract FFmpeg subtitle streams
+
+## Usage
+
+```python
+import logging
+import sys
+
+from fese.container import FFprobeVideoContainer
+
+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)
+```