这是我第一次使用 StackExchange,所以如果我遗漏了什么,我深表歉意。
我正在尝试创建一个 AS3 Flash,它将使用网络摄像头和 RED5 媒体服务器录制视频;我被卡住了(我不是程序员,更像是一个可以做所有事情的电脑杂工)。RED5 附带的示例工作正常(尽管在 AS2 中,由于某种原因,我无法完成某些我需要做的事情),但我的代码似乎没有记录流,因为没有文件,RED5 控制台只说:
[INFO] [NioProcessor-3] org.red5.server.adapter.ApplicationAdapter - 文件 Lecture.flv 被删除
这是到目前为止的代码。(2012 年 9 月 7 日更新)
import flash.display.Sprite;
import flash.net.NetConnection;
import flash.net.NetStream;
import flash.media.Camera;
import flash.events.MouseEvent;
import flash.media.Microphone;
import flash.events.*;
import flash.media.Video;
var _cam:Camera
var _mic:Microphone
// create basic netConnection object
var _nc:NetConnection = new NetConnection();
_nc.client = this
// connect to the local Red5 server
_nc.connect("rtmp://localhost/myapp");
_nc.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
//Add listeners for buttons
record_btn.addEventListener( MouseEvent.CLICK, recordvid );
stop_btn.addEventListener( MouseEvent.CLICK, stopvideo );
//submit_btn.addEventListener( MouseEvent.CLICK, onSubmit );
//Listeners
function netStatusHandler(event:NetStatusEvent):void{
trace("start netstatus handler");
if (event.info.code == "NetConnection.Connect.Success"){
attachCamera();
}
}
function attachCamera(e:Event = null):void {
trace("attach");
//Attach Camera to field
_cam=Camera.getCamera();
_mic=Microphone.getMicrophone()
vid.attachCamera(_cam);
}
function stopvideo(e:MouseEvent):void {
//_ns.close();
}
function recordvid(e:MouseEvent):void {
var _ns:NetStream = new NetStream(_nc);
trace("publish");
_ns.attachCamera(_cam);
_ns.attachAudio(_mic);
_ns.publish("lecture", "record");
}