search for: encodequ

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

Did you mean: encoded
2010 Mar 19
4
Speex in flash player: how to work with?
Nicer way: void* speexState = speex_encoder_init(&speex_wb_mode); int speexFrameSize, speexRate; speex_encoder_ctl(speexState, SPEEX_GET_FRAME_SIZE, &speexFrameSize); speex_encoder_ctl(speexState, SPEEX_GET_SAMPLING_RATE, &speexRate); SpeexPreprocessState* speexPreprocessState = speex_preprocess_state_init(speexFrameSize, speexRate); Jozsef -----Original Message----- From: Max
2009 Jul 16
1
Encoding/Decoding doubts
Flash player encodes speex at 16 kHz, mono, 16 bit. Fields in the format byte should be ignored if the format is speex. You can set the quality by Microphone.encodeQuality (default 6). You can also set the number of speex frames per tc message using Microphone.framesPerPacket. Flash player can only decode speex at 16 kHz, so make sure you have the proper sample rate. Jozsef > > Message: 2 > Date: Sun, 12 Jul 2009 18:36:28 +0100 > From: Daniel Ros...
2010 Mar 30
0
Speex in flash player: how to work with?
...peexRate); > SpeexPreprocessState* speexPreprocessState = speex_preprocess_state_init(speexFrameSize, speexRate); > Jozsef, would you kindly help me. Both, this code: _microphone = Microphone.getMicrophone(); _microphone.setSilenceLevel(0); _microphone.codec = SoundCodec.SPEEX; _microphone.encodeQuality = 10; _microphone.rate = 16; _microphone.framesPerPacket = 1; _microphone.gain = 80; _microphone.setUseEchoSuppression(false); and this code: _microphone = Microphone.getMicrophone(); _microphone.codec = SoundCodec.SPEEX; _microphone.gain = 80; generate frames, which are 10 or 52 bytes lon...
2010 Mar 31
1
Speex in flash player: how to work with?
...Mar 2010 19:52:42 +0400 > From: Max Lapshin <max.lapshin at gmail.com> > Subject: Re: [Speex-dev] Speex in flash player: how to work with? > > _microphone = Microphone.getMicrophone(); > _microphone.setSilenceLevel(0); > _microphone.codec = SoundCodec.SPEEX; > _microphone.encodeQuality = 10; > _microphone.rate = 16; > _microphone.framesPerPacket = 1; > _microphone.gain = 80; > _microphone.setUseEchoSuppression(false); > > and this code: > > _microphone = Microphone.getMicrophone(); > _microphone.codec = SoundCodec.SPEEX; > _microphone.gain = 80;...
2010 Mar 31
1
Speex in flash player: how to work with?
...peexRate); > SpeexPreprocessState* speexPreprocessState = speex_preprocess_state_init(speexFrameSize, speexRate); > Jozsef, would you kindly help me. Both, this code: _microphone = Microphone.getMicrophone(); _microphone.setSilenceLevel(0); _microphone.codec = SoundCodec.SPEEX; _microphone.encodeQuality = 10; _microphone.rate = 16; _microphone.framesPerPacket = 1; _microphone.gain = 80; _microphone.setUseEchoSuppression(false); and this code: _microphone = Microphone.getMicrophone(); _microphone.codec = SoundCodec.SPEEX; _microphone.gain = 80; generate frames, which are 10 or 52 bytes lon...
2010 Mar 19
2
Speex in flash player: how to work with?
...62cu329fb4df3c5e91ed at mail.gmail.com> Content-Type: text/plain; charset=UTF-8 Hi everyone. I want to work with Speex audio, that sends Flash player, but I don't understand how. These are settings in flash: _microphone.setSilenceLevel(0); _microphone.codec = SoundCodec.SPEEX; _microphone.encodeQuality = 10; _microphone.rate = 8; _microphone.framesPerPacket = 1; _microphone.gain = 70; _microphone.setUseEchoSuppression(false); With this settings I get frames exactly 106 bytes. speexdec.c has a hardcoded constant of 160 shorts. How must I initialize speex_decoder to work with flash audio st...