aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/syfy.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-02-15 15:32:13 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-02-15 15:32:13 +0100
commit4edff78531c42aa126b02a9b792f84d2775c2172 (patch)
tree67f29a6706b9314a9013d8fe826f826340de2fd3 /youtube_dl/extractor/syfy.py
parent72ca1d7f45488d746337cdf61a70ff25d9e8411b (diff)
parentcf1eb4515315f7cb01ccb4fbac31928040f5ce04 (diff)
Merge remote-tracking branch 'jaimeMF/f4m'
Conflicts: youtube_dl/extractor/__init__.py
Diffstat (limited to 'youtube_dl/extractor/syfy.py')
-rw-r--r--youtube_dl/extractor/syfy.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/youtube_dl/extractor/syfy.py b/youtube_dl/extractor/syfy.py
new file mode 100644
index 000000000..502d43ec4
--- /dev/null
+++ b/youtube_dl/extractor/syfy.py
@@ -0,0 +1,30 @@
+from __future__ import unicode_literals
+
+import re
+
+from .common import InfoExtractor
+
+
+class SyfyIE(InfoExtractor):
+ _VALID_URL = r'https?://www\.syfy\.com/videos/.+?vid:(?P<id>\d+)'
+
+ _TEST = {
+ 'url': 'http://www.syfy.com/videos/Robot%20Combat%20League/Behind%20the%20Scenes/vid:2631458',
+ 'info_dict': {
+ 'id': 'NmqMrGnXvmO1',
+ 'ext': 'flv',
+ 'title': 'George Lucas has Advice for his Daughter',
+ 'description': 'Listen to what insights George Lucas give his daughter Amanda.',
+ },
+ 'params': {
+ # f4m download
+ 'skip_download': True,
+ },
+ 'add_ie': ['ThePlatform'],
+ }
+
+ def _real_extract(self, url):
+ mobj = re.match(self._VALID_URL, url)
+ video_id = mobj.group('id')
+ webpage = self._download_webpage(url, video_id)
+ return self.url_result(self._og_search_video_url(webpage))