Displaying 5 results from an estimated 5 matches for "_microphone".
Did you mean:
microphone
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
2010 Mar 30
0
Speex in flash player: how to work with?
...l(speexState, SPEEX_GET_FRAME_SIZE, &speexFrameSize);
> speex_encoder_ctl(speexState, SPEEX_GET_SAMPLING_RATE, &speexRate);
> 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.getM...
2010 Mar 31
1
Speex in flash player: how to work with?
> Date: Tue, 30 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);
>
> a...
2010 Mar 31
1
Speex in flash player: how to work with?
...l(speexState, SPEEX_GET_FRAME_SIZE, &speexFrameSize);
> speex_encoder_ctl(speexState, SPEEX_GET_SAMPLING_RATE, &speexRate);
> 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.getM...
2010 Mar 19
2
Speex in flash player: how to work with?
...to work with?
To: speex-dev at xiph.org
Message-ID:
<e2a8f3fc1003170139y3638462cu329fb4df3c5e91ed 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...