运用ffmpeg实现压缩视频

Posted liguix

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了运用ffmpeg实现压缩视频相关的知识,希望对你有一定的参考价值。

/// <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实现压缩视频的主要内容,如果未能解决你的问题,请参考以下文章

高清视频压缩工具ffmpeg

视频文件太大?使用FFmpeg来无损压缩它

使用ffmpeg实现给音频,视频添加水印的操作

C# 使用神器ffmpeg.exe 压缩视频,流畅清晰体积小

ffmpeg中怎么编程实现获取视频中某指定的一帧

FFMpeg SDK使用3调用FFmpeg SDK实现视频编码