2024-02-26

  • FFMPEG

ffmpeg is a suite of libraries and programs to handle video,audio & other multimedia files and streams.

Joining multiple videos using ffmpeg
$ ffmpeg -f concat -safe 0 -i joinvideo.txt -c copy episode2.mp4

vinay@falcon:~/Documents/blog$ cat ../KumaraParvathaVideo/joinvideo.txt 
file kp-peak-rest.mp4
file thick-forest.mp4
file rohan_vlog.mp4

Rotating a video by a certain degree using ffmpeg

ffmpeg -i inputfile.mp4 -vf "transpose=1" outputfile.mp4