feat: add audio track types
This commit is contained in:
parent
3a75ed8610
commit
86775ea95b
9 changed files with 1480 additions and 399 deletions
|
|
@ -171,6 +171,12 @@ impl From<reqwest::Error> for Error {
|
|||
}
|
||||
}
|
||||
|
||||
impl From<serde_plain::Error> for Error {
|
||||
fn from(value: serde_plain::Error) -> Self {
|
||||
Self::Other(value.to_string().into())
|
||||
}
|
||||
}
|
||||
|
||||
impl ExtractionError {
|
||||
pub(crate) fn should_report(&self) -> bool {
|
||||
matches!(
|
||||
|
|
|
|||
Reference in a new issue