Re: burning audio CD's from mp3's

2003-01-02 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2002-12-30 15:29:35 -0300:
> On Mon, 30 Dec 2002, Roman Neuhauser wrote:
> > I have a few mp3 files I'd like to burn an audio cd from. I use mpg321
> > for playing mp3's, and burncd to burn cd's, so my first thought was:
> > let's pipe them together. I read the man pages, and tried this:
> 
> I had good look with mpg123 to convert the mp3 into wav, and then using
> cdrecord to burn them into a cd.

I guess I didn't make myself clear enough. The problem is not
converting the mp3's to wav files or burning those. It's that I
wanted to do it in one pipe:

mpg321 -s- $files | burncd -ends 16 audio - fixate

as opposed to: 

for f in $files; do mpg321 -s $f.raw $f; done
burncd -ends 16 audio *.raw fixate

I guess this is just not possible. Not that this is of any
importance or anything...

-- 
If you cc me or remove the list(s) completely I'll most likely ignore
your message.see http://www.eyrie.org./~eagle/faqs/questions.html

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message



Re: burning audio CD's from mp3's

2002-12-30 Thread Fernando Gleiser
On Mon, 30 Dec 2002, Roman Neuhauser wrote:

> I have a few mp3 files I'd like to burn an audio cd from. I use mpg321
> for playing mp3's, and burncd to burn cd's, so my first thought was:
> let's pipe them together. I read the man pages, and tried this:

I had good look with mpg123 to convert the mp3 into wav, and then using
cdrecord to burn them into a cd.

Fer


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message



Re: burning audio CD's from mp3's

2002-12-30 Thread Kliment Andreev
> I have a few mp3 files I'd like to burn an audio cd from. I use mpg321
> for playing mp3's, and burncd to burn cd's, so my first thought was:
> let's pipe them together. I read the man pages, and tried this:

You need to convert these tracks into WAV. I prefer lame
(/usr/ports/audio/lame).

# lame --decode input.mp3 output.wav   (Check lame --help for options)

After you have these tracks as WAV you can burn them using

# burncd -f /dev/acd0c audio track1.wav track2.wav ... fixate




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message



burning audio CD's from mp3's

2002-12-30 Thread Roman Neuhauser
I have a few mp3 files I'd like to burn an audio cd from. I use mpg321
for playing mp3's, and burncd to burn cd's, so my first thought was:
let's pipe them together. I read the man pages, and tried this:

root@freepuppy ~ 1004:0 # mpg321 -w- ~/tmp/*.mp3 | burncd -ends 16 audio - fixate
High Performance MPEG 1.0/2.0/2.5 Audio Player for Layer 1, 2, and 3.
Version 0.59q (2002/03/23). Written and copyrights by Joe Drew.
Uses code from various people. See 'README' for more!
THIS SOFTWARE COMES WITH ABSOLUTELY NO WARRANTY! USE AT YOUR OWN RISK!

Directory: /home/roman/tmp/
Playing MPEG stream from 01.mp3 ...
MPEG 1.0 layer III, 256 kbit/s, 44100 Hz stereo
writing from stdin

only wrote 0 of 16464 bytes err=0
root@freepuppy ~ 1005:0 #

The cd appears to contain one audio track, but doesn't play. Do I have
to save the wav's to disk before burning them with burncd?

I've googled for mpg321 AND burncd, and my question wasn't answered in
either of the two pages returned (one of the hits contained a script to
burn audio cd's from mp3 files, and that saves the wav files to disk
before burning them to disk).

-- 
If you cc me or remove the list(s) completely I'll most likely ignore
your message.see http://www.eyrie.org./~eagle/faqs/questions.html

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message