Results 6 comments of SNOWA

发现同样的问题,终于找到答案了,太猥琐了。

Same question:how to make it play on VLC player.

Example 1 can send the camera stream to the VLC player and play it!

It seems it didn't work at actionbar item.

暂时发现一个问题:不能调用resetenv,否则flash里原有的环境变量都会清空,以当前系统的ef_env default_env_set的默认值覆盖。

似乎是编码对不上还是堵塞之类的问题, 改成下面这样就行了== while (runFlag) { try { byte[] buffer = new byte[8192]; int readSize= in.read(buffer); if(readSize == 0)continue; if(readSize>0) { String content = new String(buffer, 0, readSize); this.onReceive(addr, content); }