Skip to main content

SubRip (.srt) subtitle parser and writer

Project description

pysrt

pysrt is a Python library used to edit or create SubRip files.

Foreword

pysrt is mainly designed as a library, but if you are experiencing troubles with bad subtitles you can first try to use ruby-osdb which will try to find the best subtitle for your movie. If you are still unlucky pysrt also provide an srt command useful for either shift, split, or rescale a .srt file.

Command Usage

Shifting:

$ srt -i shift 2s500ms movie.srt

Spliting:

$ srt split 58m26s movie.srt

Rescaling:

$ srt -i rate 23.9 25 movie.srt

Installation

pysrt is available on pypi. To intall it you can use either

pip:

$ sudo pip install pysrt

or distutils:

$ sudo easy_install pysrt

Library Usage

Import:

>>> from pysrt import SubRipFile

Parsing:

>>> subs = SubRipFile.open('some/file.srt')
# If you get a UnicodeDecodeError try to specify the encoding
>>> subs = SubRipFile.open('some/file.srt', encoding='iso-8859-1')

SubRipFile are list-like objects of SubRipItem instances:

>>> len(first_sub)
>>> first_sub = subs[0]

SubRipItem instances are editable just like pure Python objects:

>>> first_sub.text = "Hello World !"
>>> first_sub.start.seconds = 20
>>> first_sub.end.minutes = 5

Shifting:

>>> subs.shift(seconds=-2) # Move all subs 2 seconds earlier
>>> subs.shift(minutes=1)  # Move all subs 1 minutes later
>>> subs.shift(ratio=25/23.9) # convert a 23.9 fps subtitle in 25 fps
>>> first_sub.shift(seconds=1) # Move the first sub 1 second later
>>> first_sub.start += {'seconds': -1} # Make the first sub start 1 second earlier

Removing:

>>> del subs[12]

Slicing:

>>> part = subs.slice(starts_after={'minutes': 2, seconds': 30}, ends_before={'minutes': 3, 'seconds': 40})
>>> part.shift(seconds=-2)

Saving changes:

>>> subs.save('other/path.srt', encoding='utf-8')

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pysrt-0.4.0.tar.gz (13.1 kB view details)

Uploaded Source

File details

Details for the file pysrt-0.4.0.tar.gz.

File metadata

  • Download URL: pysrt-0.4.0.tar.gz
  • Upload date:
  • Size: 13.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pysrt-0.4.0.tar.gz
Algorithm Hash digest
SHA256 07af6915a507bfa372b2cab57fedbf5f5277f51f5f8a5d5f12b8cd68c4e33907
MD5 abd0ee70485ccc63817b24df6fe7d618
BLAKE2b-256 0708a7e822a1bb2db5703904f16b09ad87053292b551afa21baaaac4f7f9ff2a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page