Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion. Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules. Domains: forum.doom9.org / forum.doom9.net / forum.doom9.se |
|
|||||||
![]() |
|
|
Thread Tools | Search this Thread | Display Modes |
|
|
#1 | Link |
|
Registered User
Join Date: Jan 2026
Location: Seattle
Posts: 1
|
Best FFmpeg Presets for HEVC Encoding With AV1 Fallback on Mid-Range GPUs
Hi everyone,
I’ve been using FFmpeg for a while to encode video, and I’m now trying to dial in a workflow that balances quality, speed, and compatibility. My goal is:
I’m particularly interested in recommendations for:
I’m aware of the bitrate ladder approach and CRF targets, but I’d love concrete examples and reasoning behind suggested settings. For instance, how you choose QP/CRF/bitrate targets for HEVC compared to AV1 for similar perceptual quality. Thanks in advance — keen to see what the community uses as a workflow here. Emily |
|
|
|
|
|
#3 | Link |
|
Donor
![]() Join Date: Jun 2024
Location: South Africa
Posts: 676
|
For AV1, try the SVT-AV1-HDR fork, which has good quality and handles grain tolerably well. The classic AV1 encoder, aom, used to have the best quality, but is less important today and terribly slow.
Code:
-c:v libsvtav1 -preset 4 -crf 30 -svtav1-params tune=0 Code:
-c:v libx265 -preset slow -crf 18 -x265-params no-sao=1:deblock=-1,-1:aq-mode=1 Code:
ffmpeg -i SRC.mp4 -c:v libx265 -preset slow -b:v 3000k -x265-params pass=1 -f null - ffmpeg -i SRC.mp4 -c:v libx265 -preset slow -b:v 3000k -x265-params pass=2 TEST.mp4 |
|
|
|
|
|
#4 | Link | |
|
Moderator
![]() Join Date: Jan 2006
Location: Portland, OR
Posts: 5,134
|
Quote:
What are you source formats and bitrates? Unless they are almost lossless or something ancient like DV25, reencoding enough to save significant bits almost always will have at least a minor visible quality loss. Actually saving bits while preserving source quality making both a HEVC and a AV1 is somewhere between "impossible" and "very slow and hard." Doing it with GPU encoding makes the very slow part better, but also loses some compression efficiency compared to a good software encode. So, big picture, what are you trying to accomplish? And is it something that buying a >10 TB hard drive for extra storage would accomplish a lot easier and cheaply? Just the electricity costs for doing this (and then the AC for getting rid of the waste heat of doing it when it gets hot, and this could easily last for seasons if you have a lot of content and you're trying to do an optimal job of it) might be more than the cost of a drive depending on where you live. Last edited by benwaggoner; 15th January 2026 at 21:42. |
|
|
|
|
![]() |
| Tags |
| av1, gpu, hevc, quality, video |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|