2013-11-20 修正多段擷取影片
sudo apt-get install ffmpeg
-i 讀取檔案: foo1.mov ,-ss 開始攝取時間: 00:00:08 ,-t 總共攝取時間: 00:00:05 ,存到檔案: foo_1.mov
也就是 foo1.mov 8+5=13 開頭8秒 結尾至13秒 只攝取5秒影片長度之意
ffmpeg -i foo.mov -vcodec copy -acodec copy -ss 00:00:08 -t 00:00:05 foo_1.mov -vcodec copy -acodec copy -ss 00:00:18 -t 00:00:08 foo_2.mov
修正部份為:分割兩個檔案之前的options需要分別設定,一段輸出檔案跟隨一個新的設定,以前比較少用沒有發現抱歉。
ffmpeg -i infile options oufile1 options oufile2
沒有留言:
張貼留言