码迷,mamicode.com
首页 > 其他好文 > 详细

运用ffmpeg实现压缩视频

时间:2019-09-19 12:20:59      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:exception   work   current   shell   string   ring   new   exce   令行   

/// <param name="filePath">ffmpeg.exe的文件路径</param>
        /// <param name="Parameters">ffmpeg命令行</param>
        private static void RunProcess(string filePath, string Parameters)
        {

            ProcessStartInfo procStartInfo = new ProcessStartInfo(filePath, Parameters);
            procStartInfo.RedirectStandardOutput = true;
            procStartInfo.UseShellExecute = false;
            procStartInfo.CreateNoWindow = true;
            procStartInfo.WorkingDirectory = Environment.CurrentDirectory;

            //开启线程
            Process process = new Process() { StartInfo = procStartInfo, };
            process.Start();
            process.WaitForExit();
            if (process.ExitCode != 0)
            {
                throw new LibreOfficeFailedException(process.ExitCode);
            }
        }

注意,ffmpege要放在程序的bin目录下,不然线程会一直执行

参考资料:https://blog.csdn.net/zhongjie112/article/details/50448327

     https://www.jianshu.com/p/2f9e31dd291f

运用ffmpeg实现压缩视频

标签:exception   work   current   shell   string   ring   new   exce   令行   

原文地址:https://www.cnblogs.com/liguix/p/11548184.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!