Answers for "how to do compress video in linux"

0

how to do compress video in 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.
Posted by: Guest on April-25-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language