similar to: vorbis_encode_init() bitrate arguments - offtopic

Displaying 20 results from an estimated 1000 matches similar to: "vorbis_encode_init() bitrate arguments - offtopic"

2004 Aug 06
0
vorbis_encode_init() bitrate arguments - offtopic
At 09:49 AM 2/20/02 +0100, you wrote: >Hi, > >It's a bit offtopic for this list, but you might be able to help. For >libvorbis rc3, what is the correct bitrate parametrization for the call >vorbis_encode_init()? > >For rc2, it worked calling it the following way: > >vorbis_encode_init( &vorbisInfo, > 2, // two channels
2004 Aug 06
2
vorbis_encode_init() bitrate arguments - offtopic
Michael, > See the examples. If you initialise a managed mode (which this is), you > MUST use vorbis_bitrate_addblock() and vorbis_bitrate_flushpacket(). Thanks for the tip. I added the calls, and it works now. > You SHOULD also give an option to set min/max, since they're now used, > and to use a VBR mode rather than the managed modes here. But when streaming, IMHO it is
2002 Aug 20
1
managed mode / max bitrate doesn't have effect
Hi, I'm experimenting with managed mode encoding with specifying maximum bitrate. I call: vorbis_encode_init( &vorbisInfo, 2, 44100, -1, 96000, 96000); to initialize the encoding. To my surprise, it seems the maxbitrate value of 96000 doesn't have an effect, the bitrate of the
2004 Aug 06
4
vorbis bitrates - offtopic
Hi, I'm experimenting with IceCast2, using DarkIce to generate the 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.
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
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 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
2002 Mar 27
1
What exactly is threadsafe
Hey I am playing with a LOT of threads right now, and I want to know if the threads all need their own little vorbis encoders running in them or what exactly is threadsafe in vorbis? So here are the functions that would be called from many threads of with buffer = vorbis_analysis_buffer( &m_vorbisDsp, 4*DATA_CHUNK_SIZE ); vorbis_analysis_wrote( &m_vorbisDsp, dataLength/dataSize );
2004 May 20
3
Encoding questions
Hi, I have recently implemented encoding/decoding to/from OggVorbis in my app, with the code being based upon the Libvorbisenc sample code supplied with the SDK. It all works very well indeed (encoding from a PCM file, then playback), except that no matter the length of the source PCM file, the last (approx) 4 seconds of audio is always missing from the Ogg file. I am trying to find some
2005 Sep 26
2
encoder_example.c Questions
I've been trying to piece my way through the encoder_example.c program to better understand how to encode files as ogg/vorbis. I'm stuck on two sections of the code. This is the first /* uninterleave samples */ for(i=0;i<bytes/4;i++){ buffer[0][i]=((readbuffer[i*4+1]<<8)| (0x00ff&(int)readbuffer[i*4]))/32768.f;
2002 Jan 03
3
Adding RC3 support to GoldWave
Here are some minor things I noticed when updating the vorbis module for GoldWave: Bitwise.c, line 175 and 207 Warning: Negative unsigned value ret=-1UL; Info.c, line 385 Warning: Unreachable code break; vorbisfile.c, line 1407 Warning: Call to function with no prototype int host_endian = host_is_big_endian(); fix: add 'void' to line 1339: static int host_is_big_endian( void )
2004 Aug 06
1
ices: compliation problem
Hi all, I can't compile ices on my Linux Box Here is the output ices.o(.text+0xc0): undefined reference to `log_open_file' encode.o: In function `encode_dataout': encode.o(.text+0x223): undefined reference to `vorbis_bitrate_addblock' encode.o(.text+0x244): undefined reference to `vorbis_bitrate_flushpacket' Thank you -- -- GNU/Linux: il y a moins bien mais plus cher
2009 Dec 12
1
Skipping of sample in ogg writing
Hi All, I m having a strange problem with the Ogg-Vorbis writting code. The code I m using to write is skipping some samples at the end of the file. For example I m converting the 10000 sample .wav file ( 441000 sample rate , 16 bit depth , stereo ) to ogg format. But while reading the ogg file I only find 5824 samples in the ogg file. Can any one suggest what could be wrong in the code. Is
2009 Dec 12
1
Skipping of sample in ogg writing
Hi All, I m having a strange problem with the Ogg-Vorbis writting code. The code I m using to write is skipping some samples at the end of the file. For example I m converting the 10000 sample .wav file ( 441000 sample rate , 16 bit depth , stereo ) to ogg format. But while reading the ogg file I only find 5824 samples in the ogg file. Can any one suggest what could be wrong in the code. Is
2002 Nov 26
1
Low bitrates
Hi, I want to encode audio at very low bitrates. however, vorbis_encode_init() does not allow me to set bitrates below 32kbps. How can i set 24kbps? Thanks, Flo --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-dev-request@xiph.org' containing only the word
2004 Aug 06
2
Darkice on Linux PPC
> > >> >> >> Plus about 10 more lines of errors. > > > well, what do these lines say? :) <p>make all-recursive make[1]: Entering directory `/usr/darkice/darkice' Making all in src make[2]: Entering directory `/usr/darkice/darkice/src' c++ -DHAVE_CONFIG_H -I. -I. -I.. -O2 -pedantic -Wall -c VorbisLibEncoder.cpp VorbisLibEncoder.cpp: In method
2004 Sep 03
1
Vorbis Tools installation problem
I am trying to install vorbis-tools 1.0.1 onto my mac os 10.3.5 I installed the relevant libraries through fink (http://fink.sourceforge.net) - libao2, libvorbis, libogg my configure command was this: ./configure -with-ogg=/sw --with-ao=/sw --without-flac --without-speex I received no errors from configure except to let me know that oggenc would not have flac support and that ogg123 would
2004 Aug 06
2
Liveice on Linux PPC || use ices => use darkice
> > >> >> >> I can't get darkice to compile (error in 'MultiThreadedConnector.cpp') >> and there is no darkice RPM for PPC. > > > Please use the CVS version of darkice, which includes a fix for the > problem you mentioned. <p>OK, I got the CVS version of darkice. Now when I run 'make' I get the following error(s):
2002 Jan 02
2
RC3 Changes needed for MacOS
It looks like the Mac .exp files were not updated for RC3. The following diff corrects that problem. The CodeWarrior project files also have not been updated. They are in 5.3 format which is quite old. Would anybody object if I submitted updates to them in CodeWarrior Pro 6 format? That's the oldest version I have readily available. If someone else has 5.3 and wants to do it, you need to
2002 Aug 15
2
dynamicly loading libvorbisenc on Mac OSX
Hi, I'm trying to load the vorbis libs dynamicly on Mac OS X. I've got success for libogg, libvorbis and libvorbisfile. But libvorbisenc drives me crazy. The function "vorbis_encode_init" seems not to be in there if I am using "NSLookupSymbolInImage". But the tools "otool" and "nm" tell me that the function is declared. Does anyone know, what I