Browse Source

[soundcloud] Do not mistake original_format for ext (Fixes #1934)

totalwebcasting
Philipp Hagemeister 11 years ago
parent
commit
475700acfe
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/soundcloud.py

+ 1
- 1
youtube_dl/extractor/soundcloud.py View File

@ -99,7 +99,7 @@ class SoundcloudIE(InfoExtractor):
thumbnail = info['artwork_url']
if thumbnail is not None:
thumbnail = thumbnail.replace('-large', '-t500x500')
ext = info.get('original_format', u'mp3')
ext = u'mp3'
result = {
'id': track_id,
'uploader': info['user']['username'],


Loading…
Cancel
Save