I capture audio files in the wave format in my Microsoft Surface application. Now for file size reasons, I'd like to convert the wave file into a mp3 file. I read in the Internet that a good possibility to do that is using lame.

But how can I call this exe file from my application? and how can I include it into my application?

link|improve this question

feedback

4 Answers

up vote 3 down vote accepted

Use Process class to call an external application:

string lameEXE = @"C:\path_of_lame\lame.exe";
string lameArgs = "-V2";

string wavFile = @"C:\my_wavs\input.wav";
string mp3File = @"C:\my_mp3s\output.mp3";

Process process = new Process();
process.StartInfo = new ProcessStartInfo();
process.StartInfo.FileName = lameEXE;
process.StartInfo.Arguments = string.Format(
    "{0} {1} {2}",
    lameArgs,
    wavFile,
    mp3File);

process.Start();
process.WaitForExit();

int exitCode = process.ExitCode;
link|improve this answer
Thanks, now I just wonder how to get the exe file? Do I have to compile the source code from the lame project? – Roflcoptr Dec 29 '10 at 13:15
i only know german sites where you can download windows binaries. try to search for "lame windows" in google to find a ready-to-use binary. – Marcel J. Kloubert Dec 29 '10 at 13:17
Ok thanks. I'll try it. (Btw... my german is far better than my english) – Roflcoptr Dec 29 '10 at 13:21
feedback

You can call an executable from .NET by using the System.Diagnostics.Process class and related classes - see here for the documentation.

Lame has pretty robust command line arguments, which can be found here. You can pass command line arguments to the Process using the ProcessStartInfo.Arguments property.

link|improve this answer
Thanks, now I just wonder how to get the exe file? Do I have to compile the source code from the lame project? – Roflcoptr Dec 29 '10 at 13:15
1  
I'd grab the latest executable and include it with the project personally. – Dave Dec 29 '10 at 13:18
feedback
public void mciConvertWavMP3(string fileName, bool waitFlag)
{
    //maxLen is in ms (1000 = 1 second)
    string outfile= "-b 32 --resample 22.05 -m m \"" + pworkingDir+fileName + "\" \"" + pworkingDir + fileName.Replace(".wav",".mp3") + "\"";
    System.Diagnostics.ProcessStartInfo psi = new System.Diagnostics.ProcessStartInfo();
    psi.FileName = "\"" + pworkingDir + "lame.exe" + "\"";
    psi.Arguments = outfile;
    //psi.WorkingDirectory = pworkingDir;
    psi.WindowStyle = System.Diagnostics.ProcessWindowStyle.Minimized;
    System.Diagnostics.Process p = System.Diagnostics.Process.Start(psi);

    if (waitFlag)
    {
        p.WaitForExit();
        // wait for exit of called application
    }
}

Above code taken from here .

Depending on the usage, you can incorporate a Process.StartInfo object, control properties such as ShellExecute and also redirect any output from the application to (say) a log file or UI component.

To bundle the exe with your project, check this question from stackoverflow out. Personally, I'd go with the first suggestions:

There are several ways you could accomplish this. First, you should add program.exe to the project. You would do this by right-clicking the project in Visual Studio, and selecting Add > Existing Item... Select program.exe, and it will appear in the project. Viewing its properties, you can set "Copy to Output Directory" to "Copy Always", and it will appear in your output directory beside your application.

If you stick to the above method, then reference lame.exe relatively ('....\Tools\Lame.exe' for example).

Finally, according to the official lame site : RareWares offers several compiled LAME versions, including modified versions featuring special functionality.

link|improve this answer
1  
Thanks a lot, this helps! Now the problem is, how can I get the lame.exe and how do I add it to my project so that I can also use it when the application is relaesed`` – Roflcoptr Dec 29 '10 at 13:07
I'd need to check for 100% certainty, but I'm sure you could just add the exe to some folder of the project, and reference it relatively (i.e ...\...\Tools\Lame.exe) in the filename property. – Dave Dec 29 '10 at 13:11
feedback

There is a DLL version of LAME, I would be surprised if you can't find a VB or C# example using it. Check this discussion thread: http://www.eggheadcafe.com/software/aspnet/31294459/-lameencdll-and-vbnet.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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