Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Off Topic (https://forum.jellyfin.org/f-off-topic) +--- Forum: General Discussion (https://forum.jellyfin.org/f-general-discussion) +--- Thread: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) (/t-encoding-discussion-megathread-ffmpeg-handbrake-av1-etc) |
RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - TheDreadPirate - 2024-11-08 Our chat over in troubleshooting got me to come back here and update my process. Now that jf-ffmpeg7 has Dolby Vision removal bundled, it turned a multi-step workflow into a "one liner". This also removed a bunch of steps I needed to take to keep video, audio, and subtitles in sync. I had some additional discussions with Nyanmisaka about how to handle video with a lot of film grain, which caused significantly reduced quality due to the randomness. I had considered your de-noise approach, but ended up choosing to preserve the film grain. So I explored some additional parameters Nyanmisaka had suggested to try to better use the available bit rate. Code: ffmpeg \ Specifically Code: ### decode side The last four made a huge difference, both in terms of quality and just general bit rate. Here is a file size comparison with and without just those last four lines. Everything else is the same. Code: -rw-rw-r-- 1 chris jellyfin 4751175286 Nov 8 15:00 Jinroh-adaptiveFrames.mkv My git has my full automation script. Still a WIP. I think I've got it to where it will handle just about any edge case. At least edge cases I've encountered. Now comes clean up, finding efficiencies, and making it pretty. https://github.com/solidsnake1298/Arc-Encoding-Automator |