mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[cbs] extract rtmp formats
This commit is contained in:
parent
f3a58d46bf
commit
f74197a074
1 changed files with 5 additions and 2 deletions
|
@ -64,7 +64,7 @@ class CBSIE(CBSBaseIE):
|
||||||
'url': 'http://www.colbertlateshow.com/podcasts/dYSwjqPs_X1tvbV_P2FcPWRa_qT6akTC/in-the-bad-room-with-stephen/',
|
'url': 'http://www.colbertlateshow.com/podcasts/dYSwjqPs_X1tvbV_P2FcPWRa_qT6akTC/in-the-bad-room-with-stephen/',
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
}]
|
}]
|
||||||
TP_RELEASE_URL_TEMPLATE = 'http://link.theplatform.com/s/dJ5BDC/%s?manifest=m3u&mbr=true'
|
TP_RELEASE_URL_TEMPLATE = 'http://link.theplatform.com/s/dJ5BDC/%s?mbr=true'
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
display_id = self._match_id(url)
|
display_id = self._match_id(url)
|
||||||
|
@ -85,8 +85,11 @@ def _real_extract(self, url):
|
||||||
if not pid:
|
if not pid:
|
||||||
continue
|
continue
|
||||||
try:
|
try:
|
||||||
|
tp_release_url = self.TP_RELEASE_URL_TEMPLATE % pid
|
||||||
|
if '.m3u8' in xpath_text(item, 'contentUrl', default=''):
|
||||||
|
tp_release_url += '&manifest=m3u'
|
||||||
tp_formats, tp_subtitles = self._extract_theplatform_smil(
|
tp_formats, tp_subtitles = self._extract_theplatform_smil(
|
||||||
self.TP_RELEASE_URL_TEMPLATE % pid, content_id, 'Downloading %s SMIL data' % pid)
|
tp_release_url, content_id, 'Downloading %s SMIL data' % pid)
|
||||||
except ExtractorError:
|
except ExtractorError:
|
||||||
continue
|
continue
|
||||||
formats.extend(tp_formats)
|
formats.extend(tp_formats)
|
||||||
|
|
Loading…
Reference in a new issue