similar to: More than 8 channels possible?

Displaying 20 results from an estimated 11000 matches similar to: "More than 8 channels possible?"

2005 Mar 17
2
More than 8 channels possible?
Hello, First, thanks a lot for FLAC. A few questions. Apologies if this is not the right forum or if these questions have come up before; the SourceForge archive search didn't turn up anything. 1. Would it be possible for FLAC to support more than 8 channels? 2. If (1) is not desirable because it would break compatibility or some such, then is it possible to build a local copy
2005 Mar 31
0
Re: More than 8 channels possible?
Are there any recording applications which create files with more than 8 channels? For that matter, are there any recording applications which create files with more than 2 channels? I do a great deal of live multi-track recording. Every tool I use creates mono recordings. At most, I combine microphone pairs or stereo electronics channels into stereo files after recording. Then, when
2007 Jan 02
3
Decoding Type=Independent
On 1/2/07, Josh Coalson <xflac@yahoo.com> wrote: > I'm not sure I understand... I think the INDEPENDENT you are referring > to means the interchannel decorrelation method. this stage is before > and independent of LPC analysis. Correct. > I'm not sure why "independent" frames would not decode correctly > though. more info on exactly how it is not working
2004 Sep 10
2
Altivec, automake
Here's what I listed in that email. Merging doesn't appear to be necessary. If you have any build problems, let me know. Note that my detection code is Darwin-specific. It's a BSD call (sysctl()), so a change to the platform-detection macros should enable it to work on other BSDs. However, I don't know what that would be, and I couldn't determine any safe way to do the check
2007 Jan 02
0
Decoding Type=Independent
--- MVallevand <mvallevand@gmail.com> wrote: > On 1/2/07, Josh Coalson <xflac@yahoo.com> wrote: > > I'm not sure I understand... I think the INDEPENDENT you are > referring > > to means the interchannel decorrelation method. this stage is > before > > and independent of LPC analysis. > > Correct. > > > I'm not sure why
2016 Oct 29
2
Increasing number of channels?
Per https://xiph.org/flac/faq.html#general__channels currently FLAC supports 1 through 8 channels. This is fine for 5.1 surround sound (6 channels). But some of the newer surround sound systems can handle many more channels. Is it still convenient to have all of the audio channels in one file for, say, a 16 channel audio track? I don't know much about the history of FLAC. How did this
2016 Oct 29
0
Increasing number of channels?
The stream header only has 3 bits for the channel count, so it's not possible to support more than 8 channels without breaking compatibility with all embedded products that support FLAC, not to mention old and existing software. Part of the benefit of FLAC is that it enjoys such wide support across computer operating systems and embedded devices like audio players and digital recorders -
2004 Sep 10
2
flac problems (update)
--- Josh Coalson <xflac@yahoo.com> wrote: > --- pritpaul@svaudio.org wrote: > > I still have the > > first > > problem though (flac adding 12 "00" bytes to the beginning of the > > decoded > > file when the original input to create the flac was a raw file), > and > > would > > realy appreciate help. :) > > OK, I will look into
2014 Jun 30
1
FIxed rest of cast-align warnings
lvqcl wrote: > Erik de Castro Lopo wrote: > > >> FLAC__int16 s16buffer[FLAC__MAX_BLOCK_SIZE * FLAC__MAX_CHANNELS * sizeof(FLAC__int32)/sizeof(FLAC__int16)]; > >> > >> instead of > >> > >> FLAC__int16 s16buffer[FLAC__MAX_BLOCK_SIZE * FLAC__MAX_CHANNELS * sizeof(FLAC__int16)]; > > > > Really? Would you also write this? : > > >
2014 Jun 26
1
Lets work towards a new version
Martijn van Beurden wrote: > Like I reported just before the release of 1.3.0 (mail of Fri, > 05 Apr 2013 08:25:10 +0200, to be specific), compiling on > Raspbian (Debian Wheezy, GCC 4.6) returns quite some warnings of > the type -Wcast-align. What happens if you change the definitions of s8buffer[] and ucbuffer_[] arrays as follows: static __attribute__((__aligned__(4))) FLAC__int8
2009 Jul 13
3
Multi-channel with empty channels.
All, Lets say I have a 16 channel file, but 10 of those channels are empty (all values are 0). For a) the vorbis codec and also b) the FLAC codec ... would the size of the file be close to (or practically the same as) the size of a 6 channel file? Etienne
2004 Sep 10
0
ogg-flac?
--- Matt Zimmerman <mdz@debian.org> wrote: > On Mon, Mar 26, 2001 at 11:34:04AM -0800, Josh Coalson wrote: > > > --- "smoerk@gmx.de" <smoerk@gmx.de> wrote: > > > hi, > > > > > > would it be possible to use ogg as container for flac? so you > could use all > > > the features of the ogg format. > > > > > A long
2004 Aug 06
0
Subject: Question regarding ACLs
Received: from motherfish.xiph.org ([207.181.249.22]) by uis.umassp.edu (Netscape Messaging Server 3.6) with ESMTP id AAA7324 for <ptomb@email.umassp.edu>; Fri, 15 Jun 2001 07:12:33 -0400 Received: by motherfish.xiph.org (Postfix) id 72E6D18D023; Fri, 15 Jun 2001 03:02:25 -0700 (PDT) Delivered-To: icecast-outgoing@xiph.org Received: by motherfish.xiph.org
2004 Sep 10
4
FLAC 1.0.1 source release out
The source release for 1.0.1 is finally up on sourceforge. If you are compiling for x86 make sure to read the note in in the README about automake 1.5. Josh __________________________________________________ Do You Yahoo!? Find the one for you at Yahoo! Personals http://personals.yahoo.com
2016 May 28
0
ambisonics formats and channel mappings
Hi Marc, On Sat, May 28, 2016 at 10:44 AM, Marc Lavallée <marc at hacklava.net> wrote: > I subscribed because your discussion on the IETF draft ("Ambisonics in > an Ogg Opus Container") was mentioned on the sursound list. Thanks for your interest! Please feel free to voice your support for this work on the codec at ietf.org mailing list. The more support the better. > I
2008 Jul 20
1
[LLVMdev] generating a shared object from a single *.ll (LLVM) source?
Hello (my machine is a Debian/Sid/x86-64/Core2) Assuming I have one C source file chello.c, to compile it into a dynamically loadable thru dlopen shared object, I can run gcc -fPIC -shared -O chello.c -o chello.so I thought that, assuming I have one llvm source ehello.ll, the equivalent would be llvmc2 -opt ehello.ll -o ehello.so but it is not that simple. Any clues ? May I also
2004 Sep 10
1
FLAC__stream_decoder_flush
OK, back to this one... --- Josh Coalson <xflac@yahoo.com> wrote: > --- Ingo Ralf Blum <ingoralfblum@gmx.de> wrote: > > The FLAC__stream_decoder_flush doesn't change the state, but when I > > play a > > stream and reach the end I have to do a FLAC__stream_decoder_reset > > and reread > > the metadata instead of simply a FLAC__stream_decoder_flush.
2007 Jan 01
2
Decoding Type=Independent
Hello, I am new to the list, to FLAC and to FLAC development but I am having a problem in trying to make FLAC work with MediaMVP based the mvpmc project (ref. http://www.wvpmc.org) that hopefully someone can help me with. This device is possibly minimum spec. for a FLAC decoder. In any case, I have had some success cross-compiling libFLAC (without the ogg or metadata modules).for the embedded
2014 May 10
1
PATCH for replaygain_synthesis
flac.exe crashes if I try to decode multichannel flac file with RG tags using the following command line: flac.exe -d --apply-replaygain-which-is-not-lossless test_6ch.flac The code in replaygain_synthesis project uses FLAC_SHARE__MAX_SUPPORTED_CHANNELS which is equal to 2. The fix just changes 2 to FLAC__MAX_CHANNELS. -------------- next part -------------- A non-text attachment was scrubbed...
2004 Jan 31
1
problems with wine on laptop
I can't get anything to run using wine on my new laptop. I have slackware 9.1, kernel 2.6.0, and XFree86 4.4 RC2. I am running 2 programs on my desk top machine that won't run on the laptop. THe desktop has slackware 9.0, kernel 2.4.22 and XFree86 4.3.0. Can anybody help? Also the laptop has an installation of windows xp which is not found by the wineinstall script. Thanks, Tom