diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-04-12 21:20:31 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-04-12 21:20:31 +0600 |
commit | ffa2cecf7291a7b9aa40dba84a76c71fba20cc57 (patch) | |
tree | 20184ba9d4ea5c412e8ee19d29868272255ebf86 /youtube_dl | |
parent | a8374160252e2bb7d52b85f7476e36b08e649d10 (diff) |
[ard] Change subtitles extension to ttml (Closes #9169)
ttml is now served instead of srt
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/ard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/ard.py b/youtube_dl/extractor/ard.py index 9fb84911a..26446c2fe 100644 --- a/youtube_dl/extractor/ard.py +++ b/youtube_dl/extractor/ard.py @@ -83,7 +83,7 @@ class ARDMediathekIE(InfoExtractor): subtitle_url = media_info.get('_subtitleUrl') if subtitle_url: subtitles['de'] = [{ - 'ext': 'srt', + 'ext': 'ttml', 'url': subtitle_url, }] |