I need to merge some mp3 files in linux,
now I can write this command in linux command prompt :
cat a.mp3 b.mp3>>c.mp3
and I get c.mp3 file that composed of a.mp3+b.mp3
does anyone knows how to do it in c/c++ (I have many mp3 files to merge)
I tried some options like this:
#include <iostream>
#include <string>
#include <cstdlib>
using namespace std;
int main ()
{
"cat a.mp3 b.mp3>>c.mp3";
return 0;
}
but it failed to do it.
thanks in advance

New Topic/Question
Reply



MultiQuote



|