You are not logged in.
Pages: 1
This is a useful gui to split and tag ogg's or mp3's. The arch version in the repos only allows connecting to snackamp although the option to connect to audacious is available but must be set as a compile flag. Is audacious not a better option to use since it's also gtk? I'm having problem's with snackamp. I'm not sure how to contact the maintainer of mp3splt-gtk to request this or if it is feasible.
Andre
Offline
I'm having problem's with snackamp.
What problem do you have?
Offline
Problems are mostly interface related:
+ Dialogs and fonts on SnackAmp are not consistently sized.
+ Selection keeps reverting to mp3 rather than what was previously selected (ogg).
+ Selection of tracks to split must be made within SnackAmp - and not mp3splt.
+ SnackAmp sometimes refuses selection and reverts to previously selected track. In one case the fix was to delete this track.
Offline
Found the fix:
1. added -laudclient to linker
2. enabled audacious and gstreamer (better IMHO in the GTK enviro)
See the PKGBUILD:
# $Id: PKGBUILD $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
pkgname=mp3splt-gtk
pkgver=0.5.9
pkgrel=1
pkgdesc="Split mp3 and ogg files without decoding"
arch=('i686' 'x86_64')
url="http://mp3splt.sourceforge.net/"
license=('GPL')
depends=('gtk2' 'libmp3splt')
makedepends=('pkgconfig' 'desktop-file-utils')
install=$pkgname.install
source=(http://downloads.sourceforge.net/sourceforge/mp3splt/$pkgname-$pkgver.tar.gz \
$pkgname.desktop)
md5sums=('9579e3d8ce992057d9fd64dd8ffb2066'
'9e5a5748d40594e0090e7ceed903c674')
build() {
cd ${srcdir}/$pkgname-$pkgver
env LDFLAGS+="-laudclient" ./configure --prefix=/usr --disable-mp3splttest --enable-audacious --enable-gstreamer
make || return 1
make DESTDIR=${pkgdir} install
#install .desktop file
install -D -m644 ${srcdir}/$pkgname.desktop \
${pkgdir}/usr/share/applications/$pkgname.desktop || return 1
}Offline
Pages: 1