projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f165ca7
)
[streamable] Add helper for extracting embedded videos
author
Yen Chi Hsuan
<yan12125@gmail.com>
Tue, 11 Oct 2016 09:44:35 +0000
(17:44 +0800)
committer
Yen Chi Hsuan
<yan12125@gmail.com>
Tue, 11 Oct 2016 09:44:35 +0000
(17:44 +0800)
youtube_dl/extractor/streamable.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/streamable.py
b/youtube_dl/extractor/streamable.py
index 1c61437a45901b91691f1d394f92d272ffd2e333..56b92644847d1ccb8cd6b8a0c03d4f03260c7f47 100644
(file)
--- 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)