diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-03-02 22:47:07 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-03-02 22:47:07 +0600 |
commit | 295df4edb97e3c0dc0ecd95746bb2c455607a4a3 (patch) | |
tree | 7e492d1005e0a7c7ff25771bd4beb7f1a5806c59 /youtube_dl | |
parent | 562ceab13dc3a19243d5ab9d4d5927031a608334 (diff) |
[soundcloud] Fix glitches (#5101)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/soundcloud.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/soundcloud.py b/youtube_dl/extractor/soundcloud.py index 95788098e..9d4505972 100644 --- a/youtube_dl/extractor/soundcloud.py +++ b/youtube_dl/extractor/soundcloud.py @@ -180,7 +180,7 @@ class SoundcloudIE(InfoExtractor): 'format_id': key, 'url': url, 'play_path': 'mp3:' + path, - 'ext': ext, + 'ext': 'flv', 'vcodec': 'none', }) |