mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 15:14:57 +00:00
[soundcloud] Check direct links validity (Closes #5101)
This commit is contained in:
parent
2f0f6578c3
commit
562ceab13d
1 changed files with 3 additions and 2 deletions
|
@ -200,8 +200,9 @@ class SoundcloudIE(InfoExtractor):
|
|||
if f['format_id'].startswith('rtmp'):
|
||||
f['protocol'] = 'rtmp'
|
||||
|
||||
self._sort_formats(formats)
|
||||
result['formats'] = formats
|
||||
self._check_formats(formats, track_id)
|
||||
self._sort_formats(formats)
|
||||
result['formats'] = formats
|
||||
|
||||
return result
|
||||
|
||||
|
|
Loading…
Reference in a new issue