With an encode that is sourced from a UHD BluRay, how can I preserve the UHD tag in my file renamed with FileBot? The original file details are as follows:
Movie Title 2019 1080p UHD BluRay HDR DD+7.1 x265-DON
Add UHD Label to Encode
Re: Add UHD Label to Encode
The {hd} binding will give you UHD if the video resolution is high enough.
Re: Add UHD Label to Encode
The {hd} binding just returns HD. Mediainfo states the resolution as 1920x800 (2.40:1) so the {hd} binding appears to be returning correct information. However, to differentiate the source of this encode, is there a way to preserve UHD in the renamed file?
Re: Add UHD Label to Encode
You can always matching something from the filename:
Code: Select all
{fn.match(/UHD/)}
Re: Add UHD Label to Encode
Thanks, that did the trick.