Borrar filtros
Borrar filtros

Video files app designer

3 visualizaciones (últimos 30 días)
T.A.S.
T.A.S. el 2 de Jul. de 2018
Editada: Kevin Chng el 3 de Sept. de 2018
How do I add an option to upload video files to app designer?
  1 comentario
Kevin Chng
Kevin Chng el 3 de Sept. de 2018
Editada: Kevin Chng el 3 de Sept. de 2018
Hi, I'm looking at this solution as well.
However, I found an alternative way to do it.
v = VideoReader('song.mp4');
while hasFrame(v)
readFrame(v);
numFrames = numFrames + 1;
end
for i=1:1:length(v)
frame = read(v,iter2);
imshow(frame,'Parent',app.UIAxes2);
drawnow;
end
you may use button or axes to host image.

Iniciar sesión para comentar.

Respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by