mmread crashing matlab.

조회 수: 7 (최근 30일)
Jhangir  Awan
Jhangir Awan 2015년 10월 15일
편집: Serge 2020년 2월 1일
Im trying to use mmread to read in a sound file for a project. The line that crashes matlab is
[video, audio]=mmread('blah.wma');
This code works perfectly fine on my desktop with windows 7. This code however crashes matlab on my laptop which has windows 10. It exits with error 14084 win32 exception.
Any ideas?

답변 (2개)

Image Analyst
Image Analyst 2015년 10월 15일
That function is deprecated. Use the VideoReader class instead. I've attached an example.
  댓글 수: 1
Serge
Serge 2020년 2월 1일
편집: Serge 2020년 2월 1일
VideoReader seems buggy.
It is not reading the frame I request...
%read all frames (works correctly)
V = VideoReader(file);
II = read(V);
%read one frame at a time (broken)
x = 1:100;
for k = 1:100
I = read(V,k);
for j = 1:200 %check what frame was actually read
if all(II(:,:,:,j)==I,'all')
y(k) = j;
disp([k j])
break
end
end
end
%plot results
plot(x,y,'.-r',x,x,'.-b')
xlabel requested
ylabel obtained

댓글을 달려면 로그인하십시오.


Dinesh Iyer
Dinesh Iyer 2015년 10월 16일
mmread is not a MathWorks supplied function. It is a user submission on the File Exchange. MMREADER is a MATLAB function that has been renamed (as far as I can tell) to VideoReader.
Let me know if this function works for you. If it fails, paste the crash trace so that it is easy to tell what is going on. Another option is to contact support as it might be a bug that they need to fix.
Hope this helps.
Dinesh

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by