1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-02 02:19:29 +00:00

Merge pull request #363 from chalet16/master

Change a number of subtitle sequence to begin with one - closes #362
This commit is contained in:
Filippo Valsorda 2012-06-26 05:35:37 -07:00
commit 65dc7d0272

View file

@ -182,7 +182,7 @@ class YoutubeIE(InfoExtractor):
end = "%02i:%02i:%02i,%03i" %(end/(60*60), end/60%60, end%60, end%1*1000)
caption = unescapeHTML(caption)
caption = unescapeHTML(caption) # double cycle, intentional
srt += str(n) + '\n'
srt += str(n+1) + '\n'
srt += start + ' --> ' + end + '\n'
srt += caption + '\n\n'
return srt