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]動画の1枚目の画像を切り出したい

Posted at

まえがき

next.jsで作ったサイトのvideo要素にposter属性でサムネイル設定しないと
スマホで表示した時にサムネイルが非表示になるんだよね
いちいちpremiereとか起動するのもめんどい

結論

ffmpegでやるといいよね。

Homebrewがインストールされてるか確認

brew -v

HomebrewでFFmpegをインストール

brew install ffmpeg

FFmpegがインストールされてるか確かめる

ffmpeg -version

動画の1フレーム名を指定し切り出す

ffmpeg -i /path/to/video.mp4 -ss 00:00:01.000 -vframes 1 /path/to/poster.jpg
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?