mp3burn/0000775000175000017500000000000011075031461012714 5ustar formorerformorermp3burn/mp3burn0000755000175000017500000005371111071642031014232 0ustar formorerformorer#!/usr/bin/perl # # mp3burn $Revision: 0.13 $ $Date: 2008/10/04 10:23:21 $ # based upon mp3burn-0.1 - see http://sourceforge.net/projects/mp3burn/ # #Copyright 2000 Ryan Richter #With help from Dan Lark #Copyright 2003 Alexander Wirt # #You may fold, spindle, and mutilate this software under the terms of the GPL # # $Log: mp3burn,v $ # Revision 0.13 2008/10/04 10:23:21 formorer # Fix swab detection # # Revision 0.12 2006/09/24 09:38:28 formorer # Add swap support for ppc # # Revision 0.11 2005/02/09 21:10:51 formorer # Added swab detection for x86_64 # # Revision 0.10 2004/07/08 20:33:50 formorer # - Fixed some small typo - thanks to sdelafond@lika.fr.st # # Revision 0.9 2004/06/20 15:22:18 formorer # Added Support for length detection of FLAC files. # (There must be someone outside really using them ;)) # # Revision 0.8 2004/06/05 06:40:34 formorer # I'm bored from any locale problems or changes in the output of ogginfo... # So I decided to switch to Ogg::Vorbis::Header and it work like a charme.. # Here it is. # # Revision 0.7 2004/06/05 05:56:18 formorer # the decection of the correct mp3decoder is now much smarter :) # # Revision 0.6 2004/04/28 08:06:37 formorer # Fixed Flac Detection - Thanks to: Georg Wittmann # # Revision 0.5 2004/04/14 10:06:39 formorer # Fixed get_atip function, so that $cdrecord_opts are recognized # # Revision 0.4 2004/01/02 09:12:48 formorer # Fixed Podparsing # # Revision 0.3.1.1 2004/01/01 21:43:57 formorer # Initial Import # ###################### =head1 NAME mp3burn - burn audio CDs from MP3, Ogg Vorbis, or FLAC files =cut use MP3::Info; use File::Basename; use Pod::Usage; use String::ShellQuote; use Getopt::Long; use Ogg::Vorbis::Header; sub get_audio_info { my ($filename) =@_; my $hash = {}; my $fileinfo=`file -b "$filename"`; if ($fileinfo =~ m/FLAC/i) { #If the FLAC decoder is not installed we just exit $flac = `which flac`; chomp $flac; if (! -x $flac) { print "FLAC decoder is not available\n"; return; } # FLAC file # we don't know the length, so just set it to 1 second $hash->{DECODER}=["flac", "-d", "-F", "-s", "-c"]; eval "require Audio::FLAC"; if ($@) { if ($DEBUG) { print "No Audio::FLAC available\n"; } $hash->{SECS} = 1; } else { require Audio::FLAC; my $flac = Audio::FLAC->new("$filename"); $hash->{SECS} = $flac->{trackTotalLengthSeconds}; if ($DEBUG) { print "Flac Length: $hash->{SECS}\n"; } } } elsif ($fileinfo =~ m/Ogg data/i) { # Ogg/Vorbis processing $hash->{DECODER}=["ogg123", "-d", "raw", "-f", "-", "-q"]; my $ogginfo = Ogg::Vorbis::Header->new("$filename"); if (! defined $ogginfo) { undef $hash; next; } $hash->{SECS} = $ogginfo->info('length'); $hash->{MODE} = $ogginfo->info('channels'); $hash->{FREQUENCY} = $ogginfo->info('rate'); if ($DEBUG) { print "ogg parsing:\n"; print "\tchannels=$hash->{MODE}\n"; print "\trate=$hash->{FREQUENCY}\n"; print "\tlength=$hash->{SECS}\n"; } } elsif ($hash = MP3::Info::get_mp3info($filename)) { if ($mp3decoder) { $hash->{DECODER} = ["$mp3decoder", "--rate", "44100", "--stereo", "-s", "-q"]; } else { if ($hash->{FREQUENCY} != 44.1) { print "*** unable to continue ***\n"; print " mpg321 cannot handle files with sample rates != 44.1kHz\n"; print " sample rate is $hash->{FREQUENCY} for file: $filename\n"; print " please either burn without this file or see the mp3burn manpage\n"; print " about using -M or setting \$mp3decoder in \~/.mp3burnrc\n"; &Cleanup; exit 1; } $hash->{DECODER} = ["mpg321", "--rate", "44100", "--stereo", "-s", "-q"]; } } # else we don't know what type of file this is... $hash; } sub get_ATIP_info () { #die "No CDR device information is available. Please specify the device." unless ($1); #eject doesn't work with the atip switch... also it would be counterproductive to eject #the cd before burning... so just remove it $atipoptions = $cdrecord_opts; $atipoptions =~ s/-eject//; if ($DEBUG) { print "Call cdrecord with: cdrecord -atip $atipoptions. \n"; } open(CDINFO,"cdrecord -atip $atipoptions 2>&1 |"); #Use cdrecord -atip to get ATIP info while () { if (/cdrecord: No CD\/DVD-Recorder device specified/) { print "No CDR device specified. It must be specified via on of the following:\n"; print "\tdev=\$device in \~/.mp3burnrc\n"; print "\t-o \"dev=\$device\" on the command-line\n"; print "\tthe value of \$CDR_DEVICE in the environment\n"; print "\tin the file /etc/default/cdrecord (man cdrecord)\n"; exit 1; } next unless (/out:.+\((\d+):(\d+)/); #The lead out time is what we want $min=$1; $sec=$2; } close CDINFO; die "No CD-R in CD Writer." unless ($sec && $min); printf "ATIP reports available time: [%d:%.2d]\n",$min,$sec; } sub Cleanup { # kill off any children that might still be around if (@children) { print "cleaning up children: @children\n"; kill 'TERM', @children; } # remove any fifos we created if (@fifo) { unlink @fifo; } } =head1 SYNOPSIS B [OPTION] [mp3,ogg, and flac files] =cut #Very much better and more intuitivly to work :) Getopt::Long::Configure ("bundling"); $files = GetOptions('help|h' => \$help, #Help function 'swap|m' => \$swap, #Manual swap 'playlist|p=s' => \$playlist, #Load a playliste 'tmpdir|t=s' => \$tempdir, #tempdir 'check|c=s' => \$check, #timecheck 'cdrecord|o=s' => \$manual, #cdrecord 'dummy|d' => \$dummy, #debugfunction 'atip|a' => \$atip, #show atip infos 'encoder|M=s' => \$encoder, #external mp3 encoder 'debug|D' => \$DEBUG); #debugging =head1 DESCRIPTION B is a simple command line tool for making audio CDs from MP3s without filling up your disk with .wav files. It uses Perl(1), ogg123(1), mpg321(1) or mpg123(1), cdrecord(1), flac(1), and the L Perl module. =cut =head1 OPTIONS =over 4 =cut =item B<-h, --help> Prints out a brief help =item B<-m, --swap> Manual C option mode. Use this to disable the automatic detection for swab mode in case it is not working correctly on your system. (Also, please send email to or file a bug against the L package if you encounter this problem.) =cut $manual_cdrecord_opts = $swap; =item B<-p, --playlist> ".m3u playlist" Use a playlist to specify audio files to burn. Instead of (or in addition to) listing mp3/ogg/flac files, supply a .m3u playlist (e.g., from xmms) that contains the audio files for your CD. Note: If you specify both a playlist and audio files, the files specified on the command-line will be appended to the list of audio files listed in the playlist. If a file referenced in a playlist cannot be read, it will be skipped. Be wary of playlist editors that use relative paths - mp3burn cannot know what path the playlist editor assumed. =cut =item B<-t, --tmpdir> "tmpdir" Put temporary files in F. Default is to use the current directory. =cut if ($tempdir) { $tmpdir=$tempdir ."/"; die "Cannot write to temp. dir -> $tmpdir" unless ( -d $tmpdir && -w $tmpdir); } if (-r "$ENV{'HOME'}/.mp3burnrc") { #process ~/.mp3burnrc if ((stat("$ENV{'HOME'}/.mp3burnrc"))[2] & 02) { die "$ENV{'HOME'}/.mp3burnrc should not be world-writable"; } open(RC, "$ENV{'HOME'}/.mp3burnrc"); $oldRS = $/; undef $/; $rc = ; close(RC); unless(defined eval $rc) { die "Error in .mp3burnrc:\n$@"; } $/ = $oldRS; } #cdrecord_opts must be determined before -c or -a options are processed. #The value of $CDR_DEVICE must be explicitly added to $cdrecord_opts #in order to get past our checks. Other cdrecord env vars need not be processed by us. if(exists $ENV{'CDR_DEVICE'}) { $cdrecord_opts .= " dev=" . $ENV{'CDR_DEVICE'} . " "; if ($DEBUG) { print "adding the value of environment variable CDR_DEVICE to the cdrecord_opts\n"; } } $cdrecord_opts = $manual if $manual; # -o overrides .mp3burnrc =item B<-c, --check> "MMM:SS" | ATIP Time check: compute the total length of files to be burned and warn if greater than I minutes and seconds. If the value ATIP is supplied, the total length is checked against the length available on the CDR[W] as reported by ATIP. Note that FLAC-encoded files are assumed to be 1 second long (until there is an easy way to get the file duration). You will need to calculate burn-length on your own with FLAC files. =cut if ($check) { die "Time check not available without MP3::Info module" if $no_mp3info; if ($check =~ /ATIP/i) { #If the user trusts ATIP info use that for our time check get_ATIP_info(); } else { #Otherwise a time is supplied die "Time check needs to be in the form of MMM:SS or 'ATIP'" unless ($check =~ /\d{0,3}\:\d{2}$/); ($min,$sec)=split(/\:/,$check); } } # this is no longer necessarily a condition to die... #if ($cdrecord_opts eq '') { # die "Need to specify cdrecord options through -o or .mp3burnrc\n" . # "Usage: mp3burn [-c MMM:SS] [-d] [-t tmpdir] [-o cdrecord_opts] [mp3 files]\n"; #} =item B<-d, --dummy> Perform a "dummy" run: do everything except actually burn the CD (uses L C<-dummy> option). =cut if ($dummy) { $cdrecord_opts .= " -dummy"; } =item B<-o, --cdrecord> "cdrecord_opts" Specify the command line options for cdrecord. The quotes are required to prevent B from parsing cdrecord(1) options. Overrides options specified in F<~/.mp3burnrc>. Example: B<-o> "-v dev=1,0 speed=4 -swab" =item B The options I<-pad> and I<-audio> are added automatically, since they are always necessary. The script also tries to detect if I<-swab> is needed (for example on x86 and other little-Endian platforms). cdrecord is supposed to take care of any byte-ordering requirements specific to your burner. (If you end up with a CD that merely sounds like static, you most likely need to toggle use of I<-swab>.) You should also consider using I<-v> so that you can watch the burn in progress. This goes for F<~/.mp3burnrc> also. =cut $cdrecord_opts .= " -pad -audio"; unless ($manual_cdrecord_opts) { # if the datastream is in little-endian order, we need to # add the swab flag to cdrecord if it's not already present if (!($cdrecord_opts =~ /.*-swab.*/)) { # assert: swab wasn't set # check to see if it's needed chop ($arch = `/bin/uname -m`); if ($DEBUG) { print "arch=$arch\n"; } if ($arch =~ /i[3456]86/ || $arch =~ /x86_64/ || $arch =~ /ppc/ ) { # ia32 - we need to swab $cdrecord_opts .= " -swab"; if ($DEBUG) { print "-swab flag automatically added\n"; } } #elsif () {} # what other arch's need this? } } =item B<-a, --atip> Lookup the ATIP info for the device in the cdburner (using L C<-atip>) and then exits. This option can only be used (successfully) in conjuction with B<-o>. =cut # process -a (ATIP) flag if ($atip) { # We just want to see how much time the disk has if ($check || $dummy || $tempdir) { #The -a option is mutually exclusive of all but the -o #"cdrecord options" switch $errmsg = "The '-a' ATIP check cannot be used with any other switches\n"; $errmsg .= "You may use '-c ATIP' to automatically use disk ATIP info, however."; die $errmsg; } else { get_ATIP_info(); #Let's get the ATIP info and bail exit 0; } } unless ($playlist) { # display usage if there is no playlist and no audio filename args or if -h is ommitted if (! @ARGV || $help) { pod2usage(1); } } # check to see if mpg123 is present # # since this package depends on mpg321, we can count on # /usr/bin/mpg123 being a link to /etc/alternatives and then mpg321 # by default - for the time being check for the debian install of # mpg123 in mpg123-oss =item B<-M, --encoder> "MP3 decoder" Use an MP3 decoder other than the default, which is mpg321. This is imperative when burning tracks that have sample rates other than 44.1kHz, and the current version of mpg321 will not decode these files. Specify the name of the decoder to be used, e.g. F; you can also specify this in your .mp3burnrc file with B<$mp3decoder => F. I<(Note: Currently, the MP3 decoder must be able to accept mpg123-style command-line arguments.)> =cut $mp3decoder = $encoder if $encoder; # -M overrides .mp3burnrc if ($mp3decoder) { $mp3decoder = `which $mp3decoder`; chop $mp3decoder; die "Cannot locate MP3 decoder -> $encoder" unless (-x $mp3decoder); } #No mp3decoder choosed ? We use our default if (! $mp3decoder) { $mp3decoder = "mpg123"; } if (! `which $mp3decoder`) { print "$mp3decoder not found...\n"; print "Try mpg123: "; if (`which mpg123`) { print "found\n"; $mp3decoder = `which mpg123`; } else { print "not found\n"; print "Try mpg321: "; if (`which mpg321`){ print "found\n"; $mp3decoder = `which mpg321`; } else { print "not found\n"; die "No mpg123 compatible player found"; } print "Using $mp3decoder as mp3 decoder\n"; } } else { $mp3decoder = `which $mp3decoder`; } chop $mp3decoder; # process the playlist - push these files onto ARGV if ($playlist) { shift my @playlist_files; open (PL, $playlist) || die "cannot open playlist $playlist"; while () { # skip over comments/headers, others lines should be filenames next if ($_ =~ /^#/); chomp; if (-r $_) { unshift (@playlist_files, $_); } else { print "file not found - skipping playlist file $_"; } } close (PL); foreach $element (@playlist_files) { quotemeta($element); unshift (@ARGV, $element); } } ############################################# # loop over the audio filenames in ARGV ############################################# for ($i = 0; $i <= $#ARGV; $i++) { die "$ARGV[$i] does not exist or invalid audio file" unless (-f $ARGV[$i]); #Check to see if file exists if (-l $ARGV[$i]) { #mp3info doesn't work on symlinks $file = readlink $ARGV[$i]; } else { $file = $ARGV[$i]; } # 2002/11/10 # moved get_audio_info up to avoid creating FIFO when we don't # have a valid audio file to work with $info = get_audio_info $file; #Let's get the mp3's time unless ($info) { print "skipping file: $file - not a valid MP3, OGG, or FLAC file, or decoder is not installed!\n"; next; } if ($DEBUG) { print "creating FIFO for audio file: $file\n"; } $fifo[$i] = $tmpdir . basename $ARGV[$i]; #set the names of the fifos $fifo[$i] =~ s/$/.cdr/i; #foo.mp3 -> foo.mp3.cdr if ($sec) { $totsecs += $info->{SECS} + 2; # total time + 2 for padding } system "mkfifo", $fifo[$i]; #Make our fifos (optionally to the tempdir) # 2000/11/21 # beef up the fork() code - example taken from camel book FORK: if ($pid = fork) { # we're in the parent here, child pid in $pid # we could use a list, but we're lazy and know how many procs # there will be, so use an array push @children, $pid; } elsif (defined $pid) { # if $pid is defined, it's == 0 #start decoder processes if ($DEBUG) { print "Decoder: @{$info->{DECODER}} File: $ARGV[$i]\n"; } close(STDOUT); open(STDOUT, ">$fifo[$i]"); #this to avoid using the shell exec(@{$info->{DECODER}}, $ARGV[$i]); die "Failed to exec \`".join(" ",@{$info->{DECODER}})."\': $!"; } elsif ($! =~ /No more process/) { # EAGAIN, supposedly recoverable fork error sleep 5; redo FORK; } else { # weird fork error die "Can't fork: $!\n"; } } #If we have no valid files left we should die die "No valid files to burn left. Exiting\n" unless @fifo; $totmin=int $totsecs/60; $totsec=$totsecs % 60; if (($totsecs > (($min*60)+$sec)) && $sec) { printf "The max time allocated was [$min:%02d].\n", $sec; printf "The total time came to [$totmin:%02d]\n", $totsec; print "Do you wish to continue? (Y/N) "; while (1) { $key=uc(getc); if ($key eq 'N') { unlink @fifo; print "cleaning up children: @children\n"; kill 'TERM', @children; exit 1; } last if ($key eq 'Y'); } } if ($sec){ printf "\nTotal time is [$totmin:%02d] of [$min:%02d] available calculated\n\n", $totsec; sleep 3; } # prepare the command line # We use now the shellquote module for escaping the filenames $cdrecordcmd = "cdrecord " . join (" ", split(/\s+/, $cdrecord_opts)) . " " . shell_quote @fifo; if ($DEBUG) { print "invoking cdrecord with:\n"; print "$cdrecordcmd\n"; } # burn! $rc = system "$cdrecordcmd"; # check the return code from cdrecord if ($rc != 0) { # cdrecord exited non-zero print "warning: cdrecord exited non-zero!\n"; } &Cleanup; exit 0; =head1 RETURN VALUE B returns 0 on success. =head1 DIAGNOSTICS =item Error in .mp3burnrc: Perl(1) cannot parse the F<.mp3burnrc> file. The following example occurs when a double quote is not terminated: bash-2.05$ sudo mp3burn -d ~/bell.ogg String found where operator expected at (eval 10) line 7, at end of line (Missing operator before ?) Error in .mp3burnrc: Can't find string terminator '"' anywhere before EOF at (eval 10) line 7. bash-2.05$ You will experience this error if you define both $cdrecord_opts and $mp3decoder without terminating the variable assignments with the ';' character: $ mp3burn -d -t /tmp Theodor_Storm_Aquis_submersus_1.mp3 Scalar found where operator expected at (eval 10) line 2, near ""-v speed=2 dev=0,3,0" $mp3decoder" (Missing operator before $mp3decoder?) Error in .mp3burnrc: syntax error at (eval 10) line 2, near ""-v speed=2 dev=0,3,0" $mp3decoder" =back =head1 EXAMPLES Write an Ogg Vorbis file from a CD-R drive, F, mounted at F to a CD-RW drive, F, called C<0,1,0> in cdrecord(1) SCSI notation. Ensure that file is no longer than 50 minutes. L is used to get root permissions for cdrecord(1). % sudo mp3burn -c 050:00 -o "-v speed=2 dev=0,1,0" /mnt/scd0/bell.ogg Create a F<~/.mp3burnrc> that prints a message before writing and uses a different MP3 decoder than the default of mpg321. # This is an example. $cdrecord_opts="-v speed=2 dev=0,1,0"; $mp3decoder = "mpg123-oss-3dnow"; print "Nine seconds to slap a CD-R in the drive!\n" ; # # See mp3burn(3). # Specify an mp3decoder other than mpg321. $ sudo mp3burn -M mpg123-esd ./rush/*mp3 =head1 FILES =over 4 =item F<~/.mp3burnrc> In this file, you may permanently specify the cdrecord options and MP3 decoder you want to use. The format is: $cdrecord_opts = "cdrecord options"; $mp3decoder = "some mp3 decoder"; You may place comments in this file by beginning a line with C<#>. =item B The values of $cdrecord_opts and $mp3decoder in F<~/.mp3burnrc> are ignored if the C<-o> or C<-<>command-line options are used, respectively. =back =head1 CAVEATS Has not been tested extensively with Ogg Vorbis files. Ogg Vorbis files must be in CD-DA format: i.e. 44100 samples/channel x 16 bits/sample x 2 channels. =head1 BUGS If you execute B with root permissions, the F<~/.mp3burnrc> will also be executed with root permissions. =head1 NOTES There are a number of GUI frontends for B: =over =item Xmp3Burn http://perso.wanadoo.es/ja_recio/xmp3burn/xmp3burn.html =item Kmp3burn http://computer.freepage.de/kmp3burn/index.htm =item GtkMp3Burn http://gtkmp3burn.sourceforge.net/ =back =head1 SEE ALSO cdrecord(1), mpg321(1), ogg123(1), ogginfo(1), flac(1), L The B web page is http://mp3burn.sourceforge.net/. The Ogg Vorbis web page is http://www.xiph.org/ogg/vorbis/. The FLAC web page is http://flac.sourceforge.net/. =head1 AUTHOR Copyright (c) 2000 Ryan Richter. Copyright (c) 2003 Alexander Wirt This script was written by Ryan Richter with much code contributed by Dan Lark . I would like to thank Dan Lark for contributing the ideas and code for most of the new features, and Tony Mancill for making Debian packages and helping with debugging. Later in 2003 Alexander Wirt continued to write this program. This program is licensed under the GNU General Public License. You may fold, spindle, and mutilate this software under the terms of the GPL. =head1 HISTORY =over =item 20031014 Switches from standard getopt to GetOpts::Long Updated Manpage for the new option format =item 20031012 Updated mp3burn to use pod2usage Added -h switch for getting help Fixed a bug with the output of file in conduction with FLAC files Added a gracefully exit if there are no valid files left Use String::Shellquote to avoid problems with the shell =item 20030203 hacked in support for FLAC, as per suggested by =item 20021110 updated to work with new ogginfo output format in vorbis-tools 1.0; modified slightly to not create FIFOs for invalid MP3/OGG files =item 20020728 added I<-M $mp3decoder> switch to support MP3 decoders other than mpg321 and mpg123-oss =item 20010917 added check to automatically add -swab on ia32 platform L replaces MPEG::MP3Info =item B 0.02 10/28/00 Changes since 0.01: Bugfixes: Spaces, quotes, and other shell metacharacters in filenames should no longer problematic, since we use Shell:QuoteString to avoid problems with that (Feedback for that is wished). Mono MP3s and MP3s not sampled at 44.1kHz are no longer problematic. New Features: Editing the executable is no longer necessary; cdrecord options can be specified on the command line or in F<~/.mp3burnrc>. Temp dir for FIFOs may be set to other than the current dir. Dummy runs now supported from the command line. A time check is now available: B can abort if total time exceeds a threshold. Requires L. Playlist support. =back =cut mp3burn/Changelog0000664000175000017500000000275311075031310014526 0ustar formorerformorer2008-10-04 12:23 formorer * mp3burn: Fix swab detection 2006-09-24 11:38 formorer * mp3burn: Add swap support for ppc 2005-02-09 22:10 formorer * mp3burn: Added swab detection for x86_64 2004-07-08 22:33 formorer * mp3burn: - Fixed some small typo - thanks to sdelafond@lika.fr.st 2004-06-20 17:38 formorer * Changelog: Release often release early 2004-06-20 17:34 formorer * Changelog: Updated to reflect cvs state 2004-06-20 17:22 formorer * mp3burn: Added Support for length detection of FLAC files. (There must be someone outside really using them ;)) 2004-06-05 08:40 formorer * mp3burn: I'm bored from any locale problems or changes in the output of ogginfo... So I decided to switch to Ogg::Vorbis::Header and it work like a charme.. Here it is. 2004-06-05 07:56 formorer * mp3burn: the decection of the correct mp3decoder is now much smarter :) 2004-04-28 10:06 formorer * Changelog, mp3burn: Fixed Flac Detection - Thanks to: Georg Wittmann 2004-04-14 12:14 formorer * Changelog: Updated 2004-04-14 12:06 formorer * mp3burn: Fixed get_atip function, so that $cdrecord_opts are recognized 2004-01-02 10:12 formorer * mp3burn: Fixed Podparsing 2004-01-02 10:12 formorer * Changelog: Fixed Spelling 2004-01-01 22:43 formorer * Changelog, COPYING, INSTALL, Makefile, README, mp3burn: Initial Import 2004-01-01 22:43 formorer * Changelog, COPYING, INSTALL, Makefile, README, mp3burn: Initial revision mp3burn/COPYING0000664000175000017500000004402607775112234013767 0ustar formorerformorer GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. The Free Software Foundation has exempted Bash from the requirement of Paragraph 2c of the General Public License. This is to say, there is no requirement for Bash to print a notice when it is started interactively in the usual way. We made this exception because users and standards expect shells not to print such messages. This exception applies to any program that serves as a shell and that is based primarily on Bash as opposed to other GNU software. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS Appendix: How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 19yy This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) 19yy name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. mp3burn/CVS/0000775000175000017500000000000011075031351013345 5ustar formorerformorermp3burn/CVS/Root0000664000175000017500000000007311071641205014214 0ustar formorerformorer:ext:formorer@mp3burn.cvs.sourceforge.net:/cvsroot/mp3burn mp3burn/CVS/Entries0000664000175000017500000000040511075031351014700 0ustar formorerformorer/COPYING/0.3.1.1/Thu Jan 1 21:43:56 2004// /INSTALL/0.3.1.1/Thu Jan 1 21:43:56 2004// /Makefile/0.3.1.1/Thu Jan 1 21:43:56 2004// /README/0.3.1.1/Thu Jan 1 21:43:56 2004// /mp3burn/0.13/Sat Oct 4 10:23:21 2008// /Changelog/0.9/Tue Oct 14 05:48:56 2008// D mp3burn/CVS/Repository0000664000175000017500000000001011071641205015437 0ustar formorerformorermp3burn mp3burn/INSTALL0000664000175000017500000000021707775112234013757 0ustar formorerformorerInstalling mp3burn: copy the mp3burn executable to e.g. /usr/local/bin. Installing the man page: copy mp3burn.1 to e.g. /usr/local/man/man1. mp3burn/README0000664000175000017500000000163707775112234013615 0ustar formorerformorerAuthor: Alexander Wirt (formerly Ryan Richter ) I have taken development of mp3burn since Ryan isn't available any more (email adress is dead). I have done several improvments to the package, as also Tony Mancil has added several features to the debian package. mp3burn is a simple command line tool for making audio CDs from mp3s without filling up your disk with .wav files. It requires perl, mpg123, cdrecord, and optionally the MPEG::MP3Info Perl module. There are a number of new features and bugfixes since the 0.01 release; these are documented in Changelog. Installation instructions are in INSTALL. Usage information is contained in the man page. There are a number of GUI frontends for mp3burn: Xmp3Burn http://perso.wanadoo.es/ja_recio/xmp3burn/xmp3burn.html Kmp3burn http://computer.freepage.de/kmp3burn/index.htm GtkMp3Burn http://gtkmp3burn.sourceforge.net/ mp3burn/Makefile0000664000175000017500000000005007775112234014361 0ustar formorerformorer%.1: % ; pod2man $< >$@ all: mp3burn.1