Is there any LAME C++ wrapper\simplifier (working on Linux Mac and Win from pure code)?

Lame really isn’t difficult to use, although there are a lot of optional configuration functions if you need them. It takes slightly more than 4-5 lines to encode a file, but not much more. Here is a working example I knocked together (just the basic functionality, no error checking): #include <stdio.h> #include <lame/lame.h> int main(void) … Read more