MP3 Support (#14)

This commit is contained in:
Guillem Castro 2024-05-17 18:06:31 +02:00 committed by GitHub
parent 61d6268524
commit 9be6396112
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 529 additions and 81 deletions

View file

@ -25,3 +25,10 @@ tracing-subscriber = { version = "0.3", features = ["env-filter", "registry"] }
lazy_static = "1.4"
async-trait = "0.1"
dirs = "5.0"
mp3lame-encoder = { version = "0.1.5", optional = true }
futures = "0.3"
rayon = "1.10"
[features]
default = ["mp3"]
mp3 = ["dep:mp3lame-encoder"]