Video files app designer

3 次查看(过去 30 天)
T.A.S.
T.A.S. 2018-7-2
How do I add an option to upload video files to app designer?
  1 个评论
Kevin Chng
Kevin Chng 2018-9-3
编辑:Kevin Chng 2018-9-3
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.

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Develop Apps Using App Designer 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by