.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "MP3ROASTER 1" .TH MP3ROASTER 1 2024-03-28 "perl v5.38.2" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME mp3roaster \- A Perl hack for burning audio CDs out of MP3/OGG/FLAC/WAVs .SH SYNOPSIS .IX Header "SYNOPSIS" \&\fBmp3roaster\fR [OPTION]... \f(CW\*(C`MP3/OGG/FLAC/WAV files\*(C'\fR .SH DESCRIPTION .IX Header "DESCRIPTION" \&\fBmp3roaster\fR A Perl hack for burning audio CDs out of MP3, OGG VORBIS and FLAC 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. .SH ENVIRONMENT .IX Header "ENVIRONMENT" MP3Roaster should run on all Unix like operating systems which have Perl and wodim installed. It has been developed on Debian GNU/Linux. .SH OPTIONS .IX Header "OPTIONS" All options have been imported, now we should add specific descriptions for each option. .IP "\fB\-D, \-\-dev\fR" 4 .IX Item "-D, --dev" CDR device to use .IP "\fB\-s, \-\-speed\fR" 4 .IX Item "-s, --speed" Burn speed .IP "\fB\-d, \-\-dummy\fR" 4 .IX Item "-d, --dummy" Burn with laser off .IP "\fB\-a, \-\-dao\fR" 4 .IX Item "-a, --dao" Burn in disk-at-once (DAO) mode for gapless recording .IP "\fB\-b, \-\-burnfree\fR" 4 .IX Item "-b, --burnfree" Turn on Buffer Underrun Free writing .IP "\fB\-t, \-\-temp\fR" 4 .IX Item "-t, --temp" Temporary directory .IP "\fB\-m, \-\-mp3dec\fR" 4 .IX Item "-m, --mp3dec" MP3 decoder to use .IP "\fB\-l, \-\-lowercase\fR" 4 .IX Item "-l, --lowercase" Convert filenames to lowercase .IP "\fB\-S, \-\-spaces\fR" 4 .IX Item "-S, --spaces" Replace spaces with underscores .IP "\fB\-B, \-\-brackets\fR" 4 .IX Item "-B, --brackets" Replace brackets with underscores .IP "\fB\-q, \-\-quotes\fR" 4 .IX Item "-q, --quotes" Replace quotes with underscores .IP "\fB\-Q, \-\-questions\fR" 4 .IX Item "-Q, --questions" Replace questionmarks with underscores .IP "\fB\-n, \-\-normalize\fR" 4 .IX Item "-n, --normalize" Normalize WAV files before burning .IP "\fB\-N, \-\-no\-normalize\fR" 4 .IX Item "-N, --no-normalize" Don't normalize WAV files, even if \-\-normalize is specified (either as a command line argument or in the configuratino file) .IP "\fB\-y, \-\-no\-confirm\fR" 4 .IX Item "-y, --no-confirm" Don't prompt for confirmation. .IP "\fB\-w, \-\-wodim\-opts\fR" 4 .IX Item "-w, --wodim-opts" Specify options to pass to Wodim for CD recording .IP "\fB\-v, \-\-verbose\fR" 4 .IX Item "-v, --verbose" Enable verbose output .IP "\fB\-h, \-\-help\fR" 4 .IX Item "-h, --help" Show the help screen .IP "\fB\-V, \-\-version\fR" 4 .IX Item "-V, --version" Show version and infos .SH "RETURN VALUE" .IX Header "RETURN VALUE" \&\fBmp3roaster\fR returns 0 on success, 1 on error. .SH DIAGNOSTICS .IX Header "DIAGNOSTICS" This has to be written yet. .SH EXAMPLES .IX Header "EXAMPLES" Once correctly configured MP3Roaster is very easy to use, just launch it from the command line with a bunch of compressed audio files, here is a short example: .PP .Vb 1 \& % mp3roaster "Root Dance.mp3" Free\e Software.flac bar.ogg Decoded.wav .Ve .PP This will burn Root\e Dance.mp3, Free\e Software.flac bar.ogg and Decoded.wav on your audio CD preserving the song order as specified on the command line. .PP Here is another example showing the usage of command line options like the dummy option: .PP .Vb 1 \& % mp3roaster \-d "Root Dance.mp3" Free\e Software.flac bar.ogg Decoded.wav \& \& This will do the same job as above but with the laser of your \& CD writer turned off, so no data will be really written. .Ve .PP You see MP3Roaster is really easy to use, this was one of my main goals while I've written the code: Keep it simple ;) .SH FILES .IX Header "FILES" MP3Roaster can be configured through a system wide and a personal configuration file. When you run MP3Roaster it will first check for your personal configuration file in your home directory, if no one is found it will fall-back to the system wide configuration files placed in /etc. .PP By default MP3Roaster installs the configuration files in /etc/mp3roaster, but there are other possible file locations for the configuration file: .PP .Vb 1 \& . System wide configuration in /etc \& \& . /etc/mp3roaster/mp3roasterrc (DEFAULT) \& . /etc/mp3roasterrc \& \& . Personal configuration in your home \& \& . ~/.mp3roaster/mp3roasterrc \& . ~/.mp3roasterrc .Ve .PP So if you want to have personal MP3Roaster configuration file just copy the system wide configuration file to your home directory and edit it. .SH CAVEHEATS .IX Header "CAVEHEATS" None actually. .SH BUGS .IX Header "BUGS" There may be some minor troubles regarding file names, feel free to report any bugs you may encounter (In fact you shouldn't). .SH NOTES .IX Header "NOTES" There are currrently no special notes. .SH "SEE ALSO" .IX Header "SEE ALSO" wodim. .SH AUTHOR .IX Header "AUTHOR" .IP "Ivo Marino " 4 .IX Item "Ivo Marino " .PD 0 .IP "Lorenzo Taylor " 4 .IX Item "Lorenzo Taylor " .PD .SH HISTORY .IX Header "HISTORY" Take a look at the ChangeLog for now.