H5RtmpClientRTMP 视频直播方案
用 HTML 5 技术播放 rtmp 视频直播流的方案,采用本人开发的 csharprtmp 作为服务器,Broadway 作为视频解码方案,speex.js 作为音频解码方案,emscripten 作为编译器的创新技术,需要浏览器支持 AudioContext,WebSocket,webgl(可选),TypedArray,等 H5 功能支持才可以正常使用。
csharprtmp 已经上传至 github
Flash 客户端示例代码:
var h264Settings:H264VideoStreamSettings = new H264VideoStreamSettings(); h264Settings.setProfileLevel(H264Profile.BASELINE, H264Level.LEVEL_3); ns.videoStreamSettings = h264Settings; var mic:Microphone = Microphone.getMicrophone(-1); mic.codec = SoundCodec.SPEEX; mic.framesPerPacket = 1;
评论