Displaying 20 results from an estimated 6000 matches similar to: "Complexity vs BitRate"
2004 Aug 06
1
Complexity vs BitRate
Jean Marc,
So assuming the quality setting was set as high as possible,
and the audio stream was 8000 hz, 16 bit mono, I have two follow
up questions:
1. Does the complexity setting override the quality setting, or does
increasing the complexity only lower the rate at a given quality?
Or would setting both higher increase the quality more?
2. What sort of impact would setting quality as high as
2004 Aug 06
3
Speex settings and jitter
Hi,
Is there are document where the interaction between all the configuration
options of speex is explained?
Speex seems to have CBR, VBR and ABR. You can also use SPEEX_SET_QUALITY
(SPEEX_SET_VBR_QUALITY) and SPEEX_SET_BITRATE which I suppose can't be set
at the same time. Is there a list of possible combinations somewhere?
I also have another question related to jitter. To minimize jitter,
2004 Aug 06
1
Speex configuration
Hi,
I'm trying to cover all Speex configuration options to set
quality/mode/bitrate
in my application and I was wondering if the following all makes sense:
- abr_bitrate
- use average bitrate and set it using bitrate parameter
- SPEEX_SET_ABR
- cbr_bitrate
- use constant bitrate and set it using bitrate parameter
- SPEEX_SET_BITRATE
- cbr_mode
- use constant bitrate and
2008 Mar 02
1
Speex: complexity, VBR, ABR, CBR, quality
Hi All;
If someone used speex and has experience with its
settings, then who can help to explain the following:
1) When it is recommended to use VBR (vbr => true)?
2) If there relation between setting the vbr => true
and the abr value (for example to be 0 or 1 or 10) and
the relation between this value and abr (true /
false).
3) Any relation between the quality value and the abr
value?
2004 Aug 06
1
API changes for Speex 1.2
Hi,
Speex is progressing and I've started thinking about the next 1.2
release (don't hold your breath). Though the bit-stream won't change,
the API likely will. The API for 1.1.x already differs from 1.0.x
because the speex_encode and speex_decode now use shorts instead of
floats. Now, since I'm changing the API anyway, I thought I might as
well fix things that might be annoying
2004 Dec 28
5
bitrate limits don't work with -q settings?
I'm sorry if this question has been asked before; I've looked through
the archives and haven't seen anything.
The problem I'm seeing is that oggenc's VBR encoding doesn't seem to pay
attention to any sort of bitrate limitation, either the -m or
bitrate_hard_min settings. It isn't that it temporarily dips below the
minimum; the average for the whole (in this case,
2004 Aug 06
3
Speex settings and jitter
In my experience most of the jitter related issues are because people are
using too small of audio buffer sizes that match the framing size of Speex -
particularly in Windows. This isn't a problem with Speex, but as a
programmer you should collect and append a few frames to match the size of
your output audio frame buffer before attempting to play the sound.
-----Original Message-----
From:
2005 Dec 15
1
ABR troubles
Hi,
I'm having a bit of trouble with the ABR. I'm a developer of Mumble, a
voicechat application for gamers, and up to now we've just used VBR
quality to determine the bitrate. In an effort to make the resource
requirements a little more determinable (and limitable) for hosting, I
tried switching to ABR, as there doesn't seem to be a way to determine
the absolute peak
2010 Apr 12
1
What establishes "average" bitrate in Variable Bitrate (VBR) Mode?
On 2010-04-11 10:09, Randy Yates wrote:
> If I specify VBR mode via
>
> speex_encoder_ctl(pSpeexEncoder, SPEEX_SET_VBR,&isTrue);
Try:
speex_encoder_ctl(pSpeexEncoder, SPEEX_SET_ABR, &desiredRate);
2006 Oct 24
2
Does VAD/DTX work without VBR and Preprocessor
Hello,
I'm try to run speex on some ARM processor.
I'd like to cut away some speex features including VBR, ABR and preprocessor
while still supporting VAD/DTX.
But I've found some puzzles in the source code regarding VAD as below,
1) there are VAD related codes in the source file preprocess.c.
Will VAD still work If I don't use the source file preprocess.c?
2)The speex manual
2003 Sep 14
1
How to calculate exact bitrate/filesize w/ Vorbis? Plz help
Hi,
I'm quite familiar w/ mp3 cbr/abr/vbr encoding, as well as mpeg4 (cbr/vbr,etc). And I can always calc the bit rate for a given file size with:
file size * 8000 / length in seconds = kbits/sec
Works great w/ mpeg4 + mp3.
BUT FOR THE LIFE OF ME: I cannot get oggenc (1.0x version) to give me the file size I want. I calc. it with the above formula, and nothing comes out right. Then I do
2003 Apr 29
3
VBR vs ABR
Hello,
I purchased the "CD Ripper 2" plugin for Winamp 3 and need help choosing
an ogg encoding format. It seems I have the choice between VBR and ABR
formatted oggs. I am familiar with VBR (variable bit rate) but not sure
what ABR stands for?
Is it possible/desirable to specify a bit rate when encoding oggs, or
does the nature of the ogg format make use of varying bit rates?
2017 Nov 27
2
vorbis quality - quality scale vs bitrate
Hi there,
I'm using libvorbis in my program and need to encode to target bitrate. I
know libvorbis prefer to use quality scale but I can't use it.
I've found something at faq http://vorbis.com/faq/#quality
*For now, quality 0 is roughly equivalent to 64kbps average, 5 is roughly
160kbps, and 10 gives about 400kbps. Most people seeking
very-near-CD-quality audio encode at a quality
2004 Aug 06
2
--dtx alone does nothing?
> All you say look normal to me.
Okay, clarification requires less code to be written than a bug. :)
> > Does that makes sense? I would have thought that --dtx alone would have =
> doen it,
> > but maybe it needs perfect digital silence to work? Or only uses the voi=
> ce activation
> > to know when there's silence?
>
> DTX requires the VAD to know when
2006 Oct 24
1
Does VAD/DTX work without VBR and Preprocessor
Hi Marc,
Thanks for your quick response.
So if VAD is enabled then VBR will be enable although it's a special VBR.
How about take out the VAD code from the VBR and remove the code else?
Lianghu
On 10/24/06, Jean-Marc Valin <jean-marc.valin@usherbrooke.ca> wrote:
>
> > 1) there are VAD related codes in the source file preprocess.c.
> > Will VAD still work If I
2002 Aug 03
1
vbr / cbr / abr API calls
Hi,
Maybe this is documented somewhere, if so, please send me a link to the
documentation.
My question is: how to set up different (VBR, CBR, ABR) modes when
calling the Ogg Vorbis API?
Currently I do:
CBR:
ret = vorbis_encode_setup_managed( &vorbisInfo,
getInChannel(),
getOutSampleRate(),
2004 Oct 06
4
Cpu bandwidth for Speex on Win32 platforms
At 12:35 PM 10/6/2004, Matthias Granberry wrote:
>There is some SSE assembly
>language, but it's in GCC/AT&T syntax rather than the windows-standard
>Intel syntax, so you might have to do some of your own translation to
>something your compiler understands.
We submitted an intel patch a ways back- maybe it is in the archives
somewhere...
Tom
--
Tom Harper -
2002 Jan 02
2
vorbis API calls
Hi devs,
I am developing winLAME, a frontend for LAME, and it also supports Ogg
Vorbis decoding and encoding.
I've got a question about the new API function
vorbis_encode_init_vbr(). Do I have to call vorbis_encode_init()
before to set the bitrate(s)? And what is a good default value for the
"base_quality" parameter?
I read on the mailing list that ABR use in Ogg Vorbis is not so
2004 Aug 06
2
Speex modes
Hi,
I'm about finished developing a QuickTime component that supports Speex
(on
MacOS X and Windows).. As it is now the user can set complexity
(SPEEX_SET_COMPLEXITY) and quality (SPEEX_SET_QUALITY /
SPEEX_SET_VBR_QUALITY) and to wether to use VBR or not. Will these
options
make it possible to produce all combinations of bitrates/qualities? Or
should I also use
2004 Aug 06
2
--dtx alone does nothing?
I'm running a:
for band in n w u
do
for quality in 0 1 2 3 4 5 6 7 8 9 10
do
for complexity in 3
do
for vad in "" "--vad"
do
for dtx in "" "--dtx"
do
echo speexenc -${band} --quality ${quality} --comp ${complexity} ${vad} ${dtx} input.${band}.wav