Skip to content

Commit 694157b

Browse files
Fix Soundcloud HLS Opus Regex to include hyphen
1 parent b05b184 commit 694157b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

extractor/src/main/java/org/schabi/newpipe/extractor/stream/SoundcloudHlsUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public final class SoundcloudHlsUtils {
2626
+ "([a-zA-Z0-9]+)/aac_160k/[a-f0-9\\-]+/playlist\\.m3u8");
2727
private static final Pattern OPUS_HLS_PATTERN =
2828
Pattern.compile("https://cf-hls-opus-media\\.sndcdn\\.com/"
29-
+ "playlist/([a-zA-Z0-9]+)\\.64\\.opus/playlist\\.m3u8");
29+
+ "playlist/([a-zA-Z0-9-]+)\\.64\\.opus/playlist\\.m3u8");
3030

3131
private SoundcloudHlsUtils() { }
3232

0 commit comments

Comments
 (0)