cut's video to give start and end postion in matlab

15 visualizaciones (últimos 30 días)
Irfan Hussain
Irfan Hussain el 4 de Abr. de 2020
Comentada: Geoff Hayes el 14 de Dic. de 2021
hello ,
I have 5 video's length 18 sec each. i want code to cut each video which starting form 10 sec and 18 sec ending time.
All videos have same frames rate.
Any body help !!!

Respuestas (1)

Geoff Hayes
Geoff Hayes el 5 de Abr. de 2020
Irfan - try using the videoreader to load the video and read only the frames that you are interested in. The videoreader object will tell you the frame rate and from that you can figure out which set of frames to extract (those correspondng to the 10-18 second period). For example,
v = VideoReader('myVideo1.mp4');
fs = v.FrameRate;
frames = read(v,[(9*fs+1) Inf]); % read from 10-18 seconds
  2 comentarios
Anurag Paul
Anurag Paul el 14 de Dic. de 2021
isn't working, could you please check again?
Geoff Hayes
Geoff Hayes el 14 de Dic. de 2021
@anurag paul - please clarify what you mean by it "isn't working". Are you using the above code? Are you observing an error? If so, what is it?

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by