VideoReader and VideoWriter on Matlab not getting the same framerate

조회 수: 1 (최근 30일)
32sthide
32sthide 2014년 9월 25일
답변: 32sthide 2014년 9월 25일
In the original video I get 11 seconds and in the new one 5 seconds. Anyone knows the problem?
outputVideo = VideoWriter('openv_v.avi');
open(outputVideo);
vid = VideoReader('openv.avi');
for idx = 1:vid.NumberOfFrames
img = read(vid, idx);
writeVideo(outputVideo,img);
end
close(outputVideo);

답변 (1개)

32sthide
32sthide 2014년 9월 25일
Solved with one line.
outputVideo.FrameRate = vid.FrameRate;

카테고리

Help CenterFile Exchange에서 Audio and Video Data에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by