
使用方法:
將輸入檔拖曳到 List,用 Up / Down 排序,按 Start 開始合併
請確保輸入的影片參數一致
下載
https://www.dropbox.com/s/4a8dh4bimpnfaa0/ffconcat.7z
需要安裝 .NET Framework
http://msdn.microsoft.com/zh-tw/library/5a4x27ek%28v=vs.110%29.aspx
------------------------------------------------------------------------------------------------
FFmpeg CLI
ffmpeg -f concat -i mylist.txt -c copy output.mp4
mylist.txt
file 'D:\FlashVideos\Input_1.flv'ANSI or UTF-8 without BOM
file 'D:\FlashVideos\Input_2.flv'
file 'D:\FlashVideos\Input_3.flv'
CLI 使用說明
http://www.mobile01.com/topicdetail.php?f=300&t=3749946
一鍵 BAT
@echo off & cd/d "%~dp0"
set dir=D:\FlashVideos
if exist mylist.txt del mylist.txt
(for %i in (*.m2ts) do @echo file '%i') > inputs.txt
ffmpeg -f concat -i inputs.txt -c copy "E:\output.mp4"
pause
將要連接的檔案放在 "D:\FlashVideos",以檔名排序




























































































