Update StripchatModel.java

This commit is contained in:
Jafea7 2025-08-31 16:46:07 +10:00
parent 86f95564ed
commit 6c512e5c0f
1 changed files with 4 additions and 2 deletions

View File

@ -215,8 +215,10 @@ public class StripchatModel extends AbstractModel {
log.debug("Spy start for {}", getName()); log.debug("Spy start for {}", getName());
} }
} }
String hlsUrlTemplate = "https://edge-hls.doppiocdn.com/hls/{0}{1}/master/{0}{1}_auto.m3u8?playlistType=Standart{2}"; // String hlsUrlTemplate = "https://edge-hls.doppiocdn.com/hls/{0}{1}/master/{0}{1}_auto.m3u8?playlistType=Standart{2}";
return MessageFormat.format(hlsUrlTemplate, String.valueOf(id), vrSuffix, token); String hlsUrlTemplate = "https://edge-hls.saawsedge.com/hls/{0}{1}/master/{0}{1}.m3u8";
// return MessageFormat.format(hlsUrlTemplate, String.valueOf(id), vrSuffix, token);
return MessageFormat.format(hlsUrlTemplate, String.valueOf(id), vrSuffix);
} else { } else {
throw new IOException("Playlist URL not found"); throw new IOException("Playlist URL not found");
} }