ebuggage transcodage audio en flac

This commit is contained in:
2025-10-18 23:51:36 +02:00
parent 5fe1624f26
commit ee9dca75ba
7 changed files with 40 additions and 53 deletions

View File

@@ -634,11 +634,11 @@ mod tests {
std::fs::create_dir_all(&audio_dir).ok();
let cover_cache = Arc::new(
pmocovers::Cache::new(cover_dir.to_str().unwrap(), 100, "http://localhost:8080")
.await.unwrap()
pmocovers::Cache::new(cover_dir.to_str().unwrap(), 100)
.unwrap()
);
let audio_cache = Arc::new(
pmoaudiocache::new_cache(audio_dir.to_str().unwrap(), 100, "http://localhost:8080")
pmoaudiocache::new_cache(audio_dir.to_str().unwrap(), 100)
.unwrap()
);