2024-12-18, 10:00 PM
(2024-08-06, 09:25 PM)TheDreadPirate Wrote: ****This guide has been updated****
Jellyfin-ffmpeg 7.0.2-4 added a feature to remove Dolby Vision directly. The process of removing Dolby Vision can now be accomplished with a single ffmpeg command, greatly simplifying the process. I am leaving the original walkthrough for those on non-Jellyfin builds of ffmpeg or jellyfin-ffmpeg6.
Code:/usr/lib/jellyfin-ffmpeg/ffmpeg -y -hide_banner -stats -fflags +genpts+igndts -loglevel error -i "/path/to/dv_video.mkv" -map 0 -bsf:v hevc_metadata=remove_dovi=1 -codec copy -max_muxing_queue_size 2048 -max_interleave_delta 0 -avoid_negative_ts disabled hdr10_video.mkv
And that is it. Still no re-encoding required.
=========================================================================
This script worked great in Jellyfin 10.10.3 that I have in a Portainer Container on a Terramaster F4-423 NAS. I used the Exec Console of the Container to run the script and did some moving around in the host directories to get the updated MKV in the right folder for Radarr and Jellyfin.
Thanks.
Is there any way to make a plugin for Jellyfin or some other automation to make this simpler to do for us newbies?