So, I'm trying to run a command line, but it doesn't seem to do anything, i have no idea what i am missing, it is supposed to take an .asf video and convert it to .mp4, any idea will be useful, thanks.
string path1 = @"""C:\Users\Programacion\Desktop\vid.asf""";
string path2 = @"""C:\Users\Programacion\Desktop\vid.mp4""";
private void butConvert_Click(object sender, EventArgs e)
{
string strCmdText;
strCmdText = "/C ffmpeg.exe -i " + path1 + " -vcodec mpeg4 -b:v 1200k -flags +aic+mv4 " + path2 + " -loglevel panic";
System.Diagnostics.Process.Start(@"C:\Users\Programacion\documents\visual studio 2010\Projects\VideosDVR\VideosDVR\ffmpeg.exe", strCmdText);
}