2024-11-23, 02:36 PM
(2024-11-23, 02:14 PM)theguymadmax Wrote: There's a bug with the Firestick affecting content playback that contain both Dolby Vision and HDR+. I've encountered the same split-screen issue before. See the linked issues below.
https://github.com/androidx/media/issues/957
https://github.com/jellyfin/jellyfin-and...ssues/2630
A workaround involves removing the HDR+ metadata from the file using FFmpeg:
Code:ffmpeg -i input.mkv -map 0 -c copy -bsf:v "filter_units=remove_types=39" output.mkv
Another workaround is to lower the bitrate or set your audio output to "stereo" in the Android TV settings to trigger a transcode.
Ahh that would make sense. I've got a Samsung TV so it can't play DV from what I understand so I've been using HDR fallback. Can I remove the DV from the metadata for the same effect?