INTERACT FORUM

More => Old Versions => Media Center 17 => Topic started by: jaynyc on May 23, 2012, 01:31:14 pm

Title: How do I display the actual Replay Gain values not the -6 version MC uses?
Post by: jaynyc on May 23, 2012, 01:31:14 pm
Hi.  Is there any way to make the ReplayGain column show the actual value, not the -6 value?

Alternatively, how would I create a custom column "RG" to display the true ReplayGain value?

thank you

--jay

Title: Re: How do I display the actual Replay Gain values not the -6 version MC uses?
Post by: MrC on May 23, 2012, 01:37:10 pm
Use an expression column with the value:

   ifelse(!isempty([Replay Gain]), FormatNumber(Math([Replay Gain,0] + 6),2) dB)
Title: Re: How do I display the actual Replay Gain values not the -6 version MC uses?
Post by: jaynyc on May 23, 2012, 01:42:29 pm
works, thank you.
Title: Re: How do I display the actual Replay Gain values not the -6 version MC uses?
Post by: InflatableMouse on May 24, 2012, 03:51:03 am
Could someone please explain what the difference is between those 2? (without being a smartypants saying its 6dB :P).

Isn't the built in collumn correct? Where does that 6 dB come from?

Thanks.
Title: Re: How do I display the actual Replay Gain values not the -6 version MC uses?
Post by: Alex B on May 24, 2012, 04:33:06 am
MC uses the Replay Gain reference volume level of 83 dB. The original Replay Gain standard recommended 83 dB, which has been implemented in the JRiver programs since the early Media Jukebox 8 betas in late 2001. After that some other programs started to use the 89 dB reference volume level which eventually become the de facto standard and thus most current applications expect the reference volume level to be 89 dB. For your convenience MC writes and reads the file tag values using the 89 dB reference volume level (to make the file tags more compatible).
Title: Re: How do I display the actual Replay Gain values not the -6 version MC uses?
Post by: hulkss on May 24, 2012, 11:24:16 pm
Why do you need to add 6 dB if MC write the tags using the 89 dB reference level?
Title: Re: How do I display the actual Replay Gain values not the -6 version MC uses?
Post by: InflatableMouse on May 25, 2012, 12:08:46 am
Thanks Alex.

Let's see if I get this ... MC uses 83 dB for replay gain but reads/writes tags using the 89 dB?

Then I'll have to repeat Hulkss, why add 6 dB if thats the case?
Title: Re: How do I display the actual Replay Gain values not the -6 version MC uses?
Post by: bwaldron on May 25, 2012, 06:20:31 am
Thanks Alex.

Let's see if I get this ... MC uses 83 dB for replay gain but reads/writes tags using the 89 dB?

Then I'll have to repeat Hulkss, why add 6 dB if thats the case?

Seems clear that the file tags are written that way for compatibility with other software/hardware that uses 'em, while internally, MC maintains its own system.
Title: Re: How do I display the actual Replay Gain values not the -6 version MC uses?
Post by: Alex B on May 25, 2012, 08:46:04 am
The reason to use the 89 dB reference volume level instead 83 dB in some newer programs is that the 83 dB reference was found to be quite low when compared with the unadjusted (= RG off) volume level of modern rock/pop tracks that are mastered to be very compressed and as loud as possible.

You can set MC's Volume Leveling to use a +6 dB adjustment to make MC perform exactly like the players that use the 89 dB reference volume level.

Just keep in mind that the 89 dB reference volume level may be too high for efficiently adjusting tracks that have very wide dynamic range and relatively low average volume level. I.e you can't make some quiet tracks louder without causing clipping distortion because despite the low average volume level they also contain peaks that already reach the maximum possible level.
Title: Re: How do I display the actual Replay Gain values not the -6 version MC uses?
Post by: InflatableMouse on May 25, 2012, 12:22:20 pm
Right, got it.

Thanks again for taking the time to explain that.