summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-12-10 13:04:21 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-12-10 13:04:21 +0100
commitf67ca84d4a77bb15b959bcc2c0a88ad5c4efc9af (patch)
tree4cef817b7eb2a779b52649197eddd8a1e3ed587c
parente2b38da93112c97d46d612bf89c329b22ac2d00d (diff)
downloadyoutube-dl-f67ca84d4a77bb15b959bcc2c0a88ad5c4efc9af.tar.gz
youtube-dl-f67ca84d4a77bb15b959bcc2c0a88ad5c4efc9af.tar.xz
youtube-dl-f67ca84d4a77bb15b959bcc2c0a88ad5c4efc9af.zip
[soundcloud] Fix the extension for 'downloadable' songs
In this case the 'original_format' field must be used.
-rw-r--r--youtube_dl/extractor/soundcloud.py15
1 files changed, 14 insertions, 1 deletions
diff --git a/youtube_dl/extractor/soundcloud.py b/youtube_dl/extractor/soundcloud.py
index cc5f14593..cbba4094b 100644
--- a/youtube_dl/extractor/soundcloud.py
+++ b/youtube_dl/extractor/soundcloud.py
@@ -73,6 +73,19 @@ class SoundcloudIE(InfoExtractor):
                 u'upload_date': u'20131209',
             },
         },
+        # downloadable song
+        {
+            u'url': u'https://soundcloud.com/simgretina/just-your-problem-baby-1',
+            u'md5': u'56a8b69568acaa967b4c49f9d1d52d19',
+            u'info_dict': {
+                u'id': u'105614606',
+                u'ext': u'wav',
+                u'title': u'Just Your Problem Baby (Acapella)',
+                u'description': u'Vocals',
+                u'uploader': u'Sim Gretina',
+                u'upload_date': u'20130815',
+            },
+        },
     ]
 
     _CLIENT_ID = 'b45b1aa10f1ac2941910a7f0d10f8e28'
@@ -115,7 +128,7 @@ class SoundcloudIE(InfoExtractor):
                     track_id, self._CLIENT_ID))
             result['formats'] = [{
                 'format_id': 'download',
-                'ext': ext,
+                'ext': info.get('original_format', u'mp3'),
                 'url': format_url,
                 'vcodec': 'none',
             }]