summaryrefslogtreecommitdiffhomepage
path: root/libs/fese-0.3.0.dist-info/METADATA
diff options
context:
space:
mode:
authorJayZed <[email protected]>2024-09-29 21:05:46 -0400
committerJayZed <[email protected]>2024-09-29 21:05:46 -0400
commitc2a1e4d62c1bbb372127a78e4419a96d3c00e81c (patch)
treeaf19b97bbb71b514ef39928e55769fa85064e23a /libs/fese-0.3.0.dist-info/METADATA
parent4cc6806193127f9d6d3f2dab26969471d9bbf159 (diff)
parent0200bb96d98127ee32b6b66f8d6b9e21d4571a4d (diff)
downloadbazarr-1.4.5-beta.7.tar.gz
bazarr-1.4.5-beta.7.zip
Merge branch 'development' of https://github.com/morpheus65535/bazarr into developmentv1.4.5-beta.7
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)
+```