easyMP3Gain

If there's software you need and you can't find, make a request for it.
Post Reply
User avatar
Andyun
Posts: 456
Joined: 17. Jun 2010, 09:51
Location: Russia: Severodvinsk / Россия: Северодвинск

easyMP3Gain

Post by Andyun »

easyMP3Gain — small and convenient GTK or QT GUI for MP3Gain, VorbisGain and AACGain.
Project Home: http://sourceforge.net/projects/easymp3gain/
Image
Last edited by Andyun on 15. Mar 2011, 15:36, edited 2 times in total.
User avatar
thenktor
Salix Wizard
Posts: 2426
Joined: 6. Jun 2009, 14:47
Location: Franconia
Contact:

Re: easyMP3Gain

Post by thenktor »

Does it work for FLAC, too?
Image
burnCDDA (burns audio CDs)
geBIERt (German beer blog)
User avatar
Andyun
Posts: 456
Joined: 17. Jun 2010, 09:51
Location: Russia: Severodvinsk / Россия: Северодвинск

Re: easyMP3Gain

Post by Andyun »

No, only mp3, ogg and aac.
User avatar
neruson1981
Posts: 12
Joined: 18. Feb 2011, 21:49

Re: easyMP3Gain

Post 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
User avatar
thenktor
Salix Wizard
Posts: 2426
Joined: 6. Jun 2009, 14:47
Location: Franconia
Contact:

Re: easyMP3Gain

Post 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:
Image
burnCDDA (burns audio CDs)
geBIERt (German beer blog)
andyprice
Posts: 18
Joined: 19. Jun 2011, 09:22

Re: easyMP3Gain

Post 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.
User avatar
Andyun
Posts: 456
Joined: 17. Jun 2010, 09:51
Location: Russia: Severodvinsk / Россия: Северодвинск

Re: easyMP3Gain

Post 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
}
Post Reply