ビデオ ファイルからスナップショットを表示せずに (数分間隔で) 自動的に取得するツールまたはプログラムを探しています。Mkv サポートはいいですね!
5855 次
1 に答える
4
ffmpeg マニュアル ページhttp://ffmpeg.org/ffmpeg.htmlから:
For extracting images from a video:
ffmpeg -i foo.avi -r 1 -s WxH -f image2 foo-%03d.jpeg
This will extract one video frame per second from the video and will output them in files named ‘foo-001.jpeg’, ‘foo-002.jpeg’, etc. Images will be rescaled to fit the new WxH values.
フレーム位置や時間などに応じて画像を抽出するための他のオプションがあります。
于 2012-08-18T14:21:51.620 に答える