0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ffmpeg を使って画像に動画を合成する話

Last updated at Posted at 2025-03-20

はじめに

FFmpeg を使って画像に動画を合成(画像を背景にして動画を重ね)し、一つの動画にする方法を個人的にまとめました。

動画を画像の上に重ねる

基本的な方法

$ ./ffmpeg -i image.png -i video.mp4 -filter_complex "[0][1]overlay=0:0" output.mp4

image.png: 背景にする画像ファイル
video.mp4: 重ねたい動画ファイル
overlay: 画像上の座標(動画の表示位置)
output.mp4: 出力ファイル名

動画のサイズを変更して重ねる

$ ./ffmpeg -i image.png -i video.mp4 -filter_complex "[1]scale=680:512[v];[0][v]overlay=62:38" output.mp4

[1]scale=680:512[v]: 動画のサイズを 680:512 にリサイズ
[0][v]overlay=62:38: 画像の (62, 38) の位置に動画を配置

ffmpeg_overlay_output2.gif

素材提供

いらすとや様
https://www.irasutoya.com/

Pexels 様
https://www.pexels.com/

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?