String FPG_Path;
            FPG_Path = @"D:\视频转换服务器\Video_Server\Video_Server\bin\Debug\ffmpeg.exe -y -i 1.wmv -b 360 -r 25 -s 320x240 -hq -deinterlace -ab 56 -ar 22050 -ac 1 2.flv";
            Process ps = new Process();
            ps.StartInfo.FileName = FPG_Path;
            ps.Start();---
为什么运行不了呢?上面
            FPG_Path = @"D:\视频转换服务器\Video_Server\Video_Server\bin\Debug\ffmpeg.exe -y -i 1.wmv -b 360 -r 25 -s 320x240 -hq -deinterlace -ab 56 -ar 22050 -ac 1 2.flv";若改成
            FPG_Path = @"D:\视频转换服务器\Video_Server\Video_Server\bin\Debug\ffmpeg.exe";就可以运行了,为什么呢?