LoginSignup
0
0

More than 5 years have passed since last update.

複数音声のmp4ファイルの音声の音ズレを個別に調整する

Posted at

複数言語の音声が入ったMP4の動画の音ズレを修正する方法。

ffmpeg.exe -i "movie.mp4" -itsoffset 0.3 -i "movie.mp4" -itsoffset 0.4 -i "movie.mp4" -map 0:v -map 1:a:0 -map 2:a:1 -c copy "movie-audio-delayed.mp4"

これで一つ目の音声を0.3秒遅らせて、2つ目の音声を0.4秒遅らせる処理になる。
詳しくはStackoverflowの回答を参考に。

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0