Effacer les filtres
Effacer les filtres

Video files app designer

3 vues (au cours des 30 derniers jours)
T.A.S.
T.A.S. le 2 Juil 2018
Modifié(e) : Kevin Chng le 3 Sep 2018
How do I add an option to upload video files to app designer?
  1 commentaire
Kevin Chng
Kevin Chng le 3 Sep 2018
Modifié(e) : Kevin Chng le 3 Sep 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.

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Develop Apps Using App Designer dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by