Subtitle convertor (JavaScript)
Movie players like Media Player Classic support loading of subtitle files to display additional subtitles while playing (as known from DVD movies). A very common plain-text file format is SRT. However, Google's new Video Service uses a different format. As you may like to create and test your subtitles using the more common SRT, this tiny JavaScript helps you converting between one format and another.Manuel Haim, 31-Mar-2006
Just convert subtitles from SRT to GoogleVideo format and vice versa here: Timestamps must be in HH:MM:SS,mmm or HH:MM:SS.mmm format
(hours, minutes, seconds, milliseconds).
Examples of valid subtitle files:
SRT:
1 00:00:05,400 --> 00:00:12,400 MYSELF presents 2 00:00:17,320 --> 00:00:24,320 A DIY production 3 00:00:26,400 --> 00:00:33,400 An INGENIOUS film
GoogleVideo:
00:00:05.400 MYSELF presents 00:00:12.400 00:00:17.320 A DIY production 00:00:24.320 00:00:26.400 An INGENIOUS film 00:00:33.400
Main page