Clear Filters
Clear Filters

Calculating The Number of frames

9 views (last 30 days)
Abdussalam Elhanashi
Abdussalam Elhanashi on 23 Jan 2020
Answered: KALYAN ACHARJYA on 23 Jan 2020
Hi guys
just asking
is this code accurate for calculating the number of frames for such video
vidObj = VideoReader('myfile.mp4');
numFrames = 0;
while hasFrame(vidObj)
readFrame(vidObj);
numFrames = numFrames + 1;
end

Answers (1)

KALYAN ACHARJYA
KALYAN ACHARJYA on 23 Jan 2020

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!