Browse Source

[mtvservices] Fix mediagen URL generation

Sergey M․ 10 years ago
parent
commit
56f447be9f
1 changed files with 2 additions and 1 deletions
  1. 2 1
      youtube_dl/extractor/mtv.py

+ 2 - 1
youtube_dl/extractor/mtv.py

@@ -114,7 +114,8 @@ class MTVServicesInfoExtractor(InfoExtractor):
         # Remove the templates, like &device={device}
         # Remove the templates, like &device={device}
         mediagen_url = re.sub(r'&[^=]*?={.*?}(?=(&|$))', '', mediagen_url)
         mediagen_url = re.sub(r'&[^=]*?={.*?}(?=(&|$))', '', mediagen_url)
         if 'acceptMethods' not in mediagen_url:
         if 'acceptMethods' not in mediagen_url:
-            mediagen_url += '&acceptMethods=fms'
+            mediagen_url += '&' if '?' in mediagen_url else '?'
+            mediagen_url += 'acceptMethods=fms'
 
 
         mediagen_doc = self._download_xml(mediagen_url, video_id,
         mediagen_doc = self._download_xml(mediagen_url, video_id,
                                           'Downloading video urls')
                                           'Downloading video urls')