我正在尝试在Flash Builder中创建一个流媒体视频播放器。当我运行测试时,播放器工作正常,但是一旦导出项目并运行html文件,它就会在几分钟后开始播放电影。
我认为这是因为它下载电影?这是我的代码。有任何想法如何提高阅读速度?
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
width="369" height="314" minWidth="955" minHeight="600">
<fx:Script>
<![CDATA[
import flash.media.Video;
]]>
</fx:Script>
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<s:VideoPlayer
id="vpVideo"
source="video/video1.mp4"
loop="false"
autoPlay="false"
width="300" height="200"/>
<s:TextArea id="myTA" x="9" y="268" width="350" height="25"/>
</s:Application>