Best cd buerner w/ xfce
Jay Pfaffman
pfaffman at relaxpc.com
Wed May 15 22:38:42 CEST 2002
On Wed, 15 May 2002 13:13:52 -0700, Anthony Ewell <aewell at gbis.com> said:
> Hi All,
> Okay, so this a little, tiny bit off topic.
> I am trying to wean myself off of having to use
> EZ CD Creator (in Win NT) to burn my CD's. Does
> anyone have a suggestion for a stable, easy to
> use CD Burner that is friendly to XFce (3.8.16)?
Probably not what you want, but I'm very happy with mkisofs, cdrdao,
and cdrecord. I've got a couple scripts that call them with the
various arcane switches that I like. . .
mkimage:
#!/bin/sh
if test $# -lt 2 ;
then
echo $0 imagename directoryname
echo "Write an iso filesystem of directoryname with Rock Ridge and Joliet "
echo "extentions, as well as Mac-HFS extensions to imagename. The volume will"
echo "be named directoryname on Macs, PeeCees and even Solaris."
exit
fi
IMAGE="$1"
SOURCE="$2"
shift 2
cd "$SOURCE"
rm -f "$SOURCE.ps" "$SOURCE.pdf" "$SOURCE.txt"
mp3report --template=/home/pfaffman/bin/mp3report.support/textonly.html -o "$SOURCE.txt" .
cd ..
cdlabelgen -t /usr/share/cdlabelgen/envelope.ps -f"$SOURCE/$SOURCE.txt" -o "$SOURCE/$SOURCE.ps" -c "$SOURCE" -s " "
ps2pdf "$SOURCE/$SOURCE.ps" "$SOURCE/$SOURCE.pdf"
mkhybrid -a -hide-joliet ".Apple*" -r -hfs -no-desktop --exchange --netatalk -map /home/pfaffman/bin/apple-map -J -V "$SOURCE" -o "$IMAGE" $* "$SOURCE"
cddatawrite:
#!/bin/sh
echo Pressing $*
cdrecord -v speed=8 dev=1,0,0 -eject $*
play /usr/share/sounds/KDE_Beep_RimShot.wav &
cdaudioread:
#!/bin/sh
cd /home/tmp
disc-cover
rm -f toc-file data.bin *.wav
# relax
# cdrdao read-cd --paranoia-mode 3 --eject --source-device 0,5,0 $* toc-file
cdrdao read-cd --paranoia-mode 3 --driver generic-mmc --eject --source-device 1,0,0 $* toc-file
play /usr/share/sounds/gnobots2/yahoo.wav &
cdaudiowrite:
#!/bin/sh
cd /home/tmp
echo Pressing data.bin
#cat toc-file
cdrdao write --driver generic-mmc --reload --eject --device 1,0,0 $* toc-file
play /usr/share/sounds/startup1.wav &
--
Jay Pfaffman pfaffman at relaxpc.com
+1-415-821-7507 (H) +1-415-810-2238 (M)
http://relax.ltc.vanderbilt.edu/~pfaffman/
More information about the Xfce
mailing list