C#中使用ffmpeg合并視頻

來源:互聯網
上載者:User

標籤:測試   out   load   指令   路徑   詳細   下載   tin   最新   

首先將最新的ffmpeg.exe放到debug路徑下, http://www.ffmpeg.org/download.html

然後調用此方法

  public void CombineMp4WithoutTxt(string StrMP4A, string StrMP4B, string StrOutMp4Path)        {            Process p = new Process();//建立外部調用線程            p.StartInfo.FileName = System.Windows.Forms.Application.StartupPath + "\\ffmpeg.exe";//要調用外部程式的絕對路徑            string StrArg = "-i concat:\"" + StrMP4A + "|" + StrMP4B + "\" -vcodec copy -acodec copy " + StrOutMp4Path + " -y";            p.StartInfo.Arguments = StrArg;            p.StartInfo.UseShellExecute = false;//不使用作業系統外殼程式啟動線程(一定為FALSE,詳細的請看MSDN)            p.StartInfo.RedirectStandardError = true;//把外部程式錯誤輸出寫到StandardError流中(這個一定要注意,FFMPEG的所有輸出資訊,都為錯誤輸出資料流,用StandardOutput是捕獲不到任何訊息的...這是我耗費了2個多月得出來的經驗...mencoder就是用standardOutput來捕獲的)            p.StartInfo.CreateNoWindow = true;//不建立進程視窗            p.ErrorDataReceived += new DataReceivedEventHandler(Output);//外部程式(這裡是FFMPEG)輸出資料流時候產生的事件,這裡是把流的處理過程轉移到下面的方法中,詳細請查閱MSDN            p.Start();//啟動線程            p.BeginErrorReadLine();//開始非同步讀取            p.WaitForExit();//阻塞等待進程結束            p.Close();//關閉進程            p.Dispose();//釋放資源        }

此段代碼是異常拋出處理,請自行添加代碼

   private void Output(object sendProcess, DataReceivedEventArgs output)        {            if (!String.IsNullOrEmpty(output.Data))            {                //處理方法...            }        }

其中:

StrMP4A代表前視頻實體路徑如D:\A.mp4,StrMP4B代表後視頻實體路徑如D:\B.mp4,StrOutMp4Path代表合成的視頻實體路徑如D:\AB.mp4。

如果合成的效果不理想,如只合并了前視頻,或者合并後只有聲音都情況,請按照fmpeg.exe的CMD指令進行測試(請自行百度需要的命令),測試完畢修改此行即可

   string StrArg = "-i concat:\"" + StrMP4A + "|" + StrMP4B + "\" -vcodec copy -acodec copy " + StrOutMp4Path + " -y"; 

C#中使用ffmpeg合并視頻

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.