Notes: ffmpeg

Combine audio & video of different length

  1. Long audio & shortvideo:
ffmpeg -i Downloads/pooja_updated.mp4 -i aum.opus -map 0:v:0 -map 1:a:0 -c:v copy -shortest -y output3.mp4
Read more…

Compress video without quality loss

ffmpeg -i <input file>  -vcodec libx265 -crf 28 <output file>