Linux

How to compress video in h.265 or so called HEVC

Just by command line, easy as:

ffmpeg -i input.mp4  -c:v hevc -crf 26 -preset fast -c:a aac -b:a 128k output.mp4

or as:

ffmpeg -i input.mp4  -c:v libx265 -crf 26 -preset fast -c:a aac -b:a 128k output.mp4

Leave a Reply

Your email address will not be published. Required fields are marked *