]> Raphaƫl G. Git Repositories - youtubedl/blobdiff - youtube_dl/extractor/streamable.py
New upstream version 2016.12.01
[youtubedl] / youtube_dl / extractor / streamable.py
index 1c61437a45901b91691f1d394f92d272ffd2e333..2c26fa689003c6203399eca293c32c8998636ea5 100644 (file)
@@ -1,6 +1,8 @@
 # coding: utf-8
 from __future__ import unicode_literals
 
+import re
+
 from .common import InfoExtractor
 from ..utils import (
     ExtractorError,
@@ -48,6 +50,14 @@ class StreamableIE(InfoExtractor):
         }
     ]
 
+    @staticmethod
+    def _extract_url(webpage):
+        mobj = re.search(
+            r'<iframe[^>]+src=(?P<q1>[\'"])(?P<src>(?:https?:)?//streamable\.com/(?:(?!\1).+))(?P=q1)',
+            webpage)
+        if mobj:
+            return mobj.group('src')
+
     def _real_extract(self, url):
         video_id = self._match_id(url)