[generic] Add support for sportbox embeds

This commit is contained in:
Sergey M․ 2015-05-15 23:09:34 +06:00
parent ef28a6cb26
commit d40a3b5b55
1 changed files with 6 additions and 0 deletions

View File

@ -32,6 +32,7 @@
from .nbc import NBCSportsVPlayerIE
from .ooyala import OoyalaIE
from .rutv import RUTVIE
from .sportbox import SportBoxEmbedIE
from .smotri import SmotriIE
from .condenast import CondeNastIE
from .udn import UDNEmbedIE
@ -1229,6 +1230,11 @@ def _playlist_from_matches(matches, getter=None, ie=None):
if rutv_url:
return self.url_result(rutv_url, 'RUTV')
# Look for embedded SportBox player
sportbox_urls = SportBoxEmbedIE._extract_urls(webpage)
if sportbox_urls:
return _playlist_from_matches(sportbox_urls, ie='SportBoxEmbed')
# Look for embedded TED player
mobj = re.search(
r'<iframe[^>]+?src=(["\'])(?P<url>https?://embed(?:-ssl)?\.ted\.com/.+?)\1', webpage)