summary refs log tree commit diff
diff options
context:
space:
mode:
authorPascal Brax <pascalbrax+github@gmail.com>2014-11-12 01:10:08 +0100
committerPascal Brax <pascalbrax+github@gmail.com>2014-11-12 01:10:08 +0100
commit2774852c2f69284966b84b00b221852c3041db62 (patch)
treea1c533935eb294470b7b2e785b6bcba72159bdcb
parentbbcc21efd1e5efd81dbd1fdfa16661cbb609c152 (diff)
downloadyoutube-dl-2774852c2f69284966b84b00b221852c3041db62.tar.gz
youtube-dl-2774852c2f69284966b84b00b221852c3041db62.tar.xz
youtube-dl-2774852c2f69284966b84b00b221852c3041db62.zip
Fix MTV/GameTrailers "Bad Request" error
Bugfix for bug #4123 & #4153
-rw-r--r--youtube_dl/extractor/mtv.py2
1 files changed, 1 insertions, 1 deletions
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 @@ class MTVServicesInfoExtractor(InfoExtractor):
         m = re.match(r'^rtmpe?://.*?/(?P<finalid>gsp\..+?/.*)$', 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):