X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fcommon.py;h=7977fa8d00faa01e95665e347fda4c492ab91ec0;hb=30cbd4e0d68361a20b036fc90bd53a8fa9a463dd;hp=31368820836f8d5d6f8ae571d508da40940221be;hpb=6f4ba54079893a09c6aa78fe3420523fb96df858;p=youtube-dl diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 313688208..7977fa8d0 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -923,18 +923,18 @@ class InfoExtractor(object): rtmp_count = 0 if smil.findall('./body/seq/video'): video = smil.findall('./body/seq/video')[0] - fmts, rtmp_count = self._parse_smil_video(video, base, rtmp_count) + fmts, rtmp_count = self._parse_smil_video(video, video_id, base, rtmp_count) formats.extend(fmts) else: for video in smil.findall('./body/switch/video'): - fmts, rtmp_count = self._parse_smil_video(video, base, rtmp_count) + fmts, rtmp_count = self._parse_smil_video(video, video_id, base, rtmp_count) formats.extend(fmts) self._sort_formats(formats) return formats - def _parse_smil_video(self, video, base, rtmp_count): + def _parse_smil_video(self, video, video_id, base, rtmp_count): src = video.get('src') if not src: return ([], rtmp_count)