I'm using ffmpeg for audio conversion. I tried to convert recorded audio into mp3 format. I got the file but with 0 size. Can anyone help me to solve this?
Here is my code:
Process ffmpegProcess;
string strInputFile;
string strOutputFile;
strInputFile = Page.MapPath("audio.wav");
strOutputFile = Page.MapPath("audio.mp3");
ffmpegProcess = new Process();
string fileargs = " -i ";
fileargs += "\"" + strInputFile + "\"";
fileargs += " \"" + strOutputFile + "\"";
ffmpegProcess.StartInfo.Arguments = fileargs;
ffmpegProcess.StartInfo.FileName = Page.MapPath("ffmpeg.exe");
ffmpegProcess.Start();