multimedia/ripit: Added (command line audio CD ripper)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
This commit is contained in:
parent
d4104adf31
commit
608ee7d87a
|
@ -0,0 +1,32 @@
|
|||
RipIT is used to create MPEG-1 Layer 3 (mp3) using Lame, or uses Flac (flac),
|
||||
Ogg Vorbis (ogg), Faac (m4a), Musepack (mpc), mp4als (als), Wavpack (wv) or
|
||||
ffmpeg to convert audio files (wav) extracted from an audio CD.
|
||||
It is a console based front-end (no GUI here), written in Perl, for these
|
||||
programs (which must be installed -- at least one out of each category):
|
||||
|
||||
* dagrab, cdparanoia or cdda2wav (tosha and cdd are also supported)
|
||||
for ripping the audio CD tracks
|
||||
* Lame, OggVorbis, Flac or Faac, Musepack, mp4als, Wavpack or ffmpeg for
|
||||
encoding the wav files to a compressed format
|
||||
|
||||
Optionally, ripit can use:
|
||||
|
||||
* CDDB_get 2.27 or higher, a Perl module for CDDB retrieval
|
||||
* LWP::simple, a Perl module to access web pages and eventually Digest::MD5
|
||||
and Unicode::UCD depending your choice of options
|
||||
|
||||
When using Musicbrainz DB one needs additionally: WebService::MusicBrainz
|
||||
and the discid-tool or MusicBrainz::DiscID.
|
||||
|
||||
The program will do the following without user intervention:
|
||||
|
||||
* get the audio CD Album/Artist/Tracks information from MusicBrainz or freeCDDB
|
||||
* rip the audio CD Tracks
|
||||
* encode to Flac, mp3, Ogg-Vorbis, mpc, m4a or als
|
||||
* id3 tag encoded songs
|
||||
* create a playlist (m3u) file
|
||||
* optionally generate a toc or inf files for DAO burning with, CD-text
|
||||
* optionally prepare and send a CDDB submission and save it locally
|
||||
* optionally extract hidden songs and split ghost songs
|
||||
* optionally create md5sum files for all tracks
|
||||
* run several encoder processes at the same time and same run
|
|
@ -0,0 +1,15 @@
|
|||
config() {
|
||||
NEW="$1"
|
||||
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
||||
# If there's no config file by that name, mv it over:
|
||||
if [ ! -r $OLD ]; then
|
||||
mv $NEW $OLD
|
||||
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
|
||||
# toss the redundant copy
|
||||
rm $NEW
|
||||
fi
|
||||
# Otherwise, we leave the .new copy for the admin to consider...
|
||||
}
|
||||
|
||||
config etc/ripit/config.new
|
||||
|
|
@ -0,0 +1,66 @@
|
|||
#!/bin/sh
|
||||
# Slackware build script for ripit
|
||||
|
||||
# Copyright 2011 Grigorios Bouzakis <grbzks@xsmail.com>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Permission to use, copy, modify, and distribute this software for any purpose
|
||||
# with or without fee is hereby granted, provided that the above copyright
|
||||
# notice and this permission notice appear in all copies.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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
|
||||
# AUTHORS AND COPYRIGHT HOLDERS AND THEIR CONTRIBUTORS 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=ripit
|
||||
VERSION=${VERSION:-3.9.0}
|
||||
ARCH=noarch
|
||||
BUILD=${BUILD:-1}
|
||||
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
DOCS="HISTORY LICENSE README"
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
find . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
make INSTALL=/bin/install prefix=$PKG/usr mandir=$PKG/usr/man/man1 etcdir=$PKG/etc/ripit install
|
||||
|
||||
mv $PKG/etc/ripit/config $PKG/etc/ripit/config.new
|
||||
|
||||
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
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a $DOCS $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
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="ripit"
|
||||
VERSION="3.9.0"
|
||||
HOMEPAGE="http://www.suwald.com/ripit/news.php"
|
||||
DOWNLOAD="http://suwald.com/ripit/ripit-3.9.0.tar.gz"
|
||||
MD5SUM="34210d4ee72c288be31f75340c5351d0"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Grigorios Bouzakis"
|
||||
EMAIL="grbzks@xsmail.com"
|
||||
APPROVED="Niels Horn"
|
|
@ -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------------------------------------------------------|
|
||||
ripit: ripit (command line audio CD ripper)
|
||||
ripit:
|
||||
ripit: RipIT is used to create MPEG-1 Layer 3 (mp3) using Lame, or uses Flac
|
||||
ripit: (flac), Ogg Vorbis (ogg), Faac (m4a), Musepack (mpc), mp4als (als),
|
||||
ripit: Wavpack (wv) or ffmpeg to convert audio files (wav) extracted from an
|
||||
ripit: audio cd.
|
||||
ripit:
|
||||
ripit: Homepage: http://www.suwald.com/ripit/news.php
|
||||
ripit:
|
||||
ripit:
|
||||
ripit:
|
Loading…
Reference in New Issue