about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-09-29 20:59:19 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-09-29 20:59:19 +0200
commitbb4aa62cf7ad3d5aae4edf56ab8954c80a2d8956 (patch)
tree733bf686642d19ec08502529aacf8961a1e35a7c
parent843530568f326294d714b5b9f11bbf6176d73ccf (diff)
downloadyoutube-dl-bb4aa62cf7ad3d5aae4edf56ab8954c80a2d8956.tar.gz
youtube-dl-bb4aa62cf7ad3d5aae4edf56ab8954c80a2d8956.tar.xz
youtube-dl-bb4aa62cf7ad3d5aae4edf56ab8954c80a2d8956.zip
[appletrailers] The request for the settings must have the trailer name in lower case (fixes #1329)
-rw-r--r--youtube_dl/extractor/appletrailers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/appletrailers.py b/youtube_dl/extractor/appletrailers.py
index b86c4b909..6d6237f8a 100644
--- a/youtube_dl/extractor/appletrailers.py
+++ b/youtube_dl/extractor/appletrailers.py
@@ -95,7 +95,7 @@ class AppleTrailersIE(InfoExtractor):
                 duration = 60 * int(m.group('minutes')) + int(m.group('seconds'))
 
             first_url = trailer_info['url']
-            trailer_id = first_url.split('/')[-1].rpartition('_')[0]
+            trailer_id = first_url.split('/')[-1].rpartition('_')[0].lower()
             settings_json_url = compat_urlparse.urljoin(url, 'includes/settings/%s.json' % trailer_id)
             settings_json = self._download_webpage(settings_json_url, trailer_id, u'Downloading settings json')
             settings = json.loads(settings_json)