I am trring to create Flac compressed audio in an Ogg envelope.
Naïvely I tried:
$ flac --ogg -o out.oga nine-channel.wav
nine-channel.wav: ERROR: unsupported number of channels 9
but I thought the Ogg envelope could carry 256 Flac channels??
. (I know native Flac only does 8.)
Even on less than 9 I get
$ flac --ogg -o our.oga four-channel.wav
four-channel.wav: ERROR: WAVEFORMATEXTENSIBLE chunk with unsupported channel
mask=0x0000
Can I over-ride the channel mask? I am (for the moment) just trying to archive
my files (Flac compressed) in an Ogg envelope.
(Sorry cannot see any help in the Flac documentation (lots on changing the metadata _once_
I have my file ...!) or on Web searches. Perhaps I should be using another tool to create Ogg??)
