Fix MTV/GameTrailers "Bad Request" error
authorPascal Brax <pascalbrax+github@gmail.com>
Wed, 12 Nov 2014 00:10:08 +0000 (01:10 +0100)
committerPascal Brax <pascalbrax+github@gmail.com>
Wed, 12 Nov 2014 00:10:08 +0000 (01:10 +0100)
Bugfix for bug #4123 & #4153

youtube_dl/extractor/mtv.py

index 228b42d2b940d8eadd0fa3d5e61d0836fd19b7b7..f0e28e66ace8a5f59093eb2c9857968bcabf2dd7 100644 (file)
@@ -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):