Search found 3 matches
- 20 Jan 2021, 22:04
- Forum: Episode / Movie Naming Scheme
- Topic: HDR / Dolby Vision?
- Replies: 40
- Views: 65271
Re: HDR / Dolby Vision?
NO HDR_Format.* data in the first file = fail if it really is HDR
@titooo7 can you try the first file here or update the mediainfo:
https://mediaarea.net/MediaInfoOnline
(Selec t the MediaInfo output - MediaInfo XML or JSON)
I was also surprised when I saw that the movie didn't have HDR ...
- 20 Jan 2021, 17:37
- Forum: Episode / Movie Naming Scheme
- Topic: HDR / Dolby Vision?
- Replies: 40
- Views: 65271
Re: HDR / Dolby Vision?
@kim with the following code every HDR gets renamed correctly for me
def ishdr =
(any{video.HDR_Format}{0} =~ /Dolby.Vision/
) ? '[' + hdr + 'Dolby Vision]' :
( any{hdr.size()}{0} == 0
) ? '' : '[' + hdr + ']'
HDR gets renamed as "HDR". Medianfo of file tested: https://pastebin.com/9ytzpsXT ...
def ishdr =
(any{video.HDR_Format}{0} =~ /Dolby.Vision/
) ? '[' + hdr + 'Dolby Vision]' :
( any{hdr.size()}{0} == 0
) ? '' : '[' + hdr + ']'
HDR gets renamed as "HDR". Medianfo of file tested: https://pastebin.com/9ytzpsXT ...
- 18 Jan 2021, 18:09
- Forum: Episode / Movie Naming Scheme
- Topic: HDR / Dolby Vision?
- Replies: 40
- Views: 65271
Re: HDR / Dolby Vision?
{
def HDRMap = [
"HDR10": "HDR10",
"SMPTE ST 2086": "HDR10",
"SMPTE ST 2094 App 4": "HDR10+",
"Dolby Vision": "Dolby Vision",
"Dolby Vision / SMPTE ST 2086": "Dolby Vision",
"Dolby Vision / HDR10": "Dolby Vision"
]
def HDRtype = video.collect{ vid -> any{ vid["HDR_Format_Commercial ...