2024-11-23, 02:14 PM
(This post was last modified: 2024-11-23, 02:16 PM by theguymadmax. Edited 1 time in total.)
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:
Another workaround is to lower the bitrate or set your audio output to "stereo" in the Android TV settings to trigger a transcode.
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.