debian/0000755000000000000000000000000011703137676007201 5ustar debian/mp3roaster.examples0000644000000000000000000000001511703137676013034 0ustar mp3roasterrc debian/patches/0000755000000000000000000000000011703137676010630 5ustar debian/patches/add_no_normalize_option0000644000000000000000000000475311703137676015460 0ustar From: Gunnar Wolf Origin: vendor Bug-Debian: http://bugs.debian.org/397071 Forwarded: yes (private mail) Last-Update: 2010-02-19 Description: Add --no-normalize flag to override --normalize Per user request, as --normalize was not overridable if specified in the configuration file --- mp3roaster-0.3.0.orig/mp3roaster +++ mp3roaster-0.3.0/mp3roaster @@ -62,6 +62,7 @@ GetOptions ( 'opt_check_quotes|quotes|q', 'opt_check_questions|questions|Q', 'opt_wav_normalize|normalize|n', + 'opt_wav_no_normalize|no-normalize|N', 'verbose|v', 'help|h', @@ -97,6 +98,7 @@ Options: -q, --quotes Replace quotes with underscores. -Q, --questions Replace questionmarks with underscores. -n, --normalize Normalize WAV files before burning. + -N, --no-normalize Don\'t normalize WAV files (useful to override config) -v, --verbose Enable verbose output. -h, --help Show this help screen. -V, --version Show program version. @@ -238,6 +240,7 @@ sub read_config_file_and_options { my $config_check_quotes; my $config_check_questions; my $config_wav_normalize; + my $config_wav_no_normalize; # This options MUST be defined in the configuration file # or MUST be passed to the program as a command line option @@ -255,7 +258,8 @@ sub read_config_file_and_options { "config_check_brackets" => \$config_check_brackets, "config_check_quotes" => \$config_check_quotes, "config_check_questions" => \$config_check_questions, - "config_wav_normalize" => \$config_wav_normalize + "config_wav_normalize" => \$config_wav_normalize, + "config_wav_no_normalize" => \$config_wav_no_normalize ); open('RC', $in_config_file_location); # open file @@ -332,6 +336,14 @@ sub read_config_file_and_options { } }; + # Allow for overriding config_wav_normalize with + # config_wav_no_normalize: If both are set, no_normalize wins. + if ($confhash{config_wav_no_normalize} and + delete($confhash{config_wav_normalize}) and + $opthash{verbose}) { + print " * no-normalize is set and overrides normalize\n"; + } + return %confhash; } @@ -1378,6 +1390,11 @@ Replace questionmarks with underscores Normalize WAV files before burning +=item B<-N, --no-normalize> + +Don't normalize WAV files, even if --normalize is specified (either as +a command line argument or in the configuratino file) + =item B<-v, --verbose> Enable verbose output debian/patches/series0000644000000000000000000000021211703137676012040 0ustar wodim_for_cdrecord change_module_name_for_mp3_info add_no_normalize_option config_ui_no_confirm config_wodim_opts use_pureperl_ogg_module debian/patches/config_wodim_opts0000644000000000000000000000740711703137676014274 0ustar From: Sébastien NOBILI Origin: upstream Last-Update: 2011-10-19 Forwarded: not-needed Description: Allow user to specify options to be passed to Wodim This patch allows the user to specify options to be added to Wodim's command-line call, giving better control on the process. . The patch was submitted to the upstream author by the user, who, not anticipating any new versions, submitted it to me for Debian inclusion. Index: mp3roaster-0.3.0/mp3roaster =================================================================== --- mp3roaster-0.3.0.orig/mp3roaster 2011-10-19 12:15:18.000000000 -0500 +++ mp3roaster-0.3.0/mp3roaster 2011-10-19 12:15:19.000000000 -0500 @@ -50,6 +50,7 @@ \%opthash, 'opt_cdr_dev|dev|D=s', + 'opt_wodim_opts|wodim-opts|w=s', 'opt_cdr_speed|speed|s=i', 'opt_cdr_dummy|dummy|d', 'opt_cdr_dao|dao|a', @@ -100,6 +101,7 @@ -Q, --questions Replace questionmarks with underscores. -n, --normalize Normalize WAV files before burning. -N, --no-normalize Don\'t normalize WAV files (useful to override config) + -w --wodim-opts Specify options to pass to Wodim for CD burning -y, --no-confirm Don\'t prompt for confirmation. -v, --verbose Enable verbose output. -h, --help Show this help screen. @@ -230,6 +232,7 @@ # This variables are found in the configuration file and # need to be declared here in order to follow `use strict` my $config_cdr_dev; + my $config_wodim_opts; my $config_cdr_speed; my $config_cdr_dummy; my $config_cdr_dao; @@ -250,6 +253,7 @@ %refhash = ( "config_cdr_dev" => \$config_cdr_dev, + "config_wodim_opts" => \$config_wodim_opts, "config_cdr_speed" => \$config_cdr_speed, "config_cdr_dummy" => \$config_cdr_dummy, "config_cdr_dao" => \$config_cdr_dao, @@ -1056,7 +1060,7 @@ # sub burn { - my ($config_cdr_dev, $config_cdr_speed, $config_cdr_dummy, $config_cdr_dao, $config_cdr_burnfree, @wav_array) = @_; + my ($config_cdr_dev, $config_cdr_speed, $config_cdr_dummy, $config_cdr_dao, $config_cdr_burnfree, $config_wodim_opts, @wav_array) = @_; my $sub = "BURN"; my $burn_wav_list; my $cdrecord_options; @@ -1068,7 +1072,7 @@ $burn_wav_list = $burn_wav_list." \"$wav\""; } - $cdrecord_options = "dev=$config_cdr_dev speed=$config_cdr_speed gracetime=2 -eject -pad -audio -silent"; + $cdrecord_options = "dev=$config_cdr_dev speed=$config_cdr_speed gracetime=2 -eject -pad -audio -silent ".$config_wodim_opts; if ($config_cdr_dummy) { @@ -1184,6 +1188,7 @@ print "quotes " if ($confhash{config_check_quotes}); print "questionmarks " if ($confhash{config_check_questions}); print "normalize " if ($confhash{config_wav_normalize}); + print "\"".$confhash{config_wodim_opts}."\" "; print "]\n"; @@ -1274,7 +1279,7 @@ # printf " * Burning %d files, please wait... ", ($#wav_array+1); # print " * Burning files, please wait... "; - burn($confhash{config_cdr_dev}, $confhash{config_cdr_speed}, $confhash{config_cdr_dummy}, $confhash{config_cdr_dao}, $confhash{config_cdr_burnfree}, @wav_array); + burn($confhash{config_cdr_dev}, $confhash{config_cdr_speed}, $confhash{config_cdr_dummy}, $confhash{config_cdr_dao}, $confhash{config_cdr_burnfree}, $confhash{config_wodim_opts}, @wav_array); print "done.\n"; # @@ -1345,7 +1350,7 @@ =over 4 -=item B<-d, --dev> +=item B<-D, --dev> CDR device to use @@ -1406,6 +1411,10 @@ Don't prompt for confirmation. +=item B<-w, --wodim-opts> + +Specify options to pass to Wodim for CD recording + =item B<-v, --verbose> Enable verbose output debian/patches/config_ui_no_confirm0000644000000000000000000001462311703137676014734 0ustar From: Sébastien NOBILI Origin: upstream Last-Update: 2011-10-19 Forwarded: not-needed Description: Allow user to request a noninteractive session This patch allows the user to request mp3record to use only the values it already knows about, running without any confirmations. . The patch was submitted to the upstream author by the user, who, not anticipating any new versions, submitted it to me for Debian inclusion. Index: mp3roaster-0.3.0/mp3roaster =================================================================== --- mp3roaster-0.3.0.orig/mp3roaster 2011-10-19 11:50:02.000000000 -0500 +++ mp3roaster-0.3.0/mp3roaster 2011-10-19 12:15:08.000000000 -0500 @@ -63,6 +63,7 @@ 'opt_check_questions|questions|Q', 'opt_wav_normalize|normalize|n', 'opt_wav_no_normalize|no-normalize|N', + 'opt_ui_no_confirm|no-confirmation|y', 'verbose|v', 'help|h', @@ -99,6 +100,7 @@ -Q, --questions Replace questionmarks with underscores. -n, --normalize Normalize WAV files before burning. -N, --no-normalize Don\'t normalize WAV files (useful to override config) + -y, --no-confirm Don\'t prompt for confirmation. -v, --verbose Enable verbose output. -h, --help Show this help screen. -V, --version Show program version. @@ -241,6 +243,7 @@ my $config_check_questions; my $config_wav_normalize; my $config_wav_no_normalize; + my $config_ui_no_confirm; # This options MUST be defined in the configuration file # or MUST be passed to the program as a command line option @@ -259,7 +262,8 @@ "config_check_quotes" => \$config_check_quotes, "config_check_questions" => \$config_check_questions, "config_wav_normalize" => \$config_wav_normalize, - "config_wav_no_normalize" => \$config_wav_no_normalize + "config_ui_no_confirm" => \$config_ui_no_confirm, + "config_wav_no_normalize" => \$config_wav_no_normalize ); open('RC', $in_config_file_location); # open file @@ -717,7 +721,7 @@ # sub compare_file_atip { - my ($in_atip_time, $in_file_time) = @_; + my ($in_atip_time, $in_file_time, $no_confirm) = @_; my $key; my @fifo; @@ -734,15 +738,17 @@ print " * WARNING: The files won\'t fit on CD\/RW \(CD: $in_atip_min min / File: $in_file_min min\)\n"; } - print " Do you want to continue? ([Any Key/n]) "; + unless ($no_confirm) { + print " Do you want to continue? ([Any Key/n]) "; - open(TTY,"&-"; $rc = system($cmd); @@ -1211,7 +1218,7 @@ # # 5: check if files fit on CD/RW # - compare_file_atip(fetch_atip_time($confhash{config_cdr_dev}), fetch_file_time(@file_array)); + compare_file_atip(fetch_atip_time($confhash{config_cdr_dev}), fetch_file_time(@file_array), $confhash{config_ui_no_confirm}); # # 6: check the temp directory @@ -1230,7 +1237,7 @@ # print " * Decoding MP3/OGG/FLAC files to wav...\n"; - @wav_array = file_decode($confhash{config_wav_normalize}, $confhash{config_temp_dir}, $confhash{config_mp3_decoder}, @file_array); + @wav_array = file_decode($confhash{config_wav_normalize}, $confhash{config_temp_dir}, $confhash{config_mp3_decoder}, $confhash{config_ui_no_confirm}, @file_array); # # TODO @@ -1395,6 +1402,10 @@ Don't normalize WAV files, even if --normalize is specified (either as a command line argument or in the configuratino file) +=item B<-y, --no-confirm> + +Don't prompt for confirmation. + =item B<-v, --verbose> Enable verbose output debian/patches/use_pureperl_ogg_module0000644000000000000000000000534611703137676015476 0ustar From: Gunnar Wolf Origin: vendor Bug-Debian: http://bugs.debian.org/655409 Forwarded: not needed Last-Updat: 2012-01-10 Description: Follow the pkg-perl team's module recommendation The pkg-perl team requested the use of a pure-perl drop-in reimplementation of Ogg::Vorbis::Header Index: mp3roaster/mp3roaster =================================================================== --- mp3roaster.orig/mp3roaster 2011-10-19 12:45:35.000000000 -0500 +++ mp3roaster/mp3roaster 2012-01-10 16:21:09.000000000 -0600 @@ -29,7 +29,7 @@ use File::MMagic; # Guess file type use Term::ReadKey; # Module for simple terminal control use MP3::Info; # Allows to get MP3 infos -use Ogg::Vorbis::Header; # Perl extension for Ogg Vorbis streams +use Ogg::Vorbis::Header::PurePerl; # Perl extension for Ogg Vorbis streams use Audio::FLAC::Header; # Perl extension for FLAC files use Audio::Wav # Perl extension for wav files @@ -613,12 +613,12 @@ # # We have four dependences for this function: # -# DEPENDENCY MODULE DEBIAN PACKAGE -# ------------------------------------------------- -# MPEG::MP3Info libmp3-info-perl -# Ogg::Vorbis::Header libogg-vorbis-header-perl -# Audio::FLAC::Header libaudio-flac-header-perl -# Audio::Wav libaudio-wav-perl +# DEPENDENCY MODULE DEBIAN PACKAGE +# -------------------------------------------------------------------- +# MPEG::MP3Info libmp3-info-perl +# Ogg::Vorbis::Header::PurePerl libogg-vorbis-header-pureperl-perl +# Audio::FLAC::Header libaudio-flac-header-perl +# Audio::Wav libaudio-wav-perl # sub fetch_file_time { @@ -626,7 +626,7 @@ my $sub = "FETCH_FILE_TIME"; # subroutine name my $mp3info; # get_mp3info() return - my $ogg; # holds the Ogg::Vorbis::Header object + my $ogg; # holds the Ogg::Vorbis::Header::PurePerl object my $oggtime; # holds the ogg's length in seconds my $flac; # holds the Audio::FLAC object my $flactime; # holds the flac's length in seconds @@ -671,10 +671,10 @@ } elsif (check_file_type($file) eq "ogg") { # - # We use Ogg::Vorbis::Header here + # We use Ogg::Vorbis::Header::PurePerl here # Example: http://search.cpan.org/src/FOOF/libvorbis-perl-0.02/test.pl # - $ogg = Ogg::Vorbis::Header->load($file); + $ogg = Ogg::Vorbis::Header::PurePerl->load($file); $oggtime = $ogg->info("length"); $tot_secs += $oggtime + $fudge; debian/patches/wodim_for_cdrecord0000644000000000000000000000517111703137676014411 0ustar From: Gunnar Wolf Origin: vendor Last-Update: 2009-12-27 Forwarded: not-needed Description: Call wodim instead of cdrecord for CD burning Debian does not package Schilly's cdrecord, but Wodim. This patch substitutes all cdrecord references for Wodim ones. . Does not need to be forwarded upstream, as it is debian-specific Index: mp3roaster/mp3roaster =================================================================== --- mp3roaster.orig/mp3roaster 2009-12-27 21:34:24.000000000 -0600 +++ mp3roaster/mp3roaster 2009-12-27 21:35:19.000000000 -0600 @@ -385,7 +385,7 @@ # fetch_atip_time # # This function fetches the ATIP of the CD/RW Disc. -# We use the cdrecord application to get this infos. +# We use the wodim application to get this infos. # # We return the ATIP time in seconds. # @@ -399,12 +399,12 @@ if (!$config_cdr_dev) { - my $r_message = "You must specify the CDR/W drive id in the configuration file or with\n the option --drive x.y.z. Execute: % cdrecord \-scanbus for further details."; + my $r_message = "You must specify the CDR/W drive id in the configuration file or with\n the option --drive x.y.z. Execute: % wodim \-scanbus for further details."; die print_error($sub, $r_message); } - # open file and use "cdrecord -atip" to fetch ATIP info - open(CDINFO,"cdrecord -atip dev=".$config_cdr_dev." 2>&1 |"); + # open file and use "wodim -atip" to fetch ATIP info + open(CDINFO,"wodim -atip dev=".$config_cdr_dev." 2>&1 |"); while () { @@ -1031,7 +1031,7 @@ # burn # # This function burns all wav files to a CD/RW disc -# using the cdrecord application, if cdrecord returns +# using the wodim application, if wodim returns # an error code we print out an error message and die, # else we go back to main without any return value. # @@ -1071,12 +1071,12 @@ } # Let's burn folks -- Finally! - $cmd = "cdrecord $cdrecord_options $burn_wav_list >/dev/null 2>&1"; + $cmd = "wodim $cdrecord_options $burn_wav_list >/dev/null 2>&1"; $rc = system($cmd); if ($rc) { - die print_error($sub, "the burn process was not successful,\n cdrecord error code $rc."); + die print_error($sub, "the burn process was not successful,\n wodim error code $rc."); } } @@ -1317,7 +1317,7 @@ =head1 ENVIRONMENT MP3Roaster should run on all Unix like operating systems which have Perl and -cdrecord installed. It has been developed on Debian GNU/Linux. +wodim installed. It has been developed on Debian GNU/Linux. =head1 OPTIONS @@ -1460,7 +1460,7 @@ =head1 SEE ALSO -cdrecord. +wodim. =head1 AUTHOR debian/patches/change_module_name_for_mp3_info0000644000000000000000000000160011703137676017002 0ustar From: Gunnar Wolf Origin: vendor Bug-Debian: http://bugs.debian.org/397069 Forwarded: yes (private mail) Last-Update: 2009-12-27 Description: Replace one of the needed modules' name MPEG::MP3Info's upstream replaced its name for MP3::Info; acknowledging the change in the source. --- mp3roaster-0.3.0.orig/mp3roaster +++ mp3roaster-0.3.0/mp3roaster @@ -28,7 +28,7 @@ use File::Path; # Get file p use File::Copy; # Copy files or filehandles use File::MMagic; # Guess file type use Term::ReadKey; # Module for simple terminal control -use MPEG::MP3Info; # Allows to get MP3 infos +use MP3::Info; # Allows to get MP3 infos use Ogg::Vorbis::Header; # Perl extension for Ogg Vorbis streams use Audio::FLAC::Header; # Perl extension for FLAC files use Audio::Wav # Perl extension for wav files debian/mp3roaster.install0000644000000000000000000000005711703137676012672 0ustar mp3roaster usr/bin mp3roasterrc etc/mp3roaster debian/mp3roaster.docs0000644000000000000000000000000711703137676012147 0ustar README debian/source/0000755000000000000000000000000011703137676010501 5ustar debian/source/format0000644000000000000000000000001411703137676011707 0ustar 3.0 (quilt) debian/compat0000644000000000000000000000000211703137676010377 0ustar 7 debian/copyright0000644000000000000000000000230011703137676011127 0ustar This package was debianized by Ivo Marino , and was adopted by Gunnar Wolf on Sun Apr 12 15:58:12 CDT 2009 It was downloaded from http://mp3roaster.sourceforge.net Copyright (C) 2002-2006 Ivo Marino This is free software; see the source for copying conditions. There is NO warranty; the author is NOT RESPONSIBLE for any use of this program. This package 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; version 2 dated June, 1991. This package 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 package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2'. debian/mp3roaster.changelogs0000644000000000000000000000001211703137676013325 0ustar Changelog debian/README.debian0000644000000000000000000000115611703137676011305 0ustar MP3Roaster for Debian -------------------------- This MP3roaster Debian GNU/Linux package, is based on the MP3Roaster upstream version 0.3.0 available freely from http://mp3roaster.sourceforge.net Consider reading the upstream README.gz file in /usr/share/doc/mp3roaster/ for any information regarding to this software. A ready to use, system wide, configuration file is available in /etc/mp3roaster/mp3roasterrc -- Copy it to ~/.mp3roasterrc for personal configurations. See man mp3roaster for further details regarding the configuration directives. Ivo Marino , $Date: 2006-02-23 23:06:25 $ debian/changelog0000644000000000000000000001111711703137676011054 0ustar mp3roaster (0.3.0-6) unstable; urgency=low * Switched from depending on libogg-vorbis-header-perl to libogg- vorbis-header-pureperl-perl, as per the pkg-perl team request (Closes: #655409) -- Gunnar Wolf Tue, 10 Jan 2012 16:24:16 -0600 mp3roaster (0.3.0-5) unstable; urgency=low * Standards-version 3.8.4 → 3.9.2 (no changes needed) * Reworded the description to keep Lintian happy * Added patches by Sébastien NOBILI for running noninteractively and for passing options to Wodim * Auto-generate manpage from Perl, ignoring the provided copy -- Gunnar Wolf Wed, 19 Oct 2011 12:42:19 -0500 mp3roaster (0.3.0-4) unstable; urgency=low * Added --no-normalize option (Closes: #397071) * Standards-version 3.8.3→3.8.4 (no changes needed) -- Gunnar Wolf Fri, 19 Feb 2010 11:06:44 -0600 mp3roaster (0.3.0-3) unstable; urgency=low * Standards-version → 3.8.3 * Setting source format to 3.0 (quilt) * Dropped dependency in nonexisting package ogg123 (was specified as an alternative for vorbis-tools, which does exist) * Reduced debian/rules to the three-line DH7 form * Use wodim instead of cdrecord -- Gunnar Wolf Sun, 27 Dec 2009 22:46:56 -0600 mp3roaster (0.3.0-2) unstable; urgency=low * Adopting package as agreed (long time ago) via mail with upstream developer and previous maintainer (Closes: #455918) * Updating Standards-version to 3.8.1.0 * Updated DH compat level to 7 * Simplified debian/rules * Several minor changes to keep lintian quiet * Added Vcs-Git, Vcs-Browser, Homepage fields to debian/contorl * Updated debian/watch, now correctly works (Closes: #449974) -- Gunnar Wolf Sun, 12 Apr 2009 16:42:22 -0500 mp3roaster (0.3.0-1.1) unstable; urgency=low * Non-maintainer upload. * Updated the module name from MPEG::MP3Info to MP3::Info, as the upstream author for this package mp3roaster depends on changed it, resulting in mp3roaster dying at startup. (Closes: #397069) -- Gunnar Wolf Mon, 19 Mar 2007 13:06:15 -0600 mp3roaster (0.3.0-1) unstable; urgency=low * New upstream release (0.3.0). * [debian/control] Removed obsolete normalize dependency (Closes: #294527). * Fixed bug #258276 with new upstream release (Closes: #258276). * [debian/watch] Updated in order to respect new syntax. * Removed old debian/[dh_install*] related files, the options have been migrated into debian/rules. * [debian/compat] Introduced new compatibility file. * [debian/rules] Added commands to best-recompresse the upstream man page. * [debian/README.debian] Updated informations for version 0.3.0. -- Ivo Marino Fri, 24 Feb 2006 00:04:56 +0100 mp3roaster (0.2.0-5) unstable; urgency=low * [debian/control] Depend on normalize (Closes: #258675). * [debian/control] Added normalize-audio as dependency (Closes: #287671). -- Ivo Marino Tue, 4 Jan 2005 12:44:05 +0100 mp3roaster (0.2.0-4) unstable; urgency=low * [debian/control] Added new dependency: libaudio-flac-perl, this pacakge has finally just been accepted into Debian so now we can depend on it. * [debian/copyright] Added specific license informations (GPL) in order to be Debian policy compatible. * [debian/conffiles] Added /etc/mp3roaster/mp3roasterrc to be lintian compatible. -- Ivo Marino Tue, 8 Jun 2004 10:46:37 +0200 mp3roaster (0.2.0-3) unstable; urgency=low * [debian/control] Added more dependencies: flac, libogg-vorbis-header-perl and libterm-readkey-perl. The dependency libaudio-flac-perl will be added later once the package is available on Debian. * [debian/control] Updated package description. -- Ivo Marino Fri, 28 May 2004 10:20:44 +0200 mp3roaster (0.2.0-2) unstable; urgency=low * Fixed serious bug which did not install the mp3roaster.pl script. * [debian/rules] Introduced dh_install and dh_installdirs. * Removed the debian/patches directory, we now use 100% debhelper. -- Ivo Marino Thu, 27 May 2004 23:39:10 +0200 mp3roaster (0.2.0-1) unstable; urgency=low * New upstream release. * [debian/control] New standards version. * [debian/rules] Removed debhelpet. * The upstream man page has been recompressed with gzip -9. -- Ivo Marino Wed, 19 May 2004 16:58:13 +0200 mp3roaster (0.1.0-1) unstable; urgency=low * Initial release as Debian GNU/Linux package. -- Ivo Marino Wed, 17 Sep 2003 00:46:05 +0200 debian/rules0000755000000000000000000000027711703137676010267 0ustar #!/usr/bin/make -f %: dh $@ override_dh_auto_build: override_dh_auto_install: override_dh_installman: pod2man mp3roaster | gzip -9 > debian/mp3roaster/usr/share/man/man1/mp3roaster.1.gz debian/mp3roaster.dirs0000644000000000000000000000005211703137676012160 0ustar usr/bin usr/share/man/man1 etc/mp3roaster debian/watch0000644000000000000000000000007511703137676010234 0ustar version=2 http://sf.net/mp3roaster/mp3roaster-(.+)\.tar\.gz debian/control0000644000000000000000000000201411703137676010601 0ustar Source: mp3roaster Section: sound Priority: extra Build-Depends: debhelper (>= 7.0.50~) Maintainer: Gunnar Wolf Standards-Version: 3.9.2 Vcs-Git: git://git.debian.org/git/collab-maint/mp3roaster.git Vcs-Browser: http://git.debian.org/git/collab-maint/mp3roaster.git Homepage: http://mp3roaster.sourceforge.net/ Package: mp3roaster Architecture: all Depends: ${misc:Depends}, perl (>= 5.8.4), mpg321|mpg123, vorbis-tools, flac, wodim, libterm-readkey-perl, libfile-mmagic-perl, libmp3-info-perl, libogg-vorbis-header-pureperl-perl, libaudio-flac-header-perl, normalize-audio, libaudio-wav-perl Description: Perl hack for burning audio CDs out of MP3/OGG/FLAC/WAV files Allows burning audio CDs out of MP3, Ogg Vorbis, FLAC and WAV files. The main highlights of this application are an easy to use command line syntax and automatic volume leveling support for best audio CD quality. . In order to normalize the audio level of all files which will be burned on CDs MP3roaster requires some free hard disk space.