#author("2021-11-03T12:50:46+00:00","","")
#topicpath


///////////////////////////////////////////////////////////////////////////////
* 目次 [#nda09832]
#contents();

///////////////////////////////////////////////////////////////////////////////
* ffmeg [#b6085777]

//=============================================================================
** 動画の結合 [#e64c89db]
+ 結合したい動画ファイルのリストをテキストで作成する
-- 書式:
 file <path-to-movie-file>
-- 例: ファイル名を list.txt とする
 file ./movie/m-01.mp4
 file ./movie/m-02.mp4
 file ./movie/m-03.mp4
 file ./movie/m-0N.mp4
+ 結合する
 $ ffmpeg -f concat -safe 0 -i <list-of-movie-files> -c copy <output-movie-file>
- オプション
|~option |~description |~remark |
|-c copy |再エンコード無しで結合 |再エンコードしないので高速。結合対象が全て同一エンコードの動画の場合のみ使用可。 |
|-safe 0 |                      |'Unsafe file name '<movie-file>' <list-file>: Operation not permitted' というエラーが出た場合、これで回避できる。|


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS