Ajout du decodage mp3 à pmoflac

This commit is contained in:
2025-10-27 18:13:50 +01:00
parent ca908fbe69
commit 0e26ebea31
10 changed files with 592 additions and 81 deletions

View File

@@ -25,3 +25,9 @@ impl From<claxon::Error> for FlacError {
FlacError::Decode(err.to_string())
}
}
impl From<String> for FlacError {
fn from(msg: String) -> Self {
FlacError::Decode(msg)
}
}