[foxnews] Support Fox News Articles (closes #10598)
authorYen Chi Hsuan <yan12125@gmail.com>
Sun, 11 Sep 2016 10:32:45 +0000 (18:32 +0800)
committerYen Chi Hsuan <yan12125@gmail.com>
Sun, 11 Sep 2016 10:32:45 +0000 (18:32 +0800)
ChangeLog
youtube_dl/extractor/extractors.py
youtube_dl/extractor/foxnews.py

index 387dc7bf65c1822e4b62eef7408c480c51c4b834..a73a35e883b4a68d3b88cd8b9892ad2c4949512b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
 version <unreleased>
 
 Extractors
++ [foxnews] Support Fox News articles (#10598)
 * [iwara] Fix extraction after relaunch (#10462, #3215)
 * [newgrounds] Fix uploader extraction (#10584)
 
index 2e795260e020f1d1561fb4d43777ca15ce410d22..e9027fb696cdae478143116039d1fd186bf99302 100644 (file)
@@ -292,6 +292,7 @@ from .fourtube import FourTubeIE
 from .fox import FOXIE
 from .foxgay import FoxgayIE
 from .foxnews import (
+    FoxNewsVideoIE,
     FoxNewsIE,
     FoxNewsInsiderIE,
 )
index 5c7acd79592bef94775dfeb7eab1be4e7dd33d03..3e9a6a08c6de01774719dedc45d782c05adc1d4a 100644 (file)
@@ -6,7 +6,8 @@ from .amp import AMPIE
 from .common import InfoExtractor
 
 
-class FoxNewsIE(AMPIE):
+class FoxNewsVideoIE(AMPIE):
+    IE_NAME = 'foxnews:video'
     IE_DESC = 'Fox News and Fox Business Video'
     _VALID_URL = r'https?://(?P<host>video\.(?:insider\.)?fox(?:news|business)\.com)/v/(?:video-embed\.html\?video_id=)?(?P<id>\d+)'
     _TESTS = [
@@ -66,6 +67,35 @@ class FoxNewsIE(AMPIE):
         return info
 
 
+class FoxNewsIE(InfoExtractor):
+    _VALID_URL = r'https?://(?:www\.)?foxnews\.com/(?!v)([^/]+/)+(?P<id>[a-z-]+)'
+    IE_NAME = 'foxnews'
+
+    _TEST = {
+        'url': 'http://www.foxnews.com/politics/2016/09/08/buzz-about-bud-clinton-camp-denies-claims-wore-earpiece-at-forum.html',
+        'md5': '62aa5a781b308fdee212ebb6f33ae7ef',
+        'info_dict': {
+            'id': '5116295019001',
+            'ext': 'mp4',
+            'title': 'Trump and Clinton asked to defend positions on Iraq War',
+            'description': 'Veterans react on \'The Kelly File\'',
+            'timestamp': 1473299755,
+            'upload_date': '20160908',
+        },
+    }
+
+    def _real_extract(self, url):
+        display_id = self._match_id(url)
+        webpage = self._download_webpage(url, display_id)
+
+        video_id = self._html_search_regex(
+            r'data-video-id=([\'"])(?P<id>[^\'"]+)\1',
+            webpage, 'video ID', group='id')
+        return self.url_result(
+            'http://video.foxnews.com/v/' + video_id,
+            FoxNewsVideoIE.ie_key())
+
+
 class FoxNewsInsiderIE(InfoExtractor):
     _VALID_URL = r'https?://insider\.foxnews\.com/([^/]+/)+(?P<id>[a-z-]+)'
     IE_NAME = 'foxnews:insider'
@@ -83,7 +113,11 @@ class FoxNewsInsiderIE(InfoExtractor):
             'upload_date': '20160825',
             'thumbnail': 're:^https?://.*\.jpg$',
         },
-        'add_ie': [FoxNewsIE.ie_key()],
+        'params': {
+            # m3u8 download
+            'skip_download': True,
+        },
+        'add_ie': [FoxNewsVideoIE.ie_key()],
     }
 
     def _real_extract(self, url):
@@ -98,7 +132,7 @@ class FoxNewsInsiderIE(InfoExtractor):
 
         return {
             '_type': 'url_transparent',
-            'ie_key': FoxNewsIE.ie_key(),
+            'ie_key': FoxNewsVideoIE.ie_key(),
             'url': embed_url,
             'display_id': display_id,
             'title': title,