mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
Merge remote-tracking branch 'chrisjrn/master'
This commit is contained in:
commit
ed7516c69d
@ -2361,6 +2361,17 @@ def _real_extract(self, url):
|
|||||||
# For now, just pick the highest bitrate
|
# For now, just pick the highest bitrate
|
||||||
format,video_url = turls[-1]
|
format,video_url = turls[-1]
|
||||||
|
|
||||||
|
# Patch to download from alternative CDN, which does not
|
||||||
|
# break on current RTMPDump builds
|
||||||
|
|
||||||
|
|
||||||
|
broken_cdn = "rtmpe://viacomccstrmfs.fplive.net/viacomccstrm/gsp.comedystor/"
|
||||||
|
better_cdn = "rtmpe://cp10740.edgefcs.net/ondemand/mtvnorigin/gsp.comedystor/"
|
||||||
|
|
||||||
|
if video_url.startswith(broken_cdn):
|
||||||
|
video_url = video_url.replace(broken_cdn, better_cdn)
|
||||||
|
|
||||||
|
|
||||||
effTitle = showId + u'-' + epTitle
|
effTitle = showId + u'-' + epTitle
|
||||||
info = {
|
info = {
|
||||||
'id': shortMediaId,
|
'id': shortMediaId,
|
||||||
@ -2372,7 +2383,7 @@ def _real_extract(self, url):
|
|||||||
'format': format,
|
'format': format,
|
||||||
'thumbnail': None,
|
'thumbnail': None,
|
||||||
'description': officialTitle,
|
'description': officialTitle,
|
||||||
'player_url': playerUrl
|
'player_url': None #playerUrl
|
||||||
}
|
}
|
||||||
|
|
||||||
results.append(info)
|
results.append(info)
|
||||||
|
Loading…
Reference in New Issue
Block a user