summary refs log tree commit diff
diff options
context:
space:
mode:
authorremitamine <remitamine@gmail.com>2016-03-11 22:37:07 +0100
committerremitamine <remitamine@gmail.com>2016-03-11 22:37:07 +0100
commit09f572fbc07e79cc3f62e65149237ee1952aa12b (patch)
tree3aac2c848f8b65208ce1657149f942abbeb64962
parent58e6d097d894416c0d5d1f19a059b3614f823a9d (diff)
downloadyoutube-dl-09f572fbc07e79cc3f62e65149237ee1952aa12b.tar.gz
youtube-dl-09f572fbc07e79cc3f62e65149237ee1952aa12b.tar.xz
youtube-dl-09f572fbc07e79cc3f62e65149237ee1952aa12b.zip
[extractor/common] add transform_source to _download_smil and _extract_smil_formats
-rw-r--r--youtube_dl/extractor/common.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py
index aaca25a12..0b8b906ab 100644
--- a/youtube_dl/extractor/common.py
+++ b/youtube_dl/extractor/common.py
@@ -1147,8 +1147,8 @@ class InfoExtractor(object):
                 out.append('{%s}%s' % (namespace, c))
         return '/'.join(out)
 
-    def _extract_smil_formats(self, smil_url, video_id, fatal=True, f4m_params=None):
-        smil = self._download_smil(smil_url, video_id, fatal=fatal)
+    def _extract_smil_formats(self, smil_url, video_id, fatal=True, f4m_params=None, transform_source=None):
+        smil = self._download_smil(smil_url, video_id, fatal=fatal, transform_source=transform_source)
 
         if smil is False:
             assert not fatal
@@ -1165,10 +1165,10 @@ class InfoExtractor(object):
             return {}
         return self._parse_smil(smil, smil_url, video_id, f4m_params=f4m_params)
 
-    def _download_smil(self, smil_url, video_id, fatal=True):
+    def _download_smil(self, smil_url, video_id, fatal=True, transform_source=None):
         return self._download_xml(
             smil_url, video_id, 'Downloading SMIL file',
-            'Unable to download SMIL file', fatal=fatal)
+            'Unable to download SMIL file', fatal=fatal, transform_source=transform_source)
 
     def _parse_smil(self, smil, smil_url, video_id, f4m_params=None):
         namespace = self._parse_smil_namespace(smil)