Folks,
I apologize if this request is trivial or if I've posted in the wrong spot.
I've managed to conquer a number of things with command-line vlc, such as simulataneously streaming to a wav file, mp3 file and rtsp. The platform I'm using is XP.
But what I want to do, and has got me stumped, is to create a little routine which will automagically convert an audio file which vlc can play (such as mp3) to a wav file suitable for burning to an Audio CD (using software such as cdrecord).
This is what I have:
\path\to\vlc.exe somefile.mp3 :sout=#transcode{acodec=fl32,channels=2,ab=16,samplerate=44100}:standard{access=file,mux=wav,dst="outfile.WAV"}
I did it this way because http://wiki.videolan.org/WAVE says to use fl32 as the acodec.
But cdrecord protests that fl32 is not "PCM Audio" and refuses to burn. Gspot can't detect the codec.
Incomparison, if I record directly my sound card and I have a sout which reads (in part):
std{access=file,mux=wav,ab=16,rate=44100,dst="outfile"} [note - there is no transcoding occuring]
cdrecord is quite happy with this file being PCM Audio. Gspot tells me it is, too.
So the question is a simple one - what codec should be used for PCM Audio, so that my mp3 can be converted to a wav?
Thanks,