C# ffmpeg 視頻處理格式轉換avi到MP4格式html
一、代碼以下:app
using System;
using System.Diagnostics;ui
namespace LongtengSupremeConsole
{
class Program
{
static void Main(string[] args)
{
string para = $"ffmpeg -i 123.avi 11233.mp4";
RunProcess(para);
Console.WriteLine("完成!");
Console.ReadKey();
}spa
static void RunProcess(string Parameters)
{
var p = new Process();
p.StartInfo.FileName = "CMD";
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.Arguments = Parameters;
p.StartInfo.UseShellExecute = false;
p.StartInfo.CreateNoWindow = true;
p.Start();
p.StandardInput.WriteLine(Parameters);
Console.WriteLine("\n開始轉碼...\n");
//p.WaitForExit();
// p.Close();
}
}
}
debug
二、首先debug生成Debug,而後把下載的ffmpeg.exe(能夠到https://ffmpeg.org/download.html下載,)拷貝到Debug下,直接運行程序就能夠了視頻
三、運行效果以下:htm
四、ffmpeg下載blog
第一種: https://ffmpeg.org/download.html,能夠看到源碼和build版本element
第二種:https://ffmpeg.zeranoe.com/builds/,直接下載編譯版本rem