====== Trimming videos with FFMPEG ====== To trim video with FFMPEG, use the following command: ffmpeg -i input.mp4 -ss xx:xx:xx -to yy:yy:yy -c copy output.mp4 where * input.mp4 is the input file * xx:xx:xx is the start time * yy:yy:yy is the end time * output.mp4 is the output file