[TheSun] Add new extractor
authorEntropy <0fiscalentropy@users.noreply.github.com>
Fri, 7 Apr 2017 19:52:48 +0000 (21:52 +0200)
committerSergey M․ <dstftw@gmail.com>
Sat, 8 Apr 2017 12:54:04 +0000 (19:54 +0700)
youtube_dl/extractor/extractors.py
youtube_dl/extractor/thesun.py [new file with mode: 0644]

index 72728d919304cd83a42270d5b98ecfe79c6fd519..01865479cb79a924e13b8d9b26ad97cd2824f627 100644 (file)
@@ -983,6 +983,7 @@ from .theplatform import (
 from .thescene import TheSceneIE
 from .thesixtyone import TheSixtyOneIE
 from .thestar import TheStarIE
+from .thesun import TheSunIE
 from .theweatherchannel import TheWeatherChannelIE
 from .thisamericanlife import ThisAmericanLifeIE
 from .thisav import ThisAVIE
diff --git a/youtube_dl/extractor/thesun.py b/youtube_dl/extractor/thesun.py
new file mode 100644 (file)
index 0000000..7f96bf8
--- /dev/null
@@ -0,0 +1,27 @@
+from __future__ import unicode_literals
+
+from .common import InfoExtractor
+from .ooyala import OoyalaIE
+
+
+class TheSunIE(InfoExtractor):
+    _VALID_URL = r'https://(?:www\.)?thesun\.co\.uk/\w+/(?P<id>\d+)/[\w-]'
+    _TEST = {
+        'url': 'https://www.thesun.co.uk/tvandshowbiz/2261604/orlando-bloom-and-katy-perry-post-adorable-instagram-video-together-celebrating-thanksgiving-after-split-rumours/',
+        'md5': '5667123b24f25f43f4c4f381ef34c5c2',
+        'info_dict': {
+            'id': 'h4OXN0NzE6rv6ObkEifKcNA-gYUw4xFf',
+            'ext': 'mp4',
+            'title': 'Katy Perry and Orlando Bloom shut down split rumours with cute Thanksgiving video',
+            'description': 'Still going strong',
+            'duration': 31.28,
+        }
+    }
+
+    def _real_extract(self, url):
+        video_id = self._match_id(url)
+
+        webpage = self._download_webpage(url, video_id)
+        ooyala_id = self._search_regex(r'id\s*=\s*"thesun-ooyala-player-([^"]+)"', webpage, 'ooyala id')
+
+        return OoyalaIE._build_url_result(ooyala_id)