[streamable] Add helper for extracting embedded videos

This commit is contained in:
Yen Chi Hsuan 2016-10-11 17:44:35 +08:00
parent f165ca70eb
commit 555787d717
No known key found for this signature in database
GPG Key ID: 3FDDD575826C5C30
1 changed files with 11 additions and 0 deletions

View 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,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)