Browse Source

[pbs] skip_download for m3u8 test cases

Yen Chi Hsuan 10 years ago
parent
commit
5b61070c70
1 changed files with 15 additions and 3 deletions
  1. 15 3
      youtube_dl/extractor/pbs.py

+ 15 - 3
youtube_dl/extractor/pbs.py

@@ -35,6 +35,9 @@ class PBSIE(InfoExtractor):
                 'description': 'md5:ba0c207295339c8d6eced00b7c363c6a',
                 'description': 'md5:ba0c207295339c8d6eced00b7c363c6a',
                 'duration': 3190,
                 'duration': 3190,
             },
             },
+            'params': {
+                'skip_download': True,  # requires ffmpeg
+            },
         },
         },
         {
         {
             'url': 'http://www.pbs.org/wgbh/pages/frontline/losing-iraq/',
             'url': 'http://www.pbs.org/wgbh/pages/frontline/losing-iraq/',
@@ -46,6 +49,9 @@ class PBSIE(InfoExtractor):
                 'description': 'md5:f5bfbefadf421e8bb8647602011caf8e',
                 'description': 'md5:f5bfbefadf421e8bb8647602011caf8e',
                 'duration': 5050,
                 'duration': 5050,
             },
             },
+            'params': {
+                'skip_download': True,  # requires ffmpeg
+            }
         },
         },
         {
         {
             'url': 'http://www.pbs.org/newshour/bb/education-jan-june12-cyberschools_02-23/',
             'url': 'http://www.pbs.org/newshour/bb/education-jan-june12-cyberschools_02-23/',
@@ -68,7 +74,10 @@ class PBSIE(InfoExtractor):
                 'title': 'Dudamel Conducts Verdi Requiem at the Hollywood Bowl - Full',
                 'title': 'Dudamel Conducts Verdi Requiem at the Hollywood Bowl - Full',
                 'duration': 6559,
                 'duration': 6559,
                 'thumbnail': 're:^https?://.*\.jpg$',
                 'thumbnail': 're:^https?://.*\.jpg$',
-            }
+            },
+            'params': {
+                'skip_download': True,  # requires ffmpeg
+            },
         },
         },
         {
         {
             'url': 'http://www.pbs.org/wgbh/nova/earth/killer-typhoon.html',
             'url': 'http://www.pbs.org/wgbh/nova/earth/killer-typhoon.html',
@@ -82,7 +91,10 @@ class PBSIE(InfoExtractor):
                 'duration': 3172,
                 'duration': 3172,
                 'thumbnail': 're:^https?://.*\.jpg$',
                 'thumbnail': 're:^https?://.*\.jpg$',
                 'upload_date': '20140122',
                 'upload_date': '20140122',
-            }
+            },
+            'params': {
+                'skip_download': True,  # requires ffmpeg
+            },
         },
         },
         {
         {
             'url': 'http://www.pbs.org/wgbh/pages/frontline/united-states-of-secrets/',
             'url': 'http://www.pbs.org/wgbh/pages/frontline/united-states-of-secrets/',
@@ -104,7 +116,7 @@ class PBSIE(InfoExtractor):
             },
             },
             'params': {
             'params': {
                 'skip_download': True,  # requires ffmpeg
                 'skip_download': True,  # requires ffmpeg
-            }
+            },
         }
         }
     ]
     ]