-
Notifications
You must be signed in to change notification settings - Fork 114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable mp3 encoder #69
Comments
which platform? lite build or default build? |
I tried with |
on windows you can use mp3_mf encoder。on other platforms libmp3lame is required, the build system is legacy, i'm not sure when I will add it. |
Can I help by creating a pull request? Having libmp3lame available everywhere would be helpful if it's not too heavy. |
You can create a pull request in https://github.com/wang-bin/devpkgs , I build dependencies using cmake in that repo. mp3lame does not support cmake, so you have to write yourself in https://github.com/wang-bin/devpkgs/tree/main/projects github actions will build the dependencies, then I will manually upload dependecies to https://sourceforge.net/projects/avbuild/files/dep/dep.7z/download , which will be used by avbuild. enabling libmp3lame in ffmpeg is quit easy. |
also interested for https://github.com/louis030195/screen-pipe |
why mp3? why not aac? |
PS: i switched to aac few days ago |
I'm interested in mp3 because that's the only encoding that works on some mp3 device players. |
I'm using
avbuild
in the (wip) project nova, which utilizesyt-dlp
to download audio and video content.When running
yt-dlp
with the arguments-x --audio-format mp3
, it attempts to re-encode the audio to mp3 but then throws the following error:ERROR: Postprocessing: audio conversion failed: Error opening output files: Encoder not found
Upon investigating, I found that the
ffmpeg
build does not havemp3
support enabled, as indicated by the output offfmpeg --codec
.Could you please enable
mp3
support inffmpeg
?Thanks!
The text was updated successfully, but these errors were encountered: