Parser for SRT and WebVTT subtitle files
Project description
subtitle-parser
This is a simple Python library for parsing subtitle files in SRT or WebVTT format.
How to use stand-alone?
You can use this as a script to convert subtitles to HTML or CSV.
If you have installed it using pip install subtitle-parser
, use python3 -m subtitle_parser
. If you have cloned this repository or downloaded the file, use python3 subtitle_parser.py
.
Examples:
$ python3 subtitle_parser.py --to csv Zoom_transcript.vtt --output transcript.csv
$ python3 -m subtitle_parser --to html episode.srt --input-charset iso-8859-15 --output dialogue.html
How to use as a library?
import subtitle_parser
with open('some_file.srt', 'r') as input_file:
parser = subtitle_parser.SrtParser(input_file)
parser.parse()
parser.print_warnings()
for subtitle in parser.subtitles:
print(subtitle.text)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
subtitle-parser-1.1.0.tar.gz
(5.5 kB
view details)
Built Distribution
File details
Details for the file subtitle-parser-1.1.0.tar.gz
.
File metadata
- Download URL: subtitle-parser-1.1.0.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8d44e212fb4992eeed3f5308f9b6e4d65b9ad2f59ebce93e383bfd3be6ca5857 |
|
MD5 | 455679b3f958a7c9967bc862ba91e52f |
|
BLAKE2b-256 | ec9d591dca4194599d6e75ef0115dfa2b42da186422983ac66fa4936f01081b0 |
File details
Details for the file subtitle_parser-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: subtitle_parser-1.1.0-py3-none-any.whl
- Upload date:
- Size: 5.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1849ffedbbb8201119e21f5bcf58b5ae3092a301947476c857e733d85ec990ba |
|
MD5 | 8e934028d905902f60ee57ef93489bcd |
|
BLAKE2b-256 | 05d31d41bd514e5b2647c428392dec8de37103753c8a83aa9660ce592c23dbcd |