search for: integracrock

Displaying 6 results from an estimated 6 matches for "integracrock".

2003 Nov 08
2
Encoding in Delphi - Help
...#39;m not an expert, so I don't know what I should use: beg endian, or little endian. Matthijs Laan uses: SAMPLES = 4096; and readbuffer: array[0..SAMPLES*4-1] of Byte; but in the encoder_example.c : SAMPLES = 1024; and char readbuffer[SAMPLES*4+44]; Why??? Please help me! Thank you in advance! IntegraCrock <p>--------------------------------- Do you Yahoo!? Protect your identity with Yahoo! Mail AddressGuard --- >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.or...
2004 May 05
0
I need some example
Hi! I need some (delphi) example: - which can encode from 22050Hz wav file - wich can encode from a 8bit wav file I wolud be very grateful! Thank you in advance, crc --------------------------------- Do you Yahoo!? Win a $20,000 Career Makeover at Yahoo! HotJobs --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage:
2004 May 05
1
vorbis_encode_init_vbr() probleme
Hi! In the SDK documentation it is written: "base_quality Desired quality level from 0.0 to 1.0" But, i can give less than 0 parameter too. Why? Although, if i give greater than 0.9, encoding is halt with "floating point division by zero" message. Why? Thank you for your reply, crc --------------------------------- Do you Yahoo!? Win a $20,000
2004 Apr 12
3
Decoding with 8 bit-samples
Hi! I'd like to make a stereo 8-bit wav file from a stereo (16 bit) ogg vorbis file (in delphi, with the vorbisfile). I use: ret := ov_open_callbacks(filein,vf,nil,0,ops_callbacks); if ret = 0 Then begin fileOut := TFileStream.Create(savedlg.FileName,fmCreate); repeat ret := ov_read(VF, pcmout, BufferSize, 0, 1, 1, nil); //'cause of the 8-bit
2004 Apr 19
3
encoding from 22050Hz source
Hi! I'd like to encode from a 22050 Hz source wav file (only in that case), but i get the following error message: "Invalid floating point operation" I use delphi: vorbis_encode_init_vbr(vi,2,22050,0.5) . . . While (i < readCount div 4) Do Begin buffer[0][i] := smallInt((pArray(@readbuffer)[i shl 2 + 1] shl 8) or pArray(@readbuffer)[i shl 2 + 0]) / 32768;
2004 Feb 13
10
Encoding into MONO (delphi)
Hi! I have a problem. I hope, you can help me. I use a Delphi conversion (from Aleksandr Shamray), but it doesn't work when I'd like to convert a *.RAW into a mono *.ogg file. vorbis_encode_init_vbr(vi, 1, 44100, 0.5); //because of the mono the program stops at line: //* uninterleave samples */ . . buffer[1][i] := smallInt((pArray(@readbuffer)[i shl 2 + 3] shl 8) or