removed protocol from sxyprn stream format

This commit is contained in:
Simon
2025-10-01 10:28:08 +00:00
parent 23f6571911
commit 259106fa13

View File

@@ -278,7 +278,6 @@ impl SxyprnProvider {
let mut formats_vec = vec![];
formats_vec.push(
VideoFormat::new(video_url.clone(), "1080".to_string(), "m3u8".to_string())
.protocol("https".to_string())
.format_id(video_url.clone())
.ext("m3u8".to_string())
.video_ext("m3u8".to_string())
@@ -286,7 +285,6 @@ impl SxyprnProvider {
for surl in stream_urls {
formats_vec.push(
videos::VideoFormat::new(surl.clone(), "1080".to_string(), "m3u8".to_string())
.protocol("https".to_string())
.format_id(surl)
.ext("m3u8".to_string())
.video_ext("m3u8".to_string())