INTERACT FORUM

More => Old Versions => JRiver Media Center 20 for Mac => Topic started by: bluemark81 on November 02, 2014, 08:17:18 pm

Title: File information within panes
Post by: bluemark81 on November 02, 2014, 08:17:18 pm
How do I get my panes showing albums to show the sample rate and bit depth for each song?
Title: Re: File information within panes
Post by: 6233638 on November 03, 2014, 04:11:12 am
You can right-click the column headers and select both "Bit Depth" and "Sample Rate" to display them.
 
Personally, I use an Expression Column with the following code to format things a bit nicer:
 
Code: (Format) [Select]
If(IsEqual([File Type,0],sacd,1),1-bit/, 2.8 MHz,
Delimit([Bit Depth],-bit/,/ ,)If(IsRange([Sample Rate,0],1000-999999),
Delimit(Math([Sample Rate,0]/1000),/ kHz, ),
If(IsRange([Sample Rate,0],1000000-9999999),
Delimit(Math(trunc([Sample Rate,0]/1000000,1)),/ MHz, ),)))
Title: Re: File information within panes
Post by: bluemark81 on November 03, 2014, 07:57:16 am
You can right-click the column headers and select both "Bit Depth" and "Sample Rate" to display them.
 
Personally, I use an Expression Column with the following code to format things a bit nicer:
 
Code: (Format) [Select]
If(IsEqual([File Type,0],sacd,1),1-bit/, 2.8 MHz,
Delimit([Bit Depth],-bit/,/ ,)If(IsRange([Sample Rate,0],1000-999999),
Delimit(Math([Sample Rate,0]/1000),/ kHz, ),
If(IsRange([Sample Rate,0],1000000-9999999),
Delimit(Math(trunc([Sample Rate,0]/1000000,1)),/ MHz, ),)))

Sorry, I'm not following your instructions at all.
Title: Re: File information within panes
Post by: 6233638 on November 03, 2014, 09:28:10 am
(http://abload.de/img/column-headermto8w.png)
Title: Re: File information within panes
Post by: glynor on November 03, 2014, 09:35:59 am
For now, ignore his suggestion about the expression column.

You can right click (or control-click on a Mac if you have no right-mouse button support) on the header of an existing Category, and choose Add Category:

(http://glynor.com/img/screenshots/MC20/Add_Category_to_Panes.png)
Title: Re: File information within panes
Post by: bluemark81 on November 03, 2014, 09:43:51 am
Thanks guys!   :)