I recently decided to do some more customization of the display in Standard View. It's always bugged me that Videos (Movies, TV Shows, etc) show something wonky in the Display Area up top. So I wrote some expressions that do different things for Audio, Video (general) and TV Shows. This is by no means comprehensive, but I think it works nicely, so I thought I'd share. Here are the expressions I'm using in the Customize Display dialog:
Title:
if(
isequal([Media Type],Video),
if(
isequal([Media Sub Type],TV Show),
[Name] - [Series] S[Season] EP[Episode],
[Name]
),
[Name] <by> [Artist] <from> [Album]
)
Status:
if(isequal([Media Type],Video),
[Elapsed Time] // [Remaining Time] // [Total Time] [File Type] regex([Compression],/#\(video: (.+), audio: (.+)\)#/,-1,0)[R1] [R2] [Channels]ch [Zone],
[Elapsed Time] // [Remaining Time] // [Total Time] - [File Type] [Bit Depth]//[Sample Rate] kHz - [Channels] ch [PN Position] of [PN Tracks] ([Track #]//[Total Tracks]if(isempty([disc #]), , / D[disc #])/) [Zone]
)
I'm sure some of you out there have cool expressions you're using for display. Maybe some of you will share them here also.
Brian.