Have about 200 flac files, that DON'T have replay-gain tags.. I would just like to ? re-encode them with replay-gain tags? if possible if possible what command line string would work? Thanks in Advance Richard
You don't need to re-encode them all just to add ReplayGain. If you are in Windows, one software you can use is foobar2000, which has a component that allows easy addition of RG tags. -Ivo
--- Richard <cms0009@gmail.com> wrote:> Have about 200 flac files, that DON'T have replay-gain tags.. > I would just like to ? re-encode them with replay-gain tags? if > possible if possible what command line string would work?you can use metaflac on an album's worth of tracks: metaflac --add-replay-gain *.flac http://flac.sourceforge.net/documentation_tools_metaflac.html#metaflac_shorthand_add_replay_gain ____________________________________________________________________________________ Looking for last minute shopping deals? Find them fast with Yahoo! Search. http://tools.search.yahoo.com/newsearch/category.php?category=shopping
On Friday 15 February 2008 9:59 pm Richard wrote:> Have about 200 flac files, that DON'T have replay-gain tags.. > I would just like to ? re-encode them with replay-gain tags? if possible > if possible what command line string would work? > > Thanks in Advance > Richardfind . -type f -name \*flac -print -execdir metaflac --add-replay-gain {} + in the top directory should do it (this will apply album gain to all the files in each directory). Nicholas