about summary refs log tree commit diff
path: root/youtube_dl/extractor/streamable.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-10-11 17:44:35 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-10-11 17:44:35 +0800
commit555787d717985531b3beba566cb976fd3f849aaa (patch)
treeac88c82585eaac044f5d7d38db8e7187137d7848 /youtube_dl/extractor/streamable.py
parentf165ca70eb4f7911949278e17751092a3cc8619f (diff)
downloadyoutube-dl-555787d717985531b3beba566cb976fd3f849aaa.tar.gz
youtube-dl-555787d717985531b3beba566cb976fd3f849aaa.tar.xz
youtube-dl-555787d717985531b3beba566cb976fd3f849aaa.zip
[streamable] Add helper for extracting embedded videos
Diffstat (limited to 'youtube_dl/extractor/streamable.py')
-rw-r--r--youtube_dl/extractor/streamable.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/youtube_dl/extractor/streamable.py b/youtube_dl/extractor/streamable.py
index 1c61437a4..56b926448 100644
--- a/youtube_dl/extractor/streamable.py
+++ b/youtube_dl/extractor/streamable.py
@@ -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,15 @@ class StreamableIE(InfoExtractor):
         }
     ]
 
+    @staticmethod
+    def _extract_url(webpage):
+        print(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)