You are not logged in.
Want to encode mp4 files? Then you'll want to use this package, the development version faac (the stable version only has support for aac encoding). Download the archive of the package, filelist, and PKGBUILD from ftp://ftp.archlinux.org/incoming
The PKGBUILD:
# $Id: PKGBUILD,v 1.1 2004/10/15 13:49:50 vande198 Exp $
# Adapted from the faad2-devel PKGBUILD by Jake VanderKolk <jakevanderkolk@gmail.com>
# Original faad2-devel PKGBUILD: damir <damir@archlinux.org> and Sarah Hay <sarah@archlinux.org>
pkgname=faac-devel
provides=('faac')
conflicts=('faac')
pkgver=1.24.cvs20040906
tarver=06092004
pkgrel=1
pkgdesc="ISO AAC and MP4 audio encoder [devel]"
url="http://www.audiocoding.com"
depends=('gcc')
makedepends=('libsndfile' 'id3lib')
source=(http://www.audiocoding.com/snapshot/faac-$tarver.tar.gz)
md5sums=('d3019c7ab1a51c808eb43bc34981dd88')
build() {
cd $startdir/src/faac
chmod +x bootstrap
./bootstrap || return 1
./configure --prefix=/usr || return 1
make || return 1
make DESTDIR=$startdir/pkg install || return 1
}
"To be a Spartan is to be a philosopher much more than to be an athlete."
Plato, the <i>Protagoras</i>, 342e-343a
Offline
Want to encode mp4 files? Then you'll want to use this package, the development version faac (the stable version only has support for aac encoding).
Thanks for providing this pkgbuild, I'd like to add that this also means support for the file extensions .m4a and .m4b. See also the Audiocoding.com Wiki for recommended FAAC settings and more.
makedepends=('libsndfile' 'id3lib')
I wonder if this is necessary (FAAC does not use ID3 tags), but maybe you know better than me. The usual dependency on libmp4v2 for MP4 support probably doesn't need to be mentioned here, because that lib is included in the FAAC snapshot now, right?
Offline