My current movie template for theater view attached and explained here...
Custom fields needed to get all the images shown:
[HDR]: Manually entered check box. Shows icon if set.
[Dolby Vision]: Manually entered check box. Shows icon if set
[Cast Images]: Manually entered check box. If not set cast will be shown as text
[LogoExist]: If set will use different duplicate template (not included here) which shows movie name as image. Special case for some movies with iconic font like Back to the Future etc. Not used by default
[HD Audio]: From compression field + JMone's SoT => Atmos / DTS:X
ListItem([Compression], 1, +)
[Audio Codec]: Calculated from compression field => mp3 / dts / true-hd etc.
IfCase([Compression],8,dts-hd,dts-hd,eac3,dolby digital,pcm,pcm,mp3,mp3,vorbis,vorbis,dts,dts,ac3,dolby digital,truehd,truehd,opus,opus,flac,flac,mpeg,mpeg,aac,aac)
[Definition]: Calculated from width/height/fps fields => 4K, 1080p, 720p, 576p, 480p
IfElse(Compare([Width],>,1920),4K,Compare([Width],>,1360),1080p,Or(Compare([Width],>,1024),Compare([Height],>,576)),720p,Compare(Left([FPS],2),=,25),576p,1,480p)
[AR-Calculated]: A can of worms. Calculated from MC's Aspect Ratio field. Return empty if not set so you discover where manual input is needed. Not always accurate infromation.
Save(Math(Trunc(Replace([Aspect Ratio],:, // ) + .005, 2)), v_AspectRatio)/
IfCase([v_AspectRatio], 3, 1, empty, 1.38, 1.33, 1.68, 1.66, 1.80, 1.78, 1.87, 1.85, 2.36, 2.35, 2.40, 2.39)
[Audio Language] List populated by Jmone's SoT
[Subtitles] List populated by Jmone's SoT
Special calculated fields for LINKING purposes
[LINK_Year_Movie]
If(IsEqual([Media Sub Type],Movie),Movies Released in FormatDate([Date,0],year),)
[LINK_Extras_Movie]
If(Or(IsEqual([Media Sub Type],Extras),IsEqual([Media Sub Type],Movie)),EXTRAS For [Name] /(FormatDate([Date,0],year)/),)
[LINK_Director]
If(IsEqual([Media Sub Type], Movie),Directed By ListItem([Director],0),)
[LINK_Genre_Movie]
If(IsEqual([Media Sub Type], Movie),Movies at Genre Replace(ListSort(ListLimit([Genre],2)),;,/ /// ),)
Images are under Data/Tooltip using following sub folder structure:
Actors\[Original Title] (Year)\Andrew Garfield.png etc (Could also use [Name] instead of [Original Title] but I have populated name field to include different version e.g Terminator [Director's Cut])
Studios\studio-20th Century Fox.png etc
Country\country-Finland.png
Languages\language-Finnish.png etc
Publisher\publisher-Criterion Collection.png etc
(I'm using / as a folder separator in expressions as it also works for linux)
E: Fixed subtitle language expression bug in the template
E2: Added some formats to [Audio Codec]