Yen Chi Hsuan
8 years ago
No known key found for this signature in database
GPG Key ID: 7F902A182457CA23
2 changed files with
11 additions and
4 deletions
-
youtube_dl/extractor/generic.py
-
youtube_dl/extractor/ustream.py
|
|
@ -79,6 +79,7 @@ from .dbtv import DBTVIE |
|
|
|
from .piksel import PikselIE |
|
|
|
from .videa import VideaIE |
|
|
|
from .twentymin import TwentyMinutenIE |
|
|
|
from .ustream import UstreamIE |
|
|
|
|
|
|
|
|
|
|
|
class GenericIE(InfoExtractor): |
|
|
@ -2112,10 +2113,9 @@ class GenericIE(InfoExtractor): |
|
|
|
return self.url_result(mobj.group('url'), 'TED') |
|
|
|
|
|
|
|
# Look for embedded Ustream videos |
|
|
|
mobj = re.search( |
|
|
|
r'<iframe[^>]+?src=(["\'])(?P<url>http://www\.ustream\.tv/embed/.+?)\1', webpage) |
|
|
|
if mobj is not None: |
|
|
|
return self.url_result(mobj.group('url'), 'Ustream') |
|
|
|
ustream_url = UstreamIE._extract_url(webpage) |
|
|
|
if ustream_url: |
|
|
|
return self.url_result(ustream_url, UstreamIE.ie_key()) |
|
|
|
|
|
|
|
# Look for embedded arte.tv player |
|
|
|
mobj = re.search( |
|
|
|
|
|
@ -69,6 +69,13 @@ class UstreamIE(InfoExtractor): |
|
|
|
}, |
|
|
|
}] |
|
|
|
|
|
|
|
@staticmethod |
|
|
|
def _extract_url(webpage): |
|
|
|
mobj = re.search( |
|
|
|
r'<iframe[^>]+?src=(["\'])(?P<url>http://www\.ustream\.tv/embed/.+?)\1', webpage) |
|
|
|
if mobj is not None: |
|
|
|
return mobj.group('url') |
|
|
|
|
|
|
|
def _get_stream_info(self, url, video_id, app_id_ver, extra_note=None): |
|
|
|
def num_to_hex(n): |
|
|
|
return hex(n)[2:] |
|
|
|