- MMPLAY which is a user submission
- Use VLC Player's ActiveX plugin within a MATLAB GUI.
How do I play a video in MATLAB?
144 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Federico Aliprandi
el 28 de Oct. de 2015
Comentada: Khaled Abdellatif
el 25 de Mzo. de 2020
Hello,
I need a way to start playing a video in fullscreen, without the user having to deal with the video player UI. I'm trying to do this:
video = 'path\to\my\video.avi';
videoReader = VideoReader(video);
fps = get(videoReader, 'FrameRate');
disp(fps); % the fps is correct: it's the same declared in the video file properties
currAxes = axes;
while hasFrame(videoReader)
vidFrame = readFrame(videoReader);
image(vidFrame, 'Parent', currAxes);
currAxes.Visible = 'off';
pause(1/videoReader.FrameRate);
end
The problem is that the video does not play at the correct speed: it seems slower and not smooth. Also, I need audio as well. What's the correct way to play a video in MATLAB without exposing the player UI to the user?
Thank you in advance for your help. :)
0 comentarios
Respuesta aceptada
Dinesh Iyer
el 28 de Oct. de 2015
MATLAB has no mechanism to play both and video from a video. There have been suggestions about using:
Dinesh
2 comentarios
Khaled Abdellatif
el 25 de Mzo. de 2020
can one use mmplay not for fullscreen? it does not work without fullscreen option
Más respuestas (3)
Image Analyst
el 28 de Oct. de 2015
Try this:
implay('rhinos.avi');
3 comentarios
Image Analyst
el 28 de Abr. de 2016
If you have Windows, you can use the Windows Media Player:
winopen('rhinos.avi');
Sk Sahariyaz Zaman
el 28 de Abr. de 2016
2 comentarios
sebas
el 5 de Mayo de 2018
Thank's for your example code, was very helpfull for me. One question... if you need to aply some image processing tecnique in each frame, which would be the best part of the code to do that?
Simon Weber
el 16 de Sept. de 2019
There's an easy way to play videos with sound using the Psychtoolbox.
Check out:
For the quickest way possible just type
SimpleMovieDemo(filename)
0 comentarios
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!