Share Posted July 8, 2010 Hello Folks, First of all, thanks for this amazing library. (Sorry for my english) I try the VideoLoader and it's work very good. But, the complete Event take like 10 seconds to be dispatches and I load only 1 .flv local (should be instant). Did you guys have this «problem» ? Thanks You Yanick Legault Link to comment Share on other sites More sharing options...
Share Posted July 8, 2010 Hi Yanick, My local VideoLoader COMPLETE's are instant so I'm guessing there's something else going on. Link to comment Share on other sites More sharing options...
Author Share Posted July 8, 2010 Thanks for the fast reply. Weird. Maybe my video. There is my code var loader:VideoLoader = new VideoLoader("video/video.flv", {name:"myVideo", container:conteneurVideo, width:720, height:486,smooting:true, bgColor:0x000000, autoPlay:false, volume:0}); var queue:LoaderMax = new LoaderMax({name:"mainQueue", onComplete:completeHandler}); queue.append( loader ); queue.load(); function completeHandler(pEvt:LoaderEvent):void { loader.addEventListener(VideoLoader.VIDEO_PLAY, onVideoPlayHandler); loader.playVideo(); } Link to comment Share on other sites More sharing options...
Share Posted July 8, 2010 You're sure the VideoLoader's COMPLETE event is taking that long, or are you waiting for the VIDEO_COMPLETE event (which fires after the whole video finishes playing, not loading)? If you're still having trouble, please post a simple reproduction of the problem, like an FLA and your video so we can just publish it and see what's going on. Link to comment Share on other sites More sharing options...
Author Share Posted July 8, 2010 Thanks again for the fast reply. I'm afraid I can't show the video (copyright). But, I wait for the event here : var queue:LoaderMax = new LoaderMax({name:"mainQueue", onComplete:completeHandler}); It is the good Event ? thanks Link to comment Share on other sites More sharing options...
Share Posted July 8, 2010 Yes, in your example code, that completeHandler() will be called as soon as ALL of the loaders in that LoaderMax have finished loading. Do you only have the VideoLoader in there or do you have others? You don't have to post a copyrighted video - can't you just use a silly little fake video or something that you have laying around to see if the problem goes away when you switch to a different video? That'd obviously indicate a problem with the video file itself. Link to comment Share on other sites More sharing options...
Author Share Posted July 8, 2010 I just test with 4 videos and 1 was working. The 3 others make the same problem. Thanks Link to comment Share on other sites More sharing options...
Share Posted July 8, 2010 Again, in order to troubleshoot effectively, I need to see the problem so could you post an example with a problematic video? Link to comment Share on other sites More sharing options...
Author Share Posted July 9, 2010 Thanks for the help. It's really a compression video problem. Now it's working good. Thanks Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now