AS3 Full Screen script, video crashed - actionscript-3

I load external video with playback component (skin over play stop seek mute vol.swf), its working great but when I use
fscommand("fullscreen", "true");
on my first scene (first keyframe in timeline), and after that when I reach my video scene. I got just black screen

Related

Angular Video stops playing after X minutes

I have an angular application with a html5 <video> which gets the video source from a url. The problem is that for apparently no reason, at some point the video stops playing and shows itself as loading and stays at that same point for a few minutes and then resumes playing. I haven't provided the code because it is just the video and a condition to check if the video time is inside the wanted fragments, as some parts should be skipped (When it is not the time jumps forward). The video is played inside a modal, and it is not a connection problem

Action Script 3.0 Fullscreen Issue

stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE
I'm using this command to make my flash application fullscreen, and on that frame I have a video and a button to skip and pause the video and go to next frame,
PROBLEM I'm Facing:-
when I open flash application it launch's in fullscreen but my buttons are not visible at all.
I want to make only canvas fullscreen but not the video.
please help

streamed video stop playing in actionscript

I have developed video recorder and player. Which will recorder video to flash media server.
When i start recording i set camera quality as following
cam.setQuality(65536, 65);
mic.setRate(44);
I will record perfectly on save video. Video will move from streaming folder to another folder. On play click video will play that place.
Now, problem is when i start playing then video played some second and then stop playing. Only volume i can listen. Video will not playing.
What is the issue of that?
Is some frames cut or bandwidth issue?
Edit:
Initialize camera as follow:
cam = Camera.get();
mic = Microphone.get();
mic.setCodec("Speex");
mic.setRate(44);
mic.setUseEchoSuppression(true);
mic.setSilenceLevel(0);
cam.setMode(627,353,24,true);
cam.setLoopback(true);
cam.setQuality(65536, 65);
mic.setRate(44);
for record flv:
ns.publish(fileName, "record");
Ex. Currently i record video of 5 minute then i play it so, it played upto only 2:10 then after it stops playing video and play only audio. same happen when play with vlc player.
If i record with same code locally stream server then works perfectly.

Why does my AS3 Video scrubber work in Preview and FP10 but not when published to Air?

I have coded an as3 class in Flash Pro to make an flv video pan backwards and forwards as the user drags the mouse left and right over the video sprite. (The video is an orbit of a building so the effect is to spin the building around with the mouse). The video has been loaded to a DisplayObject using Greensock's LoaderMax.
It all works fine in Flash Player 10 and the preview, but won't pan when published to Air 2 for desktop on windows. Video just jumps to the final position on mouseUp. Would this most likely be a limitation of Air? if so, why does the preview work? Any suggestions greatly appreciated.

Is it possible to keep playing under lock screen with the MMP Player Framework video player?

When using the MediaPlayer from http://playerframework.codeplex.com/
I'm setting the ApplicationIdleDetectionMode to IdleDetectionMode.Disabled, but when the phone is locked, the video pauses. Is there any way to enable the video to keep playing?