SubRip text file format
Dan Tobias (Talk | contribs) |
m |
||
Line 26: | Line 26: | ||
* [http://forum.doom9.org/showthread.php?p=470941#post470941 Forum thread with some file format info] | * [http://forum.doom9.org/showthread.php?p=470941#post470941 Forum thread with some file format info] | ||
* [http://lav.io/2014/06/videogrep-automatic-supercuts-with-python/ Videogrep: Automatic Supercuts with Python] | * [http://lav.io/2014/06/videogrep-automatic-supercuts-with-python/ Videogrep: Automatic Supercuts with Python] | ||
+ | * [http;//example.com] |
Revision as of 18:11, 23 August 2025
The SubRip text file format (SRT) is used by the (free, Windows-based) SubRip program to save subtitles ripped from video files or DVDs. Unlike some other programs (e.g., VobSub) which rip DVD subtitles in their original graphic-based format, SubRip performs OCR (Optical Character Recognition) to convert the subtitles into plain text, allowing for more flexible use in rendering, searching, indexing, and data analysis.
The WebVTT format, a W3C draft in 2014, has some similarities to this format.
Format
The format is based on plain text with CR+LF as the line separator (though Unix-style LF/newline is sometimes found). Some HTML tags are sometimes used in the captions for such things as indicating bold or italic text.
Each subtitle is represented as a group of lines (separated from other subtitles by a blank line). The first line has a number (assigned sequentially to each title); the second line has a timestamp range within the video being captioned, with times expressed in the format hours:minutes:seconds,milliseconds and the start and end of the range separated by -->
.
The timestamp range can optionally be followed by a specific positioning by pixels, in the form X1:number Y1:number X2:number Y2:number
.
Then the following line(s) contain the actual subtitle/caption text, ended by a blank line. The HTML <b>, <i>, <u>, and <font> tags are allowed.