Filter löschen
Filter löschen

Loading and Saving a video

3 Ansichten (letzte 30 Tage)
Idan
Idan am 11 Mär. 2014
Beantwortet: Nitin am 12 Mär. 2014
Hi, I am new to the Video Processing toolbox in Matlab. Can someone please answer: How to load a video file using VideoReader and than saving the video using VideoWriter.

Antworten (1)

Nitin
Nitin am 12 Mär. 2014
You can find lots of information and examples here.
This should get you started:
%Read the movie file movie.mp4:
movie_loaded = VideoReader('movie.mp4');
nFrames = movie_loaded.NumberOfFrames;
vidHeight = movie_loaded.Height;
vidWidth = movie_loaded.Width;

Community Treasure Hunt

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

Start Hunting!

Translated by