我正在实现一个非常简单的纯音频RTMP服务器。
我有这样的客户代码:
// get the default mic
var mic:Microphone= Microphone.getMicrophone();
// best quality (picks up all sounds, no transmission interruptions)
mic.setSilenceLevel(0);
// Using SPEEX codec with quality of 5
mic.codec = SoundCodec.SPEEX;
mic.encodeQuality = 5; // Required bit rate: 16.8 kbits/s,
// Rate is automatically set to 16K Hz if SPEEX codec is set
//mic.rate = 16;
mic.framesPerPacket = 1;
// Attach the mic to the NetStream
ns.attachAudio(mic);
ns.publish("SpeexAudioData", "record");
然后在服务器上,我继续接收大小为43字节或11字节的音频数据包(尚未找到其他大小)。
我的问题是:
谢谢。
最佳答案
我想我自己想通了。
看到:
http://forums.adobe.com/message/3671858#3671858