Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
开发者_如何学Go Improve this questionHow can I convert wav to MP3 programatically in C++?
You would use an encoder, preferably as a pre-made library as doing your own is a bit of an undertaking.
See this question for an example of how to use the LAME open source encoder.
FFMpeg ( http://ffmpeg.org/ ) does this from a UNIX command line. So if you can open a pipe to the command line in C++, you can use ffmpeg for the conversion.
精彩评论