mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-06 04:57:05 +01:00
[cbsnews] Fix construction of 'play_path' in some videos (fixes #7394)
This commit is contained in:
parent
cf5881fc4d
commit
1ebb4717df
@ -67,9 +67,12 @@ def _real_extract(self, url):
|
|||||||
'format_id': format_id,
|
'format_id': format_id,
|
||||||
}
|
}
|
||||||
if uri.startswith('rtmp'):
|
if uri.startswith('rtmp'):
|
||||||
|
play_path = re.sub(
|
||||||
|
r'{slistFilePath}', '',
|
||||||
|
uri.split('<break>')[-1].split('{break}')[-1])
|
||||||
fmt.update({
|
fmt.update({
|
||||||
'app': 'ondemand?auth=cbs',
|
'app': 'ondemand?auth=cbs',
|
||||||
'play_path': 'mp4:' + uri.split('<break>')[-1],
|
'play_path': 'mp4:' + play_path,
|
||||||
'player_url': 'http://www.cbsnews.com/[[IMPORT]]/vidtech.cbsinteractive.com/player/3_3_0/CBSI_PLAYER_HD.swf',
|
'player_url': 'http://www.cbsnews.com/[[IMPORT]]/vidtech.cbsinteractive.com/player/3_3_0/CBSI_PLAYER_HD.swf',
|
||||||
'page_url': 'http://www.cbsnews.com',
|
'page_url': 'http://www.cbsnews.com',
|
||||||
'ext': 'flv',
|
'ext': 'flv',
|
||||||
|
Loading…
Reference in New Issue
Block a user