INTERACT FORUM

Please login or register.

Login with username, password and session length
Advanced search  
Pages: [1]   Go Down

Author Topic: File information within panes  (Read 1386 times)

bluemark81

  • Recent member
  • *
  • Posts: 36
File information within panes
« 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?
Logged

6233638

  • Regular Member
  • Citizen of the Universe
  • *****
  • Posts: 5353
Re: File information within panes
« Reply #1 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, ),)))
Logged

bluemark81

  • Recent member
  • *
  • Posts: 36
Re: File information within panes
« Reply #2 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.
Logged

6233638

  • Regular Member
  • Citizen of the Universe
  • *****
  • Posts: 5353
Re: File information within panes
« Reply #3 on: November 03, 2014, 09:28:10 am »

Logged

glynor

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 19608
Re: File information within panes
« Reply #4 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:

Logged
"Some cultures are defined by their relationship to cheese."

Visit me on the Interweb Thingie: http://glynor.com/

bluemark81

  • Recent member
  • *
  • Posts: 36
Re: File information within panes
« Reply #5 on: November 03, 2014, 09:43:51 am »

Thanks guys!   :)
Logged
Pages: [1]   Go Up