Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ビデオから毎秒 1 フレームをフェッチしたい。たとえば、32 秒のビデオがある場合、そのビデオの 32 枚の画像、つまり 1 秒あたり 1 枚の画像が必要です。
out1.pngこれにより、 、out2.png、 out3.png、 ...という名前の 1 秒ごとに 1 つのサムネイル画像が作成されます。
out1.png
out2.png
out3.png
ffmpeg -i input.flv -f image2 -vf fps=fps=1 out%d.png
動画の X 秒ごとにサムネイル画像を作成する