similar to: Float audio question

Displaying 20 results from an estimated 6000 matches similar to: "Float audio question"

2004 Jul 15
2
[LLVMdev] Constants.cpp:368: error: `INT8_MAX' undeclared(firstuse this function)
>From: Chris Lattner <sabre at nondot.org> >Date: Wed, 14 Jul 2004 14:49:01 -0500 (CDT) > >There is currently support for building in non-cygwin windows environments >protected by _MSC_VER. You just need to broaden the scope of the #ifndef >to include internix. > Sorry Chris, but my DataTypes.h.in seems to be outdated (due to I'm porting LLVM 1.2), so I'm not
2014 Jan 07
2
Opus in WebM
What got me experimenting with Opus is that I heard it's going to be a supported codec in WebM, which I also have a Premiere plug-in for: http://github.com/fnordware/AdobeWebM I just posted a new beta that includes Opus support. Naturally, I *think* I'm doing it right, but I'd love for someone more knowledgeable about Opus or WebM to take a look. The closest thing to a standards
2014 Jan 17
4
Opus in WebM
Yes, it's basically an intrinsic aspect of the mathematics. If you seek into the middle of an Opus stream, that's about how long it takes before the audio converges to be correct. On Jan 17, 2014 2:13 PM, "Brendan Bolles" <brendan at fnordware.com> wrote: > On Jan 7, 2014, at 11:11 AM, Brendan Bolles wrote: > > > The closest thing to a standards document for
2013 Jul 01
2
FLAC plug-in for Adobe Premiere
Hey everyone, I've written a FLAC plug-ing for Adobe Premiere. It's actually part of the Ogg Vorbis plug-in I originally set out to write. You can see it here on GitHub: https://github.com/fnordware/AdobeOgg I just finished the first beta a few hours ago. You can download binary plug-ins from here: http://www.fnordware.com/downloads/Ogg_v0.5b1_mac.zip
2014 Jan 06
2
Meaning of mapping[]
Hey everyone, I've added Ogg Opus support to my Adobe Premiere plug-in here: http://github.com/fnordware/AdobeOgg Now I'll add Opus support to me WebM plug-in too. I've got this Opus stuff mostly figured out, but I have a few questions. Here's one: What do the numbers in mapping mean? I see that opus.h refers to the Vorbis channel mapping order, so does mapping in Opus take
2014 Jan 07
2
Windows linking problems
Hey everyone, I've come to appeal to the FLAC gods again. I have a plug-in for Adobe Premiere that adds support for Ogg Vorbis, Opus, and hopefully FLAC. But I can't get FLAC to link on Windows for some reason. I had to add x64 targets to the .vcproj files that ship with FLAC, so perhaps something went wrong there. Then I tried making new projects from scratch and importing the FLAC
2014 Jan 17
3
Opus in WebM
Brendan Bolles wrote: > DiscardPadding seems to assume that you might top off an opus > frame with empty samples when the frame would spill onto the next > matroska timestamp. So rather than have continuous opus that > could be decoded one after another, you'd have to jump over these > little gaps? The intent was not to allow gaps in the file like this (that would confuse the
2014 Jan 07
2
Windows linking problems
On Jan 7, 2014, at 3:12 AM, lvqcl wrote: > It looks like the linker cannot find libFLAC_static.lib and libFLAC++_static.lib. > By default FLAC moves them to objs/release/lib/ (or objs/debug/lib/) folder. Unfortunately, I don't think that's it. Visual Studio gives me a specific error when it can't find a certain library file. I think these are the errors you get when a
2013 Jul 22
2
Metadata
Hey everyone, according to Wikipedia's 4-year-old information, there is no standard for putting metadata into an Ogg file. That metadata must be included in the codec. For example, what if I want to make a Theora movie and include information about the color space or embed an ICC profile? Or can I include general textual information, like copyright? What about timecode? Brendan
2014 Jan 06
2
Possible bug in opus_multistream_surround_encoder_create()
I get reliable crashes if I create a 6-channel encoder using opus_multistream_surround_encoder_create(). If I use opus_multistream_encoder_create() instead and pass in the same parameters that opus_multistream_surround_encoder_create() sends out (streams = 4, coupled_streams = 2, mapping = {0, 4, 1, 2, 3, 5}) I don't get the crashes. I notice that opus_demo.c uses
2014 Jan 17
1
Opus in WebM
On Jan 17, 2014, at 3:19 PM, Brendan Bolles wrote: > I don't think Vorbis has the fixed-frame issue of Opus where audio frames might not align with Matroska timestamps. Whoops, I meant for the total duration of the file you should be able to have your vorbis length match the file duration length exactly. As my next paragraph said, in general I think the Vorbis packets will never align
2013 Jul 19
2
Converting audio samples
Hey everyone, I'm new to the world of audio, so can you please drop some very basic audio knowledge on me? What's the correct way to convert from float audio samples to integer ones like FLAC uses? If I'm converting to 8-bit, that has a range of -128 to 127, right? Do I multiply my float input by 127 or 128? Brendan
2014 Jan 21
1
Opus in WebM
It does not; Vorbis needs only lap consecutive frames, and the timing was constructed so that the 'timestamp' of a vorbis frame actually points to the middle of the frame data. When you combine a starting frame with the subsequent frame, the data you get back is from the starting timestamp forward. Because Opus needs to preroll a larger amount, that trick wouldn't work with Opus.
2013 Jul 23
2
Metadata
Brendan Bolles wrote: > Hey everyone, according to Wikipedia's 4-year-old information, there is no > standard for putting metadata into an Ogg file. True. > That metadata must be > included in the codec. More generally, in a stream in the Ogg file. Codecs are streams, but so are things like Ogg Skeleton. Information about Metadata has been collected together in the Xiph Wiki
2014 Jan 06
2
Meaning of mapping[]
On Jan 6, 2014, at 11:54 AM, Ralph Giles wrote: > The first entry, mapping[0], > describes front left and contains the value '0', so that speaker is the > left channel of the first coupled stream. mapping[1] is '4', so the > front centre speaker is given the first mono stream. mapping[2] is '1' > so the front right speaker gets the right channel of the first
2004 Jul 14
0
[LLVMdev] Constants.cpp:368: error: `INT8_MAX' undeclared(firstuse this function)
>From: Chris Lattner <sabre at nondot.org> >Date: Wed, 14 Jul 2004 14:49:01 -0500 (CDT) >The file you need to modify is here: >llvm/include/Support/DataTypes.h.in > >There is currently support for building in non-cygwin windows environments >protected by _MSC_VER. You just need to broaden the scope of the #ifndef >to include internix. > Sorry, Chris, but my
2004 Jul 15
0
[LLVMdev] Constants.cpp:368: error: `INT8_MAX' undeclared(firstuse this function)
On Fri, 16 Jul 2004, Henrik Bach wrote: > >There is currently support for building in non-cygwin windows environments > >protected by _MSC_VER. You just need to broaden the scope of the #ifndef > >to include internix. > > > > Sorry Chris, but my DataTypes.h.in seems to be outdated (due to I'm porting > LLVM 1.2), so I'm not at the moment able to edit the
2014 Jan 20
0
Float audio question
In the Opus API (which is different from Speex), the range of float PCM values is +/-1. For the integer API, it's +/- 32768. Jean-Marc On 01/20/2014 04:13 PM, Brendan Bolles wrote: > I've had trouble getting a definitive answer to this one, so please forgive me for asking here. > > When converting between integer and float audio samples, what is the preferred scale factor?
2019 Sep 13
2
DWARF-5 Supported languages Tags C++03, C++11,C++14
Hello Everyone, I'm working on providing support for New Language Tags, prescribed in DWARF-5. DW_LANG_C_plus_plus_03 DW_LANG_C_plus_plus_11 DW_LANG_C_plus_plus_14 While, C++11 and C++14, is defined and can be emitted by Frontend. "include/clang/Basci/LangStandard.h" CPlusPlus = (1 << 5), CPlusPlus11 = (1 << 6), CPlusPlus14 = (1 << 7), CPlusPlus17 = (1 <<
2009 Jan 10
3
install.views()
Dear Rxperts, Using R 2.8.1 and trying install.views("Cluster") getting error Error: could not find function "install.views" Please help:-( -- Oscar Oscar A. Linares Molecular Medicine Unit Bolles Harbor Monroe, Michigan [[alternative HTML version deleted]]