MetaData in Video Files
Posted: 27 Aug 2026, 14:06
I have a situation. I play videos on my network using Jellyfin. To Android, to FireTV, and to Roku. When I have videos which contain DV (Dolby Video) they do not play correctly because my hardware does not support DV. Playback shows over-saturated yellow tinged video which is not watchable. Another closely related problem are those that contain HDR. I want to use Filebot to identify and set flags for DV and HDR so I can remove DV (and possibly the HDR).
I have:
I want:
Code I use:
This code finds the resolution and allows me to identify SD;HD;4K. How can I further identify those with DV or HDR ?
I have:
Code: Select all
Brooklyn's Finest (2010)[Crime, Drama, Thriller] [SD] [NOT HEVC].mp4Code: Select all
Brooklyn's Finest (2010)[Crime, Drama, Thriller] [SD] [NOT HEVC][hasDV-HDR].mp4Format: Select all
{ if (vcf != /HEVC/) ' [NOT HEVC]' }
{if (width >= 3840 || height >= 2160) return " [4K]"
if (width >= 1280 || height >= 720) return " [HD]"
return " [SD]"}