From: Pascal Brax Date: Wed, 12 Nov 2014 00:10:08 +0000 (+0100) Subject: Fix MTV/GameTrailers "Bad Request" error X-Git-Tag: 2021.01.07~10356 X-Git-Url: https://jfr.im/git/yt-dlp.git/commitdiff_plain/2774852c2f69284966b84b00b221852c3041db62 Fix MTV/GameTrailers "Bad Request" error Bugfix for bug #4123 & #4153 --- diff --git a/youtube_dl/extractor/mtv.py b/youtube_dl/extractor/mtv.py index 228b42d2b..f0e28e66a 100644 --- a/youtube_dl/extractor/mtv.py +++ b/youtube_dl/extractor/mtv.py @@ -33,7 +33,7 @@ def _transform_rtmp_url(rtmp_video_url): m = re.match(r'^rtmpe?://.*?/(?Pgsp\..+?/.*)$', rtmp_video_url) if not m: return rtmp_video_url - base = 'http://mtvnmobile.vo.llnwd.net/kip0/_pxn=1+_pxI0=Ripod-h264+_pxL0=undefined+_pxM0=+_pxK=18639+_pxE=mp4/44620/mtvnorigin/' + base = 'http://viacommtvstrmfs.fplive.net/' return base + m.group('finalid') def _get_feed_url(self, uri):