You cannot set the 'ErrorHandler' property of FrameReaderMessageHandler.
Show older comments
What is wrong here? I did not understand the error. I have attached the code and error message.


Answers (1)
Vishal Bhutani
on 30 Aug 2018
Based on my understanding, you want to get the number of frames by using property NumberOfFrames. As this is property is depreciated from MATLAB 2015b. You can try another work around like:
vidFile = '20180720_1505.avi';
vid = VideoReader(vidFile);
numFrames = ceil(vid.FrameRate*vid.Duration);
For more information you can refer to the following link: https://www.mathworks.com/matlabcentral/answers/250033-number-of-frames-in-video-file-with-matlab-2015b
Categories
Find more on Audio and Video Data 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!