サーバーに保存するために、録画後にWebカメラのビデオ録画を行ったWebサイトがあります。私の問題は、ウェブカメラのビデオを録画しているときに、イントロテキストを追加したいということです。ic最初の10秒間のテキストの表示。
ここに私のサンプルコード
protected function button3_clickHandler(event:MouseEvent):void
{
nc = new NetConnection();
nc.objectEncoding = flash.net.ObjectEncoding.AMF3;
nc.connect("rtmp://localhost/webcamrecording/");
nc.addEventListener(NetStatusEvent.NET_STATUS,staushandler);
//Alert.show(nc.toString());
}
protected function staushandler(obj:NetStatusEvent):void
{
var str:String=obj.info.code;
Alert.show(str);
camera = Camera.getCamera();
microphone = Microphone.getMicrophone();
vDisplay.attachCamera(camera);
nsPublish = new NetStream(nc);
nsPublish.publish("streamer", "record");
nsPublish.attachCamera(camera);
nsPublish.attachAudio(microphone);
}
<s:Panel title="Video">
<mx:VideoDisplay id="vDisplay" creationComplete="VideoDisplay_creationCompleteHandler(event)" height="300" width="400"/>
</s:Panel>
<s:Button label="Record" click="button3_clickHandler(event)" />
前もって感謝します