summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-09-21 15:47:58 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-09-21 15:47:58 +0200
commitdd41e8c82bb14bda0c407f9f0865cfb112e8fc30 (patch)
tree9bef8f36c30023d4021341feb6bf05c0d6e4b1ad
parentb509a4b17643422b750e5258f538894105c58d42 (diff)
downloadyoutube-dl-dd41e8c82bb14bda0c407f9f0865cfb112e8fc30.tar.gz
youtube-dl-dd41e8c82bb14bda0c407f9f0865cfb112e8fc30.tar.xz
youtube-dl-dd41e8c82bb14bda0c407f9f0865cfb112e8fc30.zip
[theplatform] Extract all formats for f4m videos
-rw-r--r--youtube_dl/extractor/theplatform.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/youtube_dl/extractor/theplatform.py b/youtube_dl/extractor/theplatform.py
index b6b2dba9c..031a958fa 100644
--- a/youtube_dl/extractor/theplatform.py
+++ b/youtube_dl/extractor/theplatform.py
@@ -62,10 +62,7 @@ class ThePlatformIE(InfoExtractor):
             # the parameters are from syfy.com, other sites may use others,
             # they also work for nbc.com
             f4m_url += '&g=UXWGVKRWHFSP&hdcore=3.0.3'
-            formats = [{
-                'ext': 'flv',
-                'url': f4m_url,
-            }]
+            formats = self._extract_f4m_formats(f4m_url, video_id)
         else:
             base_url = head.find(_x('smil:meta')).attrib['base']
             switch = body.find(_x('smil:switch'))