1
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?

More than 1 year has passed since last update.

ffmepgで画像1枚と音声で動画を作ってみよう

Posted at

#説明
ffmepgで画像1枚と音声で動画を作ってみよう
#まずインストールしてください
以下のサイトを参照してください

#手順

1.画像1枚から無音の動画をつくる(muteoutput.mp4)
2.muteoutput.mp4に音を足した動画(output.mp4)をつくる
この二つの手順で行います。
そして何でもいいのでsample.jpgとsound.mp3を用意しましょう。

あとから気づいたのですが一気に画像と音声をくっつけるべきでした。
#画像1枚の無音動画をつくろう
以下のサイトを参考にしました。

コピペしてもらうと三秒の動画がつくられます

$ffmpeg -loop 1 -i sample.jpg -vcodec libx264 -pix_fmt yuv420p -t 3 -r 30 muteoutput.mp4

#無音動画に音を足そう
以下のサイトを参考にしました。

$ffmpeg -i muteoutput.mp4 -i sound.mp3 output.mp4

これをすると動画が完成しました。
#動画をみてみる
output.mp4を見てみてください。

1
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
1
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?