mmread crashing matlab.

9 visualizaciones (últimos 30 días)
Jhangir  Awan
Jhangir Awan el 15 de Oct. de 2015
Editada: Serge el 1 de Feb. de 2020
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?

Respuestas (2)

Image Analyst
Image Analyst el 15 de Oct. de 2015
That function is deprecated. Use the VideoReader class instead. I've attached an example.
  1 comentario
Serge
Serge el 1 de Feb. de 2020
Editada: Serge el 1 de Feb. de 2020
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

Iniciar sesión para comentar.


Dinesh Iyer
Dinesh Iyer el 16 de Oct. de 2015
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

Categorías

Más información sobre Programming en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by