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.
.doc、.pdf、画像など、さまざまな形式のビデオ フレームを作成したいと考えています。出来ますか?
以下のコマンドを見つけました。ffmpeg -f image2 -i img%d.jpg /tmp/a.mpg
ただし、これは複数の画像で作成されます。単一の画像のビデオが必要です。
なにか提案を。
これはあなたのために働きますか?
ffmpeg -y -r 24 -loop_input -vframes 240 -i img.jpg test.mpg
単一の入力フレームから24fpsで10秒のmpgを作成する必要があります。