Player implementation of ReplayGain (Android) |
Player implementation of ReplayGain (Android) |
Oct 8 2012, 11:53
Post
#1
|
|
|
Group: Members Posts: 6 Joined: 7-October 12 Member No.: 103677 |
Hello,
I'm hoping some folks here can help me get my head around the task of adding ReplayGain functionality to the stock Android music player app. My lack of training in maths and audio science is making it hard for me to ask the right questions probably, so please bear with me if you can. I've read through the replaygain spec (original proposal on your minisite and the updated version in the wiki) but there's still a lot that I'm unclear on. A sound engineeer friend helped me along a little further, but I think I exhausted his patience :( Now I understand that all replaygain adjustments start from -14 dBFS, and RG treats this as equivalent to 89 dB (SPL). Where I get lost is how I'd translate that to the logarithmic scale used by the volume control function I have to work with, which takes a float value (0-1 = mute-max) to attenuate the playback volume for the app (normally it stays at 1 and is used mainly for fading; it's independent of the master volume controls for the device). It can be abstracted to a linear scale (of the type that a physical volume control would use, I believe) of 0-<number of your choice>. The value is calculated from a linear-scale value like this: CODE #Example to set volume to 50/100 on the linear scale int maxvol = 100; int newvol = 50; float ratio = (float) (1 - (Math.log(maxvol - newvol) / Math.log(maxvol))); But to get to that point, I need somehow to abstract that starting-point of -14 dBFS / 89 dB SPL onto that linear scale. From what I've read so far, I get the feeling there is no "pure" way to do this and I'll be required to make some educated guesses. So that's where being uneducated lets me down :( I'd just be grateful for any suggestions, help or references in how I might understand the task better and construct a *reasonably* accurate equation for it. |
|
|
|
![]() |
Oct 8 2012, 12:40
Post
#2
|
|
|
VorbisGain developer Group: Developer Posts: 137 Joined: 10-January 02 Member No.: 973 |
You could take a look at the Vorbis plugin in XMMS. The ReplayGain implementation there is pretty straight-forwward (vorbis_update_replaygain translates the adjustment to a scale factor, and vorbis_process_replaygain applies it). I used it as a reference when implementing ReplayGain in Rockbox (not as straight-forward; the math is done in fixed-point, and the implementation is shared by many decoders).
|
|
|
|
Havin_it Player implementation of ReplayGain (Android) Oct 8 2012, 11:53
saratoga QUOTE (Havin_it @ Oct 8 2012, 06:53) But ... Oct 8 2012, 16:03
[JAZ] @saratoga: Since we're talking about volume, s... Oct 8 2012, 18:57
Havin_it Hi, thanks all for replying :)
@Lear, I actually ... Oct 8 2012, 22:05
[JAZ] No, you don't need to substract 14.
Usually, ... Oct 8 2012, 22:30
Havin_it Well, the collection I have comprises a couple of ... Oct 9 2012, 00:21
saratoga QUOTE (Havin_it @ Oct 8 2012, 19:21) The ... Oct 9 2012, 00:44
Havin_it Right, I see. The only open-source implementation ... Oct 9 2012, 01:38
saratoga QUOTE (Havin_it @ Oct 8 2012, 20:38) This... Oct 9 2012, 01:46
Havin_it It's not exactly that I can't increase it,... Oct 9 2012, 03:24
Havin_it Pleased to report that the Equalizer route worked ... Oct 14 2012, 11:32
lvqcl QUOTE (Havin_it @ Oct 14 2012, 14:32) if ... Oct 14 2012, 11:40![]() ![]() |
|
Lo-Fi Version | Time is now: 18th May 2013 - 17:33 |