From: Antti Ajanki Date: Sun, 22 Feb 2015 08:18:36 +0000 (+0200) Subject: [extractor/common] Extract HTTP (possibly f4m) URLs from a .smil file X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=6f4ba54079893a09c6aa78fe3420523fb96df858;p=youtube-dl [extractor/common] Extract HTTP (possibly f4m) URLs from a .smil file --- diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 4fe99d25d..313688208 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -963,6 +963,14 @@ class InfoExtractor(object): 'width': width, 'height': height, }], rtmp_count) + elif proto.startswith('http'): + return ([{ + 'url': base + src, + 'ext': ext or 'flv', + 'tbr': bitrate, + 'width': width, + 'height': height, + }], rtmp_count) def _live_title(self, name): """ Generate the title for a live video """