Skip to content

Commit

Permalink
[soundcloud] Improve AAC format extraction (closes #19173, closes #24…
Browse files Browse the repository at this point in the history
…708)
  • Loading branch information
dstftw authored and bbepis committed May 14, 2020
1 parent c4534a7 commit 63f11c1
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions youtube_dl/extractor/soundcloud.py
Expand Up @@ -246,7 +246,12 @@ class SoundcloudIE(InfoExtractor):
'comment_count': int,
'repost_count': int,
},
}
},
{
# with AAC HQ format available via OAuth token
'url': 'https://soundcloud.com/wandw/the-chainsmokers-ft-daya-dont-let-me-down-ww-remix-1',
'only_matching': True,
},
]

_API_V2_BASE = 'https://api-v2.soundcloud.com/'
Expand Down Expand Up @@ -350,7 +355,8 @@ def add_format(f, protocol, is_preview=False):
format_id_list = []
if protocol:
format_id_list.append(protocol)
if f.get('ext') == 'aac':
ext = f.get('ext')
if ext == 'aac':
f['abr'] = '256'
for k in ('ext', 'abr'):
v = f.get(k)
Expand All @@ -362,9 +368,13 @@ def add_format(f, protocol, is_preview=False):
abr = f.get('abr')
if abr:
f['abr'] = int(abr)
if protocol == 'hls':
protocol = 'm3u8' if ext == 'aac' else 'm3u8_native'
else:
protocol = 'http'
f.update({
'format_id': '_'.join(format_id_list),
'protocol': 'm3u8_native' if protocol == 'hls' else 'http',
'protocol': protocol,
'preference': -10 if preview else None,
})
formats.append(f)
Expand Down

0 comments on commit 63f11c1

Please sign in to comment.