aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWitchakorn Kamolpornwijit <admin@chalet16.com>2012-06-26 19:24:30 +0700
committerWitchakorn Kamolpornwijit <admin@chalet16.com>2012-06-26 19:24:30 +0700
commit54041793389bc72def59a625dc59a4672cdb4825 (patch)
treee4bf87a3af5bd7b89b0f45f2959a889a8bbce415
parent7df97fb59f7994c32ecf552ee9dfec6c6be3bb1e (diff)
downloadyoutube-dl-54041793389bc72def59a625dc59a4672cdb4825.tar.xz
Change a number of subtitle sequence to begin with one (instead of zero) for ffmpeg,avcodec, and Matroska compatibility
-rw-r--r--youtube_dl/InfoExtractors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py
index d02bd29f7..0b5d76bdb 100644
--- a/youtube_dl/InfoExtractors.py
+++ b/youtube_dl/InfoExtractors.py
@@ -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