How to extract frames from a vedio file in avi format?

3 views (last 30 days)
I tried the code below in both mp4 and avi files. The obj.NumFrames file is blank. There is not error messgae the object is created but the parameters are 0.
obj = VideoReader('k.avi');
vid = read(obj);
Can any one guide here.
Thanks

Accepted Answer

vishweshwar samba
vishweshwar samba on 20 Jul 2022
Try this
frameNo = 10;
videoReader = VideoReader('k.avi');
for i = 1:frameNo
frame = readFrame(videoReader); % read the next video frame
end
figure;
imshow(frame);
title('Video Frame 10');
  1 Comment
krishna Chauhan
krishna Chauhan on 20 Jul 2022
I dont know what happend previously :
It is perfectly working now, the code which I post.
Thanks

Sign in to comment.

More Answers (0)

Categories

Find more on Symbolic Math Toolbox 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!