summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-02-26 01:35:43 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2015-02-26 01:35:43 +0100
commit72a406e7aa6ef751f5f2ad4b110b749ce40d70a4 (patch)
treeb1586914557295f625db7f2ca96bf362a45b14ca
parentfeccc3ff37975a67ea90cefdf028632794f2e6ff (diff)
downloadyoutube-dl-72a406e7aa6ef751f5f2ad4b110b749ce40d70a4.tar.gz
youtube-dl-72a406e7aa6ef751f5f2ad4b110b749ce40d70a4.tar.xz
youtube-dl-72a406e7aa6ef751f5f2ad4b110b749ce40d70a4.zip
[extractor/common] Pass in video_id (#5057)
-rw-r--r--youtube_dl/extractor/common.py6
1 files changed, 3 insertions, 3 deletions
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)