extract all frames from a .mov with a script
So let me slightly rephrase my question: I am looking for a possibility where I can extract开发者_如何学JAVA all frames from a .mov or .mp4 with a script.
Thanks for the time.
You can use ffmpeg
ffmpeg -i test.mpeg -vframes 1 test%d.jpg
精彩评论