19
20

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 5 years have passed since last update.

FFmpeg 静止画と音声から動画を作成する

Posted at

FFmpegは動画を扱うソフトウェアでLinuxだけでなくWindowsでもバイナリが配布されているそうです。今回は静止画と音声から動画をつくるのに利用しました。Versionの違いかGoogleって出てきた方法そのままではできなかったのでメモ。
ちなみにFFmpeg 2.2.3, Apple LLVM version 5.1で確認しました。

Install

OSXだとHomebrewで入ります。

brew install ffmpeg

静止画と音声から動画を作成する

ffmpeg -loop 1 -i picture.png -i audio.mp4 -shortest movie.mp4

shortestオプションをつけると入力ファイルのうち最も短いものにあわせてエンコードします。これをつけないと延々とエンコードし続けるので気をつけてください。

19
20
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
19
20

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?