I have ~= 80 albums ripped into FLAC files. These have all been relaygain in album mode via Foobar(for my personal listening).
Today i wrote a batch file that converted all my FLAC's into Vorbis files, preseving tag's, then applied replay gain to the files and concatinated them into single file albums and named them accordingly.
I transcoded using -q2 and have noticed clipping in playback on a lot of the files. I noticed the replaygain values were quite high and so decided to post here rather than the dedicated OGG Vorbis forum as i may have done something wrong when applying replaygain?
For example, one off my FLAC'ed files has the values:
REPLAYGAIN_TRACK_GAIN = -10.4700 dB
REPLAYGAIN_TRACK_PEAK = 0.9689
REPLAYGAIN_ALBUM_GAIN = -9.0400 dB
REPLAYGAIN_ALBUM_PEAK = 0.9693
Whereas the Vorbis version has the values:
REPLAYGAIN_TRACK_GAIN = -10.77 dB
REPLAYGAIN_TRACK_PEAK = 1.75603390
REPLAYGAIN_ALBUM_GAIN = -9.20 dB
REPLAYGAIN_ALBUM_PEAK = 2.27333665
Now i know lossy compression can increase the level of clipping in a file, but looking at the album peaks, this is a "2 and one third" times increase. Is this to be expected or do you think something is wrong?
Just want a few opinions as i don't really want to experiment transcoding all those files again!!!.
If anyone wants to see it, my batch file is at the bottom, crude and too the point but it does what i wanted.
Cheers for your input and opinion,
Kristian
CODE
title FLAC to Vorbis Conversion Process
mkdir c:\MUSIC\vorbis_temp
dubl c:\music\flac c:\music\vorbis_temp oggencFLAC #1 -q2 -o #2\#3.ogg
cd c:\music\vorbis_temp
vorbisgain -q -a -r -s *.ogg
sweep copy /b *.ogg 1
del /s *.ogg
sweep ren 1 1.ogg
Tag --rentag --recursive --scheme "A - L" *.ogg
sweep move *.ogg f:\vorbis
cd c:\
rmdir /S c:\MUSIC\vorbis_temp
Pause
mkdir c:\MUSIC\vorbis_temp
dubl c:\music\flac c:\music\vorbis_temp oggencFLAC #1 -q2 -o #2\#3.ogg
cd c:\music\vorbis_temp
vorbisgain -q -a -r -s *.ogg
sweep copy /b *.ogg 1
del /s *.ogg
sweep ren 1 1.ogg
Tag --rentag --recursive --scheme "A - L" *.ogg
sweep move *.ogg f:\vorbis
cd c:\
rmdir /S c:\MUSIC\vorbis_temp
Pause