[tvp] Fix embeds (#1401)

Authored by: selfisekai
This commit is contained in:
Lauren Liberda 2021-10-31 11:02:50 +05:30 committed by pukkandan
parent c0599d4fe4
commit 56bb56f3cf
No known key found for this signature in database
GPG key ID: 0F00D95A001F4698
2 changed files with 129 additions and 76 deletions

View file

@ -135,6 +135,7 @@ from .arcpublishing import ArcPublishingIE
from .medialaan import MedialaanIE
from .simplecast import SimplecastIE
from .wimtv import WimTVIE
from .tvp import TVPEmbedIE
class GenericIE(InfoExtractor):
@ -3508,6 +3509,10 @@ class GenericIE(InfoExtractor):
return self.playlist_from_matches(
rumble_urls, video_id, video_title, ie=RumbleEmbedIE.ie_key())
tvp_urls = TVPEmbedIE._extract_urls(webpage)
if tvp_urls:
return self.playlist_from_matches(tvp_urls, video_id, video_title, ie=TVPEmbedIE.ie_key())
# Look for HTML5 media
entries = self._parse_html5_media_entries(url, webpage, video_id, m3u8_id='hls')
if entries: