INTERACT FORUM

More => Old Versions => JRiver Media Center 23 for Windows => Topic started by: A.K. on July 19, 2017, 10:04:17 am

Title: MC installed version/build number in display area
Post by: A.K. on July 19, 2017, 10:04:17 am
Is it possible to view installed MC version number (example: "Media Center 23.0.21") in display area instead of just plain "JRiver Media Center 23"?
Title: Re: MC installed version/build number in display area
Post by: Matt on July 19, 2017, 10:07:10 am
Look at the [App Version] variable.

Something like this makes it show the full version:
RemoveRight([App Name], 2)[App Version]
Title: Re: MC installed version/build number in display area
Post by: A.K. on July 19, 2017, 10:35:47 am
Thanks! Now it looks just like I want  :D
Title: Re: MC installed version/build number in display area
Post by: Mans on July 19, 2017, 03:49:30 pm
Exactly -> Perfect !
+1.
Title: Re: MC installed version/build number in display area
Post by: marko on July 19, 2017, 11:51:41 pm
[App Name] [App Version], and the one I use... mc.version

These only work in the display caption.
I didn't know about [App Name] and [App Version] (although I think a default MC uses [App Name]?) and I've no idea how I know about mc.version.

Are there any other little easter eggs we can deploy in there? I don't have anything specific in mind, mc.version and the current date/time seems to be enough for me... just curious, is all :)
Title: Re: MC installed version/build number in display area
Post by: Spike1000 on July 20, 2017, 07:18:14 am
I use this customisation. Is that the sort of thing you mean?

Code: [Select]
[Elapsed Time] // [Total Time] // [Remaining Time] - [Bit Depth] bit-[Sample Rate] kHz-[Bitrate (labeled)]-[Channels] Channel-[File Type] - [PN Position] of [PN Tracks]  [Zone]
Spike
Title: Re: MC installed version/build number in display area
Post by: Awesome Donkey on July 20, 2017, 09:25:19 am
Since we're all sharing, here's mine;

Code: [Select]
[Elapsed Time] // [Total Time] // [Remaining Time]   FixCase([Compression], 3)   [Bit Depth]-Bit // [Sample Rate] kHz   [Genre]   [Year]   DR[Dynamic Range (DR)]   [File Size]   Disc [Disc #] of [Total Discs]   Track [Track #] of [Total Tracks]
It works pretty good, except for DSD tracks (due to [Bit Depth]-Bit // [Sample Rate] kHz appearing different for DSD - wish I could substitute those with DSD variables when playing DSD).
Title: Re: MC installed version/build number in display area
Post by: marko on July 20, 2017, 10:05:48 am
I don't use "Alternative" mode displays. Mine are still a work in (very slow) progress, I tinker with it every so often, with the idea being to use expressions to change the display automatically based on media type being played...

Play (Title):
Code: [Select]
'[name]'if(isempty([artist]),,/ by '[artist]')if(isempty([album]),,/ from the album '[album]')if(isempty([comment]),,/ /([comment]/))  :::  formatdate(now(),dddd dd//MM//yyyy)  formatdate(now(),HH:mm)
Play (Status):
Code: [Select]
ifelse(
   isequal([media type],image,1),[filename (name)] /([file size]/) ::: [dimensions] ::: [date] ::: rated [Score]//5 Picture [PN Position] of [PN Tracks],
   isequal([media type],audio,1),[Elapsed Time] // [Total Time] ::: [Bitrate (labeled)] [File Type] /([file size]/) ::: rated [Rating]//5 ::: [history] ::: track [PN Position] of [PN Tracks],
   isequal([Media Sub Type],Home Video,1),[Elapsed Time] // [Total Time] ::: [File Type] /([file size]/) ::: rated [Rating]//5 ::: [history] ::: track [PN Position] of [PN Tracks]
  )
(https://mpw.scot/pics/ia/23/custdisp2.jpg)

Stopped (Title):
Code: [Select]
Media Center removeright([mc.version],11)  :::  formatdate(now(),dddd dd MMMM yyyy)  :::  formatdate(now(),HH:mm)
Stopped (Status):
Code: [Select]
ifelse(
       isequal([media type],image,1),[filename (name)] /([file size]/) ::: [dimensions] ::: [date] ::: rated [Score]//5 Picture [PN Position] of [PN Tracks],
       isequal([media type],audio,1),[name] by [artist] ::: [Bitrate (labeled)] [File Type] /([file size]/) ::: rated [Rating]//5 ::: [history] ::: track [PN Position] of [PN Tracks],
       isequal([Media Sub Type],Home Video,1),[Elapsed Time] // [Total Time] ::: [File Type] /([file size]/) ::: rated [Rating]//5 ::: [history] ::: track [PN Position] of [PN Tracks]
      )
(https://mpw.scot/pics/ia/23/custdisp1.jpg)
Title: Re: MC installed version/build number in display area
Post by: blgentry on July 20, 2017, 12:23:32 pm
I started a thread about this a while back with my Standard View display expressions.

https://yabb.jriver.com/interact/index.php?topic=103049.0

Display expressions were one of the very first things I tried to customize when I downloaded the trial of MC several years ago.  I changed the display expression to something rather simple at that time and was *thrilled* that I could do it so easily and make it as customized as I wanted.

After 5 weeks with MC, I knew I could never go back to anything else I had tried.  Display expressions were my very first taste of that...

Brian.