Re: [FFmpeg-user] How to create a multichannel wav file without a specific channel layout

2016-09-26 Thread Robert Krüger
Hi Tobias, On Mon, Sep 26, 2016 at 3:58 PM, Tobias Rapp wrote: > On 26.09.2016 13:10, Robert Krüger wrote: > >> Hi, >> >> On Mon, Sep 26, 2016 at 12:42 PM, Carl Eugen Hoyos >> wrote: >> >> 2016-09-26 12:17 GMT+02:00 Robert Krüger : >>> >>> I would like to know if it is possible to create a wave

Re: [FFmpeg-user] How to create a multichannel wav file without a specific channel layout

2016-09-26 Thread Tobias Rapp
On 26.09.2016 13:10, Robert Krüger wrote: Hi, On Mon, Sep 26, 2016 at 12:42 PM, Carl Eugen Hoyos wrote: 2016-09-26 12:17 GMT+02:00 Robert Krüger : I would like to know if it is possible to create a wave file that contains n channels of audio which do not have a channel layout like 5.1 or

Re: [FFmpeg-user] How to create a multichannel wav file without a specific channel layout

2016-09-26 Thread Robert Krüger
On Mon, Sep 26, 2016 at 2:04 PM, Carl Eugen Hoyos wrote: > 2016-09-26 13:10 GMT+02:00 Robert Krüger : > > > I meant something like writing a 4,6 or 8-channel wav that just > > really contains 4,6,8 mono channels. > Not sure if I understand this sentence. > > I meant something like writing an n-ch

Re: [FFmpeg-user] How to create a multichannel wav file without a specific channel layout

2016-09-26 Thread Phil Rhodes
I recently wrote a RIFF parser for wave files which deals with all of this, and it is deeply horrible and complicated. P From: Carl Eugen Hoyos To: FFmpeg user questions Sent: Monday, 26 September 2016, 13:04 Subject: Re: [FFmpeg-user] How to create a multichannel wav file without a

Re: [FFmpeg-user] How to create a multichannel wav file without a specific channel layout

2016-09-26 Thread Carl Eugen Hoyos
2016-09-26 13:10 GMT+02:00 Robert Krüger : > I meant something like writing a 4,6 or 8-channel wav that just > really contains 4,6,8 mono channels. Not sure if I understand this sentence. That fact that the option -channel_layout 0 does not work as expected is a long-time regression. Carl Eugen

Re: [FFmpeg-user] How to create a multichannel wav file without a specific channel layout

2016-09-26 Thread Robert Krüger
Hi, On Mon, Sep 26, 2016 at 12:42 PM, Carl Eugen Hoyos wrote: > 2016-09-26 12:17 GMT+02:00 Robert Krüger : > > > I would like to know if it is possible to create a wave file that > contains > > n channels of audio which do not have a channel layout like 5.1 or > stereo, > > (I assumed n==1 here

Re: [FFmpeg-user] How to create a multichannel wav file without a specific channel layout

2016-09-26 Thread Carl Eugen Hoyos
2016-09-26 12:17 GMT+02:00 Robert Krüger : > I would like to know if it is possible to create a wave file that contains > n channels of audio which do not have a channel layout like 5.1 or stereo, (I assumed n==1 here because it should work fine for n>2) > much like a file used in broadcast for

[FFmpeg-user] How to create a multichannel wav file without a specific channel layout

2016-09-26 Thread Robert Krüger
Hi, I would like to know if it is possible to create a wave file that contains n channels of audio which do not have a channel layout like 5.1 or stereo, much like a file used in broadcast for just storing n signals in one wav file. Thanks for any hints on this, Robert __