1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-10-04 17:54:35 -04:00

[rcs] Add new extractor

This commit is contained in:
nixxo
2020-10-28 20:32:28 +01:00
parent ddb77f30ee
commit a85e131b48
3 changed files with 421 additions and 0 deletions

View File

@@ -119,6 +119,7 @@ from .expressen import ExpressenIE
from .zype import ZypeIE
from .odnoklassniki import OdnoklassnikiIE
from .kinja import KinjaEmbedIE
from .rcs import RCSEmbedsIE
class GenericIE(InfoExtractor):
@@ -3213,6 +3214,12 @@ class GenericIE(InfoExtractor):
return self.playlist_from_matches(
zype_urls, video_id, video_title, ie=ZypeIE.ie_key())
# Look for RCS media group embeds
rcs_urls = RCSEmbedsIE._extract_urls(webpage)
if rcs_urls:
return self.playlist_from_matches(
rcs_urls, video_id, video_title, ie=RCSEmbedsIE.ie_key())
# Look for HTML5 media
entries = self._parse_html5_media_entries(url, webpage, video_id, m3u8_id='hls')
if entries: