Open thewh1teagle opened 5 months ago
which platform? lite build or default build?
which platform? lite build or default build?
I tried with ffmpeg-6.1-windows-desktop-vs2022ltl-default
on Windows, though I use it on macOS too with ffmpeg-6.1-macOS-default
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.
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
why mp3? why not aac?
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: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!