switch to external downloader; Fixes #1 (hopefully...)
All checks were successful
CI/CD Pipeline / test (push) Successful in 5m31s
CI/CD Pipeline / deploy (push) Successful in 9m2s

This commit is contained in:
2025-07-30 20:55:01 +02:00
parent a7ab1e8360
commit 45e5c1954d
4 changed files with 333 additions and 93 deletions

View File

@@ -35,6 +35,7 @@ async fn get_streaming_url(url: String) -> Result<String, Box<dyn std::error::Er
return Err(String::from("No 'streams' found").into());
};
assert_eq!(streams.len(), 1);
let Some(id) = streams[0]["loopStreamId"].as_str() else {
return Err(String::from("No 'loopStreamId' found").into());
};