そのため、FFMPEG
を使用してGIF形式のプレビューアニメーションを生成しています。 (基本的に、ビデオ全体の数秒を選択し、gif
として保存します)
ただし、youtube
がwebp
形式で生成するプレビューは、私が達成したものよりもサイズがはるかに小さいようです。
webp
形式で3秒のプレビューを生成するために使用するコマンドは次のとおりです。
ffmpeg -i d:\1.mp4 -lossless 0 -ss 00:00:00 -t 00:00:03 -s 320x180 1.webp
しかし、これは同等のgif
よりもまだ大きいです。
出力webp
アニメーションを減らす方法に関するヒントはありますか?
更新
最大圧縮と最小品質のffmpegを使用しても、webp
出力はgif2web
与える。
品質の低下 http://ffmpeg.org/ffmpeg-codecs.html#libwebp
-qscale float
For lossy encoding, this controls image quality, 0 to 100.
For lossless encoding, this controls the effort and time
spent at compressing more. The default value is 75.
Note that for usage via libavcodec, this option is called
global_quality and must be multiplied by FF_QP2LAMBDA.