2024-12-11, 05:03 PM
(This post was last modified: 2024-12-11, 05:03 PM by TheDreadPirate.)
Your file still has the DV8 metadata attached. DV8 is HEVC only. Its presence is probably breaking exoplayer.
I wrote a guide for removing Dolby Vision, but it is for HEVC files and I'm not sure if this works for a file that is already AV1.
https://forum.jellyfin.org/t-converting-...n-to-hdr10
You can try anyway with this modified command.
Swapping hevc_metadata in the bitstream filter with av1_metadata.
I wrote a guide for removing Dolby Vision, but it is for HEVC files and I'm not sure if this works for a file that is already AV1.
https://forum.jellyfin.org/t-converting-...n-to-hdr10
You can try anyway with this modified command.
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 av1_metadata=remove_dovi=1 -codec copy -max_muxing_queue_size 2048 -max_interleave_delta 0 -avoid_negative_ts disabled hdr10_video.mkv
Swapping hevc_metadata in the bitstream filter with av1_metadata.