VideoReader and VideoWriter on Matlab not getting the same framerate
3 views (last 30 days)
Show older comments
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);
0 Comments
Answers (1)
See Also
Categories
Find more on Audio and Video Data in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!