サーチ…


外部ビデオファイルの読み込みと再生


リファレンスNetConnectionNetStreamVideo

関連トピックサウンドの操作


外部ビデオファイル(FLV、MP4、F4V)を再生する基本的な例コードはM4Aオーディオファイルも再生します。

var nc:NetConnection = new NetConnection();
nc.connect(null);

var ns:NetStream = new NetStream(nc);

var myVideo:Video = new Video();
addChild(myVideo);

myVideo.attachNetStream(ns);

ns.play("http://www.yourwebsite.com/somefile.mp4");

コードがnc.connect.null使用していることにnc.connect.nullください。これは、この場合、保存されたファイルを再生しているため、双方向のピアツーピア接続を作成する必要がないからです。

nc.connect.null設定すると、Webサーバ上のファイルへのリンク、または実行中のSWFと同じローカル(同じ場所/フォルダ)のファイルへのリンクを提供する必要があります。

  • ウェブファイルを使用するには、 ns.play("http://www.yourwebsite.com/somefile.mp4");
  • ローカルファイルの場合、 ns.play("somefile.mp4");

NetStatusEventを使用する

package {
    import flash.events.NetStatusEvent;
    import flash.net.NetStream;
    import flash.net.NetConnection;
    import flash.events.Event;
    import flash.media.Video;
    import flash.display.Sprite;
    public class VideoWithNetStatus extends Sprite {
        private var video:Video = new Video();
        private var nc:NetConnection;
        private var ns:NetStream;
        
        public function VideoWithNetStatus() {
            nc = new NetConnection();
            nc.addEventListener(NetStatusEvent.NET_STATUS, onStatus);
            nc.connect(null);//or media server url
        }
 
         private function onStatus(e:NetStatusEvent):void{
             switch(e.info.code){
                 case 'NetConnection.Connect.Success':
                     connectStream();
                 break;
                 default:
                     trace(e.info.code);//to see any unhadled events   
             }
         }
         private function connectStream():void{
             ns = new NetStream(nc);
             ns.addEventListener(NetStatusEvent.NET_STATUS, onStatus);
             addChild(video);
             video.attachNetStream(ns);
             ns.play('url/to/video.flv');
         }
    }
}


Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow