Hey guys I Need Help Is it Possible to make parts all Big 3gp File whose size is more then 5mb at Once
Convert Big 3gp file To Small
Collapse
X
-
To split video file into parts using ffmpeg
Originally posted by shushant View PostYa In parts
2. If u use CentOS 5.x.x then ur ffmpeg path will be /usr/local/bin/ and if u r using CentOS 6.x.x then its /usr/bin/
3. Use this code to split video into ur desired time frame
Code:# ffmpeg -i input.avi -vcodec copy -acodec copy -ss 00:00:00 -t 00:30:00 output1.avi # ffmpeg -i input.avi -vcodec copy -acodec copy -ss 00:30:00 -t 00:30:00 output2.avi
Comment
Comment