ffmpeg segment to devide video into small chunks -
hello want split video small chunks.i using ffmpeg segment achieve , want split video in same video lenght chunks.i using ffmpeg segment split video.i have written command
**ffmpeg -i first.mp4 -codec copy -map 0 -f segment -segment_time 10 -segment_list out.list splitvideo/out%04d.mp4**
when executing command splits video in small chunks not accurate.the chunks not of same length
from personal experience realized following: depending on video format, there dependencies between different frames. means frames depended on other frames decoded. therefore splitting maybe cannot done @ time want because of these dependencies might lost connections , hence cannot decoded later. ffmpeg find nearest point independent previous frames dependencies satisfied. cause different lengths.
Comments
Post a Comment