I publish speex stream to Wowza from Flash player
When i use microphone.framesPerPacket=1
I get 11 bytes(1 byte header + 10 bytes data) and 53(1+52) bytes in MediaStream addAudioData.
When i use microphone.framesPerPacket=2
I get 21(1+10+10) bytes and 104(1+103) bytes in MediaStream addAudioData.
Seems, 104 is wrong value because 104 is not equals 1+52+52
I tried to split 104 as 1+52+51 and send it to decoder, it works, but i get “robotic” voice
Any advice?