Comment faire de la vidéo de compression dans Linux

ffmpeg -i input.mp4 -vcodec libx265 -crf 20 output.mp4
# The higher the crf value, the smaller is the file size and decrease in video quality. So, you can use the crf value as 0 if you want lossless compression. However, that would lead to greater file size.
Friendly Fowl