lo que tienes que hacer es crear una funciton que llamas al momento de iniciar tu flv:
Código PHP:
netStream.play();
finDelVideo()
function finDelVideo(){
netStream.onStatus = function(info) {
if (info.code == "NetStream.Play.Stop") {
netStream.seek(0);
netStream.play();
}
};
}
Salu2 y espero que te funcione