VideoReader: Unrecognized function or variable 'hasFrame'
이전 댓글 표시
I am following the VideoReader documentation from https://www.mathworks.com/help/matlab/ref/videoreader.html
When I try to run the example code using R2024a Update 5,
currAxes = axes;
v = VideoReader("xylophone_video.mp4");
while hasFrame(v)
vidFrame = readFrame(v);
image(vidFrame,"Parent",currAxes)
currAxes.Visible = "off";
pause(1/v.FrameRate)
end
the line with while hasFrame(v) throws an error: Unrecognized function or variable 'hasFrame'.
The VideoReader object was created, but the hasFrame(v) line does not work. Was support for this function removed? If so, what replaced it?
댓글 수: 5
Avni Agrawal
2024년 7월 23일
Can you share OS version? Because it is working fine for me on windows 11 R2024a as well as MATLAB Online R2024a
Walter Roberson
2024년 7월 23일
For debugging purposes, try examining
methods(v)
Alexander Brandt
2024년 7월 23일
Alexander Brandt
2024년 7월 23일
Avni Agrawal
2024년 7월 23일
MATLAB Version: 24.1.0.2537033 (R2024a)
Operating System: Microsoft Windows 11 Enterprise Version 10.0 (Build 22631)
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Audio and Video Data에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!