Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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(); 
share|improve this question

1 Answer

Try this:

    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 += "-ab 192 -f mp3";
    fileargs += " \"" + strOutputFile + "\"";
    ffmpegProcess.StartInfo.Arguments = fileargs;
    ffmpegProcess.StartInfo.FileName = Page.MapPath("ffmpeg.exe");
    ffmpegProcess.Start(); 
share|improve this answer
Thank you but I am getting the same without any changes. – Sudha Oct 10 '12 at 9:48
Did you get any error in console window? – Danilo Vulović Oct 10 '12 at 9:50
1  
Now it is working. I just replace "-ab 192 -f mp3" with " -f mp3". – Sudha Oct 11 '12 at 8:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.