Jump to content
Search Community

Yanickl

Members
  • Posts

    10
  • Joined

  • Last visited

Yanickl's Achievements

0

Reputation

  1. Thanks for the fast respond. Did you know a software to verified the meta data inside a FLV ? I encode my FLV from After Effect cs5. I can't put this file here but, if you can PM me I can send you the link personally
  2. I just see a function is called in the enterframed to set the variable _initted to true, but this function is in the IF Where the exemple : if (!_initted) { _forceInit(); _errorHandler(new LoaderEvent(LoaderEvent.ERROR, this, "No metaData was received.")); } protected function _forceInit():void { if (_ns.bufferTime > _duration) { _ns.bufferTime = _duration; } _initted = true; if (!_bufferFull && _ns.bufferLength >= _ns.bufferTime) { _onBufferFull(); } (_sprite as Object).rawContent = _video; //resizes it appropriately } Do you think the function _forceInit() should be before the if(!_initted) ? Thanks in advance
  3. Hello, First of all, thanks for this library. I got some strange error with the VideoLoader. Sometime, a error from LoaderEvent is dispatch (No metaData was received.). For a test, a comment the line in VideoLoader.as "_errorHandler(new LoaderEvent(LoaderEvent.ERROR, this, "No metaData was received."));" and all work great. Can you tell me a little more about this error ? And why when I remove it, it's working ? Thanks YanickL
  4. Hello all, Can someone explain me the way to accessed the information on the CuePoint of the VideoLoader theVideo.addEventListener(VideoLoader.VIDEO_CUE_POINT, onCutPoint); private function onCutPoint(pEvt:LoaderEvent):void { } The events dispatch very well, but I don't know the way to accessed the infos. Thanks Yanick
  5. Thanks for the help. It's really a compression video problem. Now it's working good. Thanks
  6. I just test with 4 videos and 1 was working. The 3 others make the same problem. Thanks
  7. 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
  8. 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(); }
  9. 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
×
×
  • Create New...