diff options
author | bashonly <88596187+bashonly@users.noreply.github.com> | 2024-12-12 13:39:38 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-12 13:39:38 +0000 |
commit | f4d3e9e6dc25077b79849a31a2f67f93fdc01e62 (patch) | |
tree | 79f18d91cec1ec4455c5f03b66ab8d92da7ae5a7 | |
parent | 6fef824025b3c2f0ca8af7ac9fa04b10d09a3591 (diff) |
[ie/soundcloud] Fix extraction (#11777)
Authored by: bashonly
-rw-r--r-- | yt_dlp/extractor/soundcloud.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/yt_dlp/extractor/soundcloud.py b/yt_dlp/extractor/soundcloud.py index e0dda8ff8..66bc5f9c5 100644 --- a/yt_dlp/extractor/soundcloud.py +++ b/yt_dlp/extractor/soundcloud.py @@ -259,6 +259,8 @@ class SoundcloudBaseIE(InfoExtractor): preset_base = preset.partition('_')[0] protocol = traverse_obj(t, ('format', 'protocol', {str})) or 'http' + if protocol.startswith(('ctr-', 'cbc-')): + continue if protocol == 'progressive': protocol = 'http' if protocol != 'hls' and '/hls' in format_url: |