summaryrefslogtreecommitdiffhomepage
path: root/libs/fese-0.3.0.dist-info/METADATA
diff options
context:
space:
mode:
authormorpheus65535 <[email protected]>2024-07-09 21:24:02 -0400
committermorpheus65535 <[email protected]>2024-07-09 21:24:02 -0400
commitca7f68bbc88458b22f75118244ecdb83361ebe6b (patch)
tree7c5c901c4648b93dc692f6c5aa59f8c4b45ff0b3 /libs/fese-0.3.0.dist-info/METADATA
parente3a3ef1e931ec6124f59941e14d6544be3a9e268 (diff)
parent124ddeb4b9b1a8fbb1d05b258dcdbb793a92284a (diff)
downloadbazarr-ca7f68bbc88458b22f75118244ecdb83361ebe6b.tar.gz
bazarr-ca7f68bbc88458b22f75118244ecdb83361ebe6b.zip
Merge remote-tracking branch 'origin/development' into developmentv1.4.4-beta.20
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)
+```