[generic] Improve SBS detection (Fixes #4899)

This commit is contained in:
Philipp Hagemeister 2015-02-09 14:46:10 +01:00
parent 196121c51b
commit e98b8e79ea
1 changed files with 6 additions and 1 deletions

View File

@ -1047,7 +1047,12 @@ class GenericIE(InfoExtractor):
# Look for embedded sbs.com.au player
mobj = re.search(
r'<iframe[^>]+?src=(["\'])(?P<url>https?://(?:www\.)sbs\.com\.au/ondemand/video/single/.+?)\1',
r'''(?x)
(?:
<meta\s+property="og:video"\s+content=|
<iframe[^>]+?src=
)
(["\'])(?P<url>https?://(?:www\.)?sbs\.com\.au/ondemand/video/.+?)\1''',
webpage)
if mobj is not None:
return self.url_result(mobj.group('url'), 'SBS')