Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
Adobe Flex SDK Previous
-
None
-
None
-
Affected OS(s): Windows
Affected OS(s): Windows XP
Browser: Internet Explorer 7.x
Language Found: English
Description
Steps to reproduce:
1.set video source path
2.set autoplay as false
3.start play
Actual Results:
>> my FMS received two create stream command.
Expected Results:
>> my FMS received one create stream command,then send a media data package.
Workaround (if any):
>>=========below is my code=================
<mx:VideoDisplay id="myVideo" autoPlay="false" width="100%" height="100%" horizontalCenter="0" verticalCenter="0" volume="
"/>
this.myVideo.live = true;
this.myVideo.autoPlay = false;
this.myVideo.source = mediaPath;
this.myVideo.bufferTime = 5;
if (!myVideo.playing)
{
this.myVideo.play();
}