McJenkins BANNED Joined Jul 29, 2013 Messages 210 Reaction score 70 Feb 15, 2019 #1 I need code to cut and combine video,anyone knows how to put the code properly?
M maybearobot Newbie Joined Jan 17, 2017 Messages 24 Reaction score 12 Mar 6, 2019 #2 If you know python, moviepy is super easy to use.
W Wiggles Junior Member Joined Feb 5, 2019 Messages 118 Reaction score 36 Mar 17, 2019 #3 Ffmpeg works great once you crack it. Stackoverflow is your friend, concat with complex variables are the told you need. If the videos are in a non-standard format things can be more tricky.
Ffmpeg works great once you crack it. Stackoverflow is your friend, concat with complex variables are the told you need. If the videos are in a non-standard format things can be more tricky.
kveldulv Regular Member Joined Aug 19, 2009 Messages 223 Reaction score 91 Mar 23, 2019 #4 Code: ffmpeg -i 'input.mp4' -map 0 -codec copy -f segment -segment_time 10:00 'output%03d.mp4' The options are as follows: -i ‘input.mp4’ → the name of the input file -map 0 → use the first input file for all outputs -codec copy → do not recompress the video -f segment → the output file will be multiple segments -segment_time 10:00 → create segments of this duration (10 minutes in the example) ‘output%03d.mp4’ → name the output files like output001.mp4 etc. (3 is the number of digits in the counter)
Code: ffmpeg -i 'input.mp4' -map 0 -codec copy -f segment -segment_time 10:00 'output%03d.mp4' The options are as follows: -i ‘input.mp4’ → the name of the input file -map 0 → use the first input file for all outputs -codec copy → do not recompress the video -f segment → the output file will be multiple segments -segment_time 10:00 → create segments of this duration (10 minutes in the example) ‘output%03d.mp4’ → name the output files like output001.mp4 etc. (3 is the number of digits in the counter)
J juanpal Newbie Joined Feb 17, 2016 Messages 3 Reaction score 1 Mar 23, 2019 #5 I've tried avconv for streaming video and that was good, with ffmpeg i have a big latency.
kveldulv Regular Member Joined Aug 19, 2009 Messages 223 Reaction score 91 Mar 23, 2019 #6 Stick with avconv then.