C# ffmpeg 視頻處理

ffmpeg的官網:https://ffmpeg.org/shell

ffmpeg是一個強大的視頻處理軟件(控制檯程序),能夠經過C# 調用ffmpeg,並傳入指令參數,便可實現視頻的編輯。ide

/// <summary>
/// 設置ffmpeg.exe的路徑
/// </summary>
static string FFmpegPath = @"C:\Users\Downloads\ffmpeg-20180613-67747c8-win64-static\bin\ffmpeg.exe";

static void Main(string[] args)
{
string videoUrl = @"D:\video\Wildlife.wmv";
string targetUrl = @"D:\video\newFile.mp4";

//視頻轉碼
string para = string.Format("-i {0} -b 1024k -acodec copy -f mp4 {1}", videoUrl, targetUrl);
RunMyProcess(para);

Console.WriteLine("完成!");
Console.ReadKey();
}

static void RunMyProcess(string Parameters)
{
var p = new Process();
p.StartInfo.FileName = FFmpegPath;
p.StartInfo.Arguments = Parameters;
//是否使用操做系統shell啓動
p.StartInfo.UseShellExecute = false;
//不顯示程序窗口
p.StartInfo.CreateNoWindow = true;
p.Start();
Console.WriteLine("\n開始轉碼...\n");
p.WaitForExit();
p.Close();
}spa


合併視頻
string para = string.Format(" -f concat -safe 0 -i {0} -c copy {1}", @"D:\video\filelist.txt", @"D:\video\c.mp4");
filelist.txt的內容:操作系統

file 'D:\video\input1.mp4'
file 'D:\video\input2.mp4'.net


原文連接https://blog.csdn.net/cctvcqupt/article/details/80695879?utm_source=blogxgwz0code

相關文章
相關標籤/搜索