Please read this before reporting a bug:
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
FS#13298 - ffmpeg, x264 streaming support
Attached to Project:
Arch Linux
Opened by Julius (metalfan) - Monday, 16 February 2009, 03:31 GMT
Last edited by Eric Belanger (Snowman) - Saturday, 21 March 2009, 06:13 GMT
Opened by Julius (metalfan) - Monday, 16 February 2009, 03:31 GMT
Last edited by Eric Belanger (Snowman) - Saturday, 21 March 2009, 06:13 GMT
|
DetailsDescription:
qt-faststart is needed to create x264 encoded files that can be streamed. New PKGBUILD: # $Id$ # Contributor: Tom Newsom <Jeepster@gmx.co.uk> # Maintainer: Paul Mattal <paul@archlinux.org> pkgname=ffmpeg pkgver=20081220 pkgrel=1 pkgdesc="Complete and free Internet live audio and video broadcasting solution for Linux/Unix" arch=(i686 x86_64) url="http://ffmpeg.mplayerhq.hu/" license=('LGPL') depends=('lame' 'sdl' 'libvorbis' 'faad2>=2.6.1' 'faac' 'xvidcore' 'zlib' 'imlib2' 'x264>=20090108' 'libtheora') #remake snapshot with: svn export svn://svn.mplayerhq.hu/ffmpeg/trunk@14236 source=(ftp://ftp.archlinux.org/other/ffmpeg/ffmpeg-${pkgver}-16503.tar.bz2) md5sums=('3df85782e9fbbb4a40c6b807baaf6808') build() { cd "$srcdir/$pkgname" || return 1 ./configure \ --prefix=/usr \ --enable-gpl \ --enable-libmp3lame \ --enable-libvorbis \ --enable-libfaac \ --enable-libfaad \ --enable-libxvid \ --enable-libx264 \ --enable-libtheora \ --enable-postproc \ --enable-shared \ --enable-pthreads \ --enable-x11grab \ --enable-swscale \ || return 1 make || return 1 make tools/qt-faststart #new make doc/ff{mpeg,play,server}.1 || return 1 make DESTDIR="$pkgdir" install install-man || return 1 cp tools/qt-faststart $pkgdir/usr/bin #new # since makepkg currently declines to strip .a files, do this for now strip --strip-debug $startdir/pkg/usr/lib/*.a || return 1 } # vim:set ts=2 sw=2 et: |
This task depends upon
Closed by Eric Belanger (Snowman)
Saturday, 21 March 2009, 06:13 GMT
Reason for closing: Implemented
Additional comments about closing: implemented in ffmpeg 20090217-1 in [testing]
Saturday, 21 March 2009, 06:13 GMT
Reason for closing: Implemented
Additional comments about closing: implemented in ffmpeg 20090217-1 in [testing]
make tools/qt-faststart #new
cp tools/qt-faststart $pkgdir/usr/bin #new
if you install testing/ffmpeg it will upgrade x264 to testing and you cant use mplayer anymore...
mplayer: error while loading shared libraries: libx264.so.65: cannot open shared object file: No such file or directory
i didnt changed the pkgrel number.