Cda2mp3: Difference between revisions
Jump to navigation
Jump to search
(initial) |
(Undo revision 4619 by Special:Contributions/83.206.73.250 (User talk:83.206.73.250)) |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
==Description== |
==Description== |
||
⚫ | |||
This is for ripping audio CDs via the commands menu. |
This is for ripping audio CDs via the commands menu. |
||
==Images== |
|||
⚫ | |||
==Hardware requirements== |
==Hardware requirements== |
||
Line 10: | Line 12: | ||
* Dagrab |
* Dagrab |
||
* Lame |
* Lame |
||
* Libwww-perl |
|||
==Installation== |
==Installation== |
||
Libwww-perl |
|||
<pre> |
|||
cd $SOURCEDIR |
|||
libwww-perl-<VERSION>.tar.gz |
|||
cd libwww-perl-<VERSION> |
|||
perl Makefile.PL |
|||
make |
|||
make test |
|||
make install |
|||
</pre> |
|||
Lame |
Lame |
||
<pre> |
<pre> |
||
Line 44: | Line 34: | ||
A directory is needed, for the MP3s. E.g |
A directory is needed, for the MP3s. E.g |
||
<pre> |
<pre> |
||
mkdir /mp3 |
mkdir /mp3 |
||
</pre> |
</pre> |
||
The shell script '''dagrab.sh''' has to be copied into the PATH and made executable |
The shell script '''[[:de:dagrab.sh|dagrab.sh]]''' has to be copied into the PATH and made executable |
||
<pre> |
<pre> |
||
cp dagrab.sh /usr/bin |
cp dagrab.sh /usr/local/bin |
||
chmod 777 /usr/bin/dagrab.sh |
chmod 777 /usr/local/bin/dagrab.sh |
||
</pre> |
</pre> |
||
==Configuration== |
==Configuration== |
||
Here is an example for the commands.conf |
Here is an example for the commands.conf |
||
<pre> |
|||
Run dagrab : /usr/local/bin/dagrab.sh /mp3 |
Run dagrab : /usr/local/bin/[[:de:dagrab.sh|dagrab.sh]] -start /mp3 |
||
Status : /usr/local/bin/dagrab.sh |
Status : /usr/local/bin/[[:de:dagrab.sh|dagrab.sh]] -status |
||
List /mp3 : if ls "/mp3"/* >/dev/null 2>&1 ; then cd "/mp3" ; ls ; else echo '/mp3 is empty !' ; fi |
List /mp3 : if ls "/mp3"/* >/dev/null 2>&1 ; then cd "/mp3" ; ls ; else echo '/mp3 is empty !' ; fi |
||
Kill dagrab/lame? : /usr/local/bin/dagrab.sh --stop |
|||
</pre> |
|||
During ''Run dagrab'' one should be online to have access to a CDDB database. |
During ''Run dagrab'' one should be online to have access to a CDDB database. |
Latest revision as of 14:45, 24 April 2007
Description
This is for ripping audio CDs via the commands menu.
Images
Hardware requirements
- CD drive
Software requirements
- At (job manager)
- Dagrab
- Lame
Installation
Lame
cd $SOURCEDIR tar xvzf lame-<VERSION>.tar.gz cd lame-<VERSION> ./configure --prefix=/usr make make install
Dagrab
cd $SOURCEDIR tar xvzf dagrab-<VERSION>.tar.gz cd dagrab-<VERSION> make cp dagrab /usr/local/bin
A directory is needed, for the MP3s. E.g
mkdir /mp3
The shell script dagrab.sh has to be copied into the PATH and made executable
cp dagrab.sh /usr/local/bin chmod 777 /usr/local/bin/dagrab.sh
Configuration
Here is an example for the commands.conf
Run dagrab : /usr/local/bin/dagrab.sh -start /mp3 Status : /usr/local/bin/dagrab.sh -status List /mp3 : if ls "/mp3"/* >/dev/null 2>&1 ; then cd "/mp3" ; ls ; else echo '/mp3 is empty !' ; fi
During Run dagrab one should be online to have access to a CDDB database.
Problems
Links
[1] | http://web.tiscali.it/marcellou/dagrab.html | Dagrab homepage |
[2] | http://lame.sourceforge.net | Lame homepage |
[3] | http://lwp.linpro.no/lwp | Libwww homepage |