Videos are loaded through network.
In fact i use loadermax (last version) because i created my own video loader class and i had the same problem, so i turned to loadermax to solve this, but in fact it's the same issue..
I guess it's a RAM access thing, or whatever, when i reload the movie, the flash file freezes a little because it put the video file in memory (and 500mb is not fast to put in memory, about 1 sec).
The flash file is pretty huge, but here's the loading of the video. If needed i can make a tiny fla during the day.
laVideo = new VideoLoader(parent.chemin + fichier), {
noCache:true,
name:"maVideo",
container:clipVideo,
//autoDispose:true,
bufferTime:6,
//autoAdjustBuffer:true,
width:1366, height:768,
scaleMode:"none",
bgColor:0x000000,
onInit:getMeta,
onError:errorHandler
});
and in my "kill" function :
laVideo.netStream.removeEventListener(NetStatusEvent.NET_STATUS, bufferHandler);
laVideo.removeEventListener(VideoLoader.VIDEO_COMPLETE, finVideo);
laVideo.dispose(true);
//laVideo.unload();
laVideo = null;
//comments are lines i tested with / without.