mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[soundcloud] Do not mistake original_format for ext (Fixes #1934)
This commit is contained in:
parent
45598aab08
commit
475700acfe
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ def _extract_info_dict(self, info, full_title=None, quiet=False, secret_token=No
|
||||||
thumbnail = info['artwork_url']
|
thumbnail = info['artwork_url']
|
||||||
if thumbnail is not None:
|
if thumbnail is not None:
|
||||||
thumbnail = thumbnail.replace('-large', '-t500x500')
|
thumbnail = thumbnail.replace('-large', '-t500x500')
|
||||||
ext = info.get('original_format', u'mp3')
|
ext = u'mp3'
|
||||||
result = {
|
result = {
|
||||||
'id': track_id,
|
'id': track_id,
|
||||||
'uploader': info['user']['username'],
|
'uploader': info['user']['username'],
|
||||||
|
|
Loading…
Reference in a new issue