LoginSignup
1
1

More than 1 year has passed since last update.

ffmpeg でジャケット(サムネイル)を aac とかに

Last updated at Posted at 2021-05-28

ffmpeg でジャケットのサムネイルを埋め込む為の忘備録

aac とか m4a とか mp4 な音声ファイルに対応

ffmpeg -i 音声ファイルネーム \
        -i サムネイル画像ファイルネーム \
        -map 0:a \
        -map 1:v \
        -c copy \
        -disposition:1 attached_pic \
        出力ファイルネーム
1
1
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
1