Displaying 6 results from an estimated 6 matches for "min_bitr".
Did you mean:
min_bits
2002 Sep 23
2
Libvorbis suggestion & floating point exception
...S
snapshot, same result.
However, at 44.1kHz all bit rates seem to work.
Any ideas?
<p>2. In vorbisenc.c / vorbis_encode_setup_managed, there's a piece that reads:
if(nominal_bitrate<=0.){
if(max_bitrate>0.){
nominal_bitrate=max_bitrate*.875;
}else{ ...
If only min_bitrate and max_bitrate are passed, and nominal_bitrate set to
zero for "auto" mode, nominal_bitrate might actually end lower than
min_bitrate (e.g. if min_bitrate == max_bitrate for "CBR" emulation).
I think it should be something like:
if(nominal_bitrate<=0.){
if(max_bit...
2002 Aug 03
1
vbr / cbr / abr API calls
...-1 );
VBR:
ret = vorbis_encode_init_vbr( &vorbisInfo,
getInChannel(),
getOutSampleRate(),
getOutQuality() );
<p>Are these calls correct?
What effect do the max_bitrate, min_bitrate parameters have in the CBR
and ABR modes?
When measuring performance, it seems that the ABR mode takes a lot more
(about twice) processing power than VBR of even CBR. why is that?
Thanks,
<p>Akos
<p><p>--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg proje...
2004 Aug 06
4
vorbis bitrates - offtopic
...he stream. I
have found some peculiarities with the vorbis bitrates.
In DarkIce, I call vorbis_encode_init() with about the following values:
vorbis_encode_init( &vorbisInfo, 2, 44100, 96, 96, 96);
which by all reasons should generate a 96 kb/s stream, as all
max_bitrate, nominal_bitrate and min_bitrate are set to 96. Strangely
enough, the generated stream's bitrate (according to XMMS and WinAmp)
varies between 49 and 59.
If I try to set the same bitrate to a low 24, I never get a stream below
about 44 kb/s.
Could anyone enlighten me on these strange behaviours? It would be quite
importan...
2002 Jan 01
6
new vorbisenc behaviour
Just got around to compiling RC3 under beos and came across an
anomaly when using managed bitrates.
I haven't changed the code for the beos encoder but I now get double
the bitrates so
vorbis_encode_init(&vi,mediaFormat.u.raw_audio.channel_count,(long)mediaFormat.u.raw_audio.frame_rate , -1, 128000, -1);
now gives me vorbis files that average around 325 - 350.
Is this now the correct
2004 Aug 06
0
vorbis bitrates - offtopic
> vorbis_encode_init( &vorbisInfo, 2, 44100, 96, 96, 96);
>
> which by all reasons should generate a 96 kb/s stream, as all
> max_bitrate, nominal_bitrate and min_bitrate are set to 96. Strangely
> enough, the generated stream's bitrate (according to XMMS and WinAmp)
> varies between 49 and 59.
Currently min and max are ignored by the library, since bounded bitrates
aren't going in until rc3.
Also, if you pick 96kbps, that picks the 96kbps mode (i...
2002 Jan 02
2
vorbis API calls
...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 good.
Should I disallow the user to set the nominal bitrate in the winLAME
UI? And does VBR (setting "max_bitrate" and "min_bitrate") work?
btw: good work dev team! I've waited for RC3 for some weeks :-)
bye
Michael
--
http://winlame.sourceforge.net <<-- the only *nice* windows UI for LAME :)
http://sourceforge.net/projects/winlame <<-- sf project homepage
contact: Michael Fink <vividos@vividos.de...