mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
multimedia/ffmpeg4: Added (record, convert, stream audio and video).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
parent
0f0f3fcb2d
commit
21d3ba237c
4 changed files with 345 additions and 0 deletions
84
multimedia/ffmpeg4/README
Normal file
84
multimedia/ffmpeg4/README
Normal file
|
@ -0,0 +1,84 @@
|
|||
ffmpeg4 (Software to record, convert and stream audio and video).
|
||||
|
||||
ffmpeg4 should be installable alongside ffmpeg 3.x without conflict.
|
||||
|
||||
FFmpeg is a complete solution to record, convert and stream audio
|
||||
and video. It includes libavcodec, the leading audio/video codec
|
||||
library.
|
||||
|
||||
By default it will not build the ffmpeg binaries or man-pages, in order
|
||||
not to conflict with an ffmpeg 3.x package. You can change this by
|
||||
using the following environment variable setting:
|
||||
|
||||
BINS=yes
|
||||
|
||||
It can optionally link to a number of extra libraries that are available
|
||||
on SBo by setting the relevant env vars, which all default to "no":
|
||||
|
||||
CHROMAPRINT=yes # requires chromaprint
|
||||
DECKLINK=yes # requires decklink-sdk
|
||||
FREI0R=yes # requires frei0r
|
||||
LADSPA=yes # requires ladspa_sdk
|
||||
LIBBLURAY=yes # requires libbluray
|
||||
LIBBS2B=yes # requires libbs2b
|
||||
LIBCELT=yes # requires celt
|
||||
LIBDC1394=yes # requires libdc1394
|
||||
LIBFDK_AAC=yes # requires libfdk-aac (non-redistributable)
|
||||
LIBFLITE=yes # requires flite
|
||||
LIBGME=yes # requires libgme
|
||||
LIBGSM=yes # requires gsm
|
||||
LIBIEC61883=yes # requires libiec61883 and libavc1394
|
||||
LIBILBC=yes # requires libilbc
|
||||
LIBMODPLUG=yes # requires libmodplug
|
||||
LIBMP3LAME=yes # requires lame
|
||||
LIBOPENCORE=yes # requires opencore-amr
|
||||
LIBOPENCV=yes # requires opencv
|
||||
LIBOPUS=yes # requires opus
|
||||
LIBRTMP=yes # requires rtmpdump
|
||||
LIBRUBBERBAND=yes # requires rubberband
|
||||
LIBSNAPPY=yes # requires snappy
|
||||
LIBSPEEX=yes # requires speex
|
||||
LIBTESSERACT=yes # requires tesseract
|
||||
LIBTWOLAME=yes # requires twolame
|
||||
LIBVIDSTAB=yes # requires vid.stab
|
||||
LIBWEBP=yes # requires libwebp
|
||||
LIBX264=yes # requires x264
|
||||
LIBX265=yes # requires x265
|
||||
LIBXVID=yes # requires xvidcore
|
||||
LIBZMQ=yes # requires zeromq
|
||||
LIBZVBI=yes # requires zvbi
|
||||
|
||||
By default, ffmpeg4 is built to link with openssl. This creates a non-
|
||||
redistributable binary (just like linking with libfdk-aac does). If you
|
||||
want a redistributable binary you can change from linking with openssl
|
||||
to linking with gnutls instead by setting:
|
||||
|
||||
OPENSSL=no
|
||||
GNUTLS=yes
|
||||
|
||||
Both of these libraries are available in Slackware itself.
|
||||
|
||||
There are a few other libraries available in Slackware that are also
|
||||
linked to by default, and you can disable them by changing the default
|
||||
of "yes" to "no" with the following settings:
|
||||
|
||||
LIBCACA=no
|
||||
LIBCDIO=no
|
||||
LIBFONTCONFIG=no
|
||||
LIBFREETYPE=no
|
||||
LIBFRIBIDI=no
|
||||
LIBOPENJPEG=no
|
||||
LIBPULSE=no
|
||||
LIBSMBCLIENT=no
|
||||
LIBSSH=no
|
||||
LIBTHEORA=no
|
||||
LIBV4L2=no
|
||||
LIBVORBIS=no
|
||||
LIBVPX=no
|
||||
LIBWAVPACK=no
|
||||
OPENGL=no
|
||||
|
||||
To link to this version of the ffmpeg libraries, you'll need to set
|
||||
the PKG_CONFIG_PATH to "/usr/lib${LIBDIRSUFFIX}/ffmpeg4/pkgconfig"
|
||||
where ${LIBDIRSUFFIX} is either 64 or an empty string, depending on
|
||||
your architecture.
|
232
multimedia/ffmpeg4/ffmpeg4.SlackBuild
Normal file
232
multimedia/ffmpeg4/ffmpeg4.SlackBuild
Normal file
|
@ -0,0 +1,232 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for ffmpeg4
|
||||
|
||||
# Copyright 2018 Andreas Guldstrand
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
# permitted provided that the following conditions are met:
|
||||
#
|
||||
# 1. Redistributions of this script must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
|
||||
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
||||
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=ffmpeg4
|
||||
SRCNAM=ffmpeg
|
||||
VERSION=${VERSION:-4.0.2}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i586 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i586" ]; then
|
||||
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
else
|
||||
SLKCFLAGS="-O2"
|
||||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
enable() {
|
||||
VAR="$1"; shift
|
||||
DEF="$1"; shift
|
||||
YES="$1"; shift
|
||||
NO="$1"; shift
|
||||
eval "$VAR=\${$VAR:-$DEF}"
|
||||
eval "enable_$VAR=\"$NO\""
|
||||
eval "[ \"\$$VAR\" = \"yes\" ] && enable_$VAR=\"$YES\""
|
||||
}
|
||||
|
||||
# set "enable_$VAR" variables
|
||||
# ENV VAR DEFAULT IF YES IF NO
|
||||
enable "BINS" "no" "" "--disable-programs --disable-manpages"
|
||||
enable "CHROMAPRINT" "no" "--enable-chromaprint" ""
|
||||
enable "DECKLINK" "no" "--enable-decklink" ""
|
||||
enable "FREI0R" "no" "--enable-frei0r" ""
|
||||
enable "GNUTLS" "no" "--enable-gnutls" ""
|
||||
enable "LADSPA" "no" "--enable-ladspa" ""
|
||||
enable "LIBBLURAY" "no" "--enable-libbluray" ""
|
||||
enable "LIBBS2B" "no" "--enable-libbs2b" ""
|
||||
enable "LIBCACA" "yes" "--enable-libcaca" ""
|
||||
enable "LIBCDIO" "yes" "--enable-libcdio" ""
|
||||
enable "LIBCELT" "no" "--enable-libcelt" ""
|
||||
enable "LIBDC1394" "no" "--enable-libdc1394" ""
|
||||
enable "LIBFDK_AAC" "no" "--enable-nonfree --enable-libfdk_aac" ""
|
||||
enable "LIBFLITE" "no" "--enable-libflite" ""
|
||||
enable "LIBFONTCONFIG" "yes" "--enable-libfontconfig" ""
|
||||
enable "LIBFREETYPE" "yes" "--enable-libfreetype" ""
|
||||
enable "LIBFRIBIDI" "yes" "--enable-libfribidi" ""
|
||||
enable "LIBGME" "no" "--enable-libgme" ""
|
||||
enable "LIBGSM" "no" "--enable-libgsm" ""
|
||||
enable "LIBIEC61883" "no" "--enable-libiec61883" ""
|
||||
enable "LIBILBC" "no" "--enable-libilbc" ""
|
||||
enable "LIBMODPLUG" "no" "--enable-libmodplug" ""
|
||||
enable "LIBMP3LAME" "no" "--enable-libmp3lame" ""
|
||||
enable "LIBOPENCORE" "no" "--enable-libopencore-amrnb --enable-libopencore-amrwb" ""
|
||||
enable "LIBOPENCV" "no" "--enable-libopencv" ""
|
||||
enable "LIBOPENJPEG" "yes" "--enable-libopenjpeg" ""
|
||||
enable "LIBOPUS" "no" "--enable-libopus" ""
|
||||
enable "LIBPULSE" "yes" "--enable-libpulse" ""
|
||||
enable "LIBRTMP" "no" "--enable-librtmp" ""
|
||||
enable "LIBRUBBERBAND" "no" "--enable-librubberband" ""
|
||||
enable "LIBSMBCLIENT" "yes" "--enable-libsmbclient" ""
|
||||
enable "LIBSNAPPY" "no" "--enable-libsnappy" ""
|
||||
enable "LIBSPEEX" "no" "--enable-libspeex" ""
|
||||
enable "LIBSSH" "yes" "--enable-libssh" ""
|
||||
enable "LIBTESSERACT" "no" "--enable-libtesseract" ""
|
||||
enable "LIBTHEORA" "yes" "--enable-libtheora" ""
|
||||
enable "LIBTWOLAME" "no" "--enable-libtwolame" ""
|
||||
enable "LIBV4L2" "yes" "--enable-libv4l2" ""
|
||||
enable "LIBVIDSTAB" "no" "--enable-libvidstab" ""
|
||||
enable "LIBVORBIS" "yes" "--enable-libvorbis" ""
|
||||
enable "LIBVPX" "yes" "--enable-libvpx" ""
|
||||
enable "LIBWAVPACK" "yes" "--enable-libwavpack" ""
|
||||
enable "LIBWEBP" "no" "--enable-libwebp" ""
|
||||
enable "LIBX264" "no" "--enable-libx264" ""
|
||||
enable "LIBX265" "no" "--enable-libx265" ""
|
||||
enable "LIBXVID" "no" "--enable-libxvid" ""
|
||||
enable "LIBZMQ" "no" "--enable-libzmq" ""
|
||||
enable "LIBZVBI" "no" "--enable-libzvbi" ""
|
||||
enable "OPENAL" "no" "--enable-openal" ""
|
||||
enable "OPENGL" "yes" "--enable-opengl" ""
|
||||
enable "OPENSSL" "yes" "--enable-nonfree --enable-openssl" ""
|
||||
|
||||
[ "$DECKLINK" = "yes" ] && SLKCFLAGS="$SLKCFLAGS -I/usr/include/decklink"
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $SRCNAM-$VERSION
|
||||
tar xvf $CWD/$SRCNAM-$VERSION.tar.bz2
|
||||
cd $SRCNAM-$VERSION
|
||||
chown -R root:root .
|
||||
find -L . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--libdir=/usr/lib${LIBDIRSUFFIX}/ffmpeg4 \
|
||||
--mandir=/usr/man \
|
||||
--docdir=/usr/doc/$PRGNAM-$VERSION/html \
|
||||
--incdir=/usr/include/ffmpeg4 \
|
||||
--enable-rpath \
|
||||
--disable-podpages \
|
||||
--disable-txtpages \
|
||||
--arch=$ARCH \
|
||||
--enable-gpl \
|
||||
--enable-version3 \
|
||||
--enable-shared \
|
||||
--disable-static \
|
||||
--disable-debug \
|
||||
--enable-libass \
|
||||
$enable_BINS \
|
||||
$enable_CHROMAPRINT \
|
||||
$enable_DECKLINK \
|
||||
$enable_FREI0R \
|
||||
$enable_GNUTLS \
|
||||
$enable_LADSPA \
|
||||
$enable_LIBBLURAY \
|
||||
$enable_LIBBS2B \
|
||||
$enable_LIBCACA \
|
||||
$enable_LIBCDIO \
|
||||
$enable_LIBCELT \
|
||||
$enable_LIBDC1394 \
|
||||
$enable_LIBFDK_AAC \
|
||||
$enable_LIBFLITE \
|
||||
$enable_LIBFONTCONFIG \
|
||||
$enable_LIBFREETYPE \
|
||||
$enable_LIBFRIBIDI \
|
||||
$enable_LIBGME \
|
||||
$enable_LIBGSM \
|
||||
$enable_LIBIEC61883 \
|
||||
$enable_LIBILBC \
|
||||
$enable_LIBMODPLUG \
|
||||
$enable_LIBMP3LAME \
|
||||
$enable_LIBOPENCORE \
|
||||
$enable_LIBOPENCV \
|
||||
$enable_LIBOPENJPEG \
|
||||
$enable_LIBOPUS \
|
||||
$enable_LIBPULSE \
|
||||
$enable_LIBRTMP \
|
||||
$enable_LIBRUBBERBAND \
|
||||
$enable_LIBSMBCLIENT \
|
||||
$enable_LIBSNAPPY \
|
||||
$enable_LIBSPEEX \
|
||||
$enable_LIBSSH \
|
||||
$enable_LIBTESSERACT \
|
||||
$enable_LIBTHEORA \
|
||||
$enable_LIBTWOLAME \
|
||||
$enable_LIBV4L2 \
|
||||
$enable_LIBVIDSTAB \
|
||||
$enable_LIBVORBIS \
|
||||
$enable_LIBVPX \
|
||||
$enable_LIBWAVPACK \
|
||||
$enable_LIBWEBP \
|
||||
$enable_LIBX264 \
|
||||
$enable_LIBX265 \
|
||||
$enable_LIBXVID \
|
||||
$enable_LIBZMQ \
|
||||
$enable_LIBZVBI \
|
||||
$enable_OPENAL \
|
||||
$enable_OPENGL \
|
||||
$enable_OPENSSL
|
||||
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
if [ "$BINS" = "yes" ]; then
|
||||
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
||||
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
fi
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
Changelog CONTRIBUTING.md COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1 COPYING.LGPLv3 \
|
||||
CREDITS INSTALL.md LICENSE.md MAINTAINERS README.md RELEASE RELEASE_NOTES VERSION \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
mv $PKG/usr/share $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
10
multimedia/ffmpeg4/ffmpeg4.info
Normal file
10
multimedia/ffmpeg4/ffmpeg4.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="ffmpeg4"
|
||||
VERSION="4.0.2"
|
||||
HOMEPAGE="https://ffmpeg.org/"
|
||||
DOWNLOAD="https://ffmpeg.org/releases/ffmpeg-4.0.2.tar.bz2"
|
||||
MD5SUM="5576e8a22f80b6a336db39808f427cfb"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="libass"
|
||||
MAINTAINER="Andreas Guldstrand"
|
||||
EMAIL="andreas.guldstrand@gmail.com"
|
19
multimedia/ffmpeg4/slack-desc
Normal file
19
multimedia/ffmpeg4/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description.
|
||||
# Line up the first '|' above the ':' following the base package name, and
|
||||
# the '|' on the right side marks the last column you can put a character in.
|
||||
# You must make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
ffmpeg4: ffmpeg4 (Software to record, convert and stream audio and video)
|
||||
ffmpeg4:
|
||||
ffmpeg4: ffmpeg4 should be installable alongside ffmpeg 3.x without conflict.
|
||||
ffmpeg4:
|
||||
ffmpeg4: FFmpeg is a complete solution to record, convert and stream audio and
|
||||
ffmpeg4: video. It includes libavcodec, the leading audio/video codec library.
|
||||
ffmpeg4:
|
||||
ffmpeg4: Homepage: https://ffmpeg.org/
|
||||
ffmpeg4:
|
||||
ffmpeg4:
|
||||
ffmpeg4:
|
Loading…
Reference in a new issue