how to capture frames from a avi video at a particular timing in a video
Show older comments
how to capture frames from a avi video at a particular timing in a video
Answers (1)
Walter Roberson
on 4 May 2012
0 votes
If the video is variable frame-rate, then the only way is to read the frames one-by-one, checking the time associated with the video object at each frame, and saving only the frames associated with times you are interested in.
If the video is fixed frame-rate then you can use the frame rate and the times to calculate starting and ending indices and you can ask for that range of frames.
VideoReader is recommended for this purpose, but you might be able to use the older mmreader as well.
Categories
Find more on Video Formats and Interfaces in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!