diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2014-11-14 19:02:18 +0100 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2014-11-14 19:02:18 +0100 |
commit | 71f8c7ce7a03ec3d7a94f6733c5bde5536ce2bd8 (patch) | |
tree | 1503b70cb21e2a9171f30a89a745fd0d7b2d35aa | |
parent | 5fee0eeac04d0d63c1c1b78a35c5ed8b086f7d0e (diff) |
[mtvservices:embedded] Improve config url (fixes #4092)
-rw-r--r-- | youtube_dl/extractor/mtv.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/mtv.py b/youtube_dl/extractor/mtv.py index f0e28e66a..474bdff7d 100644 --- a/youtube_dl/extractor/mtv.py +++ b/youtube_dl/extractor/mtv.py @@ -186,7 +186,8 @@ class MTVServicesEmbeddedIE(MTVServicesInfoExtractor): def _get_feed_url(self, uri): video_id = self._id_from_uri(uri) site_id = uri.replace(video_id, '') - config_url = 'http://media.mtvnservices.com/pmt/e1/players/{0}/config.xml'.format(site_id) + config_url = ('http://media.mtvnservices.com/pmt/e1/players/{0}/' + 'context4/context5/config.xml'.format(site_id)) config_doc = self._download_xml(config_url, video_id) feed_node = config_doc.find('.//feed') feed_url = feed_node.text.strip().split('?')[0] |