youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit ffa2cecf7291a7b9aa40dba84a76c71fba20cc57
parent a8374160252e2bb7d52b85f7476e36b08e649d10
Author: Sergey M․ <dstftw@gmail.com>
Date:   Tue, 12 Apr 2016 21:20:31 +0600

[ard] Change subtitles extension to ttml (Closes #9169)

ttml is now served instead of srt

Diffstat:
Myoutube_dl/extractor/ard.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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, }]