Page 1 of 1

easyMP3Gain

Posted: 11. Mar 2011, 05:27
by Andyun
easyMP3Gain — small and convenient GTK or QT GUI for MP3Gain, VorbisGain and AACGain.
Project Home: http://sourceforge.net/projects/easymp3gain/
Image

Re: easyMP3Gain

Posted: 11. Mar 2011, 08:54
by thenktor
Does it work for FLAC, too?

Re: easyMP3Gain

Posted: 11. Mar 2011, 12:05
by Andyun
No, only mp3, ogg and aac.

Re: easyMP3Gain

Posted: 16. May 2011, 18:01
by neruson1981
I second this request too. I know how to use mp3gain via the terminal but the GUI is rather nice. Since you have mp3gain, aacgain and vorbis gain and the free pascal compiler already in the salix repos I imagine it would be pretty easy to have the GUI in the official salix repos as well (i think all you would need was lazarus), but then again I'm not a developer so it's quite possible that I don't know what I'm talking about ;)

Been trying to compile this from source, but I keep having issues with the lazarus package from SlackBuilds... I'll figure it out... Eventually :D

Re: easyMP3Gain

Posted: 16. May 2011, 22:29
by thenktor
I certainly would have packaged this if it supports FLAC. But it doesn't and IMHO the command line tools a re much better for this kind of tasks anyway :ugeek:

Re: easyMP3Gain

Posted: 6. Dec 2011, 12:59
by andyprice
This thread is a bit old, but there is are versions which don't require compiling here: http://sourceforge.net/projects/easymp3 ... ain-0.5.0/ - just extract and run.

Re: easyMP3Gain

Posted: 19. Sep 2012, 13:53
by Andyun
August 14, 2012 at SlackBuilds.org appeared script to build the package easymp3gain. Thanks to Chernov V. V! To build need to install the package "Lazarus".

Also, instead of this, you can use an easier way with my SLKBUILD (borrowed from here):

Code: Select all

pkgname=easymp3gain-gtk2-bin
pkgver=0.5.0
pkgrel=111
arch=('i386' 'x86_64')
source=("http://downloads.sourceforge.net/easymp3gain/easymp3gain-gtk2_${pkgver}_${arch}.tar.gz")
docs=("authors" "changelog.txt" "readme.txt" "release.txt")


slackdesc=\
(
#|-----handy-ruler------------------------------------------------------|
"easyMP3Gain (GUI for mp3gain, aacgain and vorbisgain)"
"Easymp3gain allows modifying the loudness of mp3, ogg, vorbis"
"and mp4 audio files."
""
"Homepage: http://sourceforge.net/projects/easymp3gain/"
)


build() {
   mkdir -p ${startdir}/pkg/usr/{share/{applications/easymp3gain-gtk2,easymp3gain/{help,lang},icons/hicolor/},bin}

   cd $startdir/src/easymp3gain-gtk2_${pkgver}-1_${arch}

   cp -r {help,lang} $startdir/pkg/usr/share/easymp3gain
   for i in 16 22 24 32 48 64 128 192; do
      mkdir -p $startdir/pkg/usr/share/icons/hicolor/${i}x${i}/apps/
      cp icons/easymp3gain-${i}.png $startdir/pkg/usr/share/icons/hicolor/${i}x${i}/apps/easymp3gain.png
   done
   cp -r applications $startdir/pkg/usr/share
   cp easymp3gain $startdir/pkg/usr/share/easymp3gain/
   ln -s /usr/share/easymp3gain/easymp3gain $startdir/pkg/usr/bin
}