我已经录制了.flv文件,现在我想在Flash Media Server上播放此视频。我在目录C:\ Program Files \ Adobe \ Flash Media Server 3 \ applications \中创建了一个文件夹名称“sampleApplication”目录。现在我编写代码来建立连接
netConnection.connect("rtmpt://localhost:1935/sampleApplication");
netConnection.addEventListener(NetStatusEvent.NET_STATUS, checkConnection);
在checkConnection监听器中,我检查我的连接是否完美正常,然后我编码播放视频
netStream = new NetStream(netConnection);
vid = new Video(300, 300);
vid.attachNetStream(netStream);
videoPlayer.addChild(vid);
netStream.play("sample");
视频无法播放... 什么是问题。需要紧急帮助吗? 在此先感谢!!
答案 0 :(得分:1)
尝试将 sample.flv 添加到C:\Program Files\Adobe\Flash Media Server 3\sampleApplication\streams\_definst_\
文件夹