mmread crashing matlab.

8 次查看(过去 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