in my flv player when the player triggers the ns.play('somevideo.flv") I here a crackle or some sort of chirp at the very beginning even if autoPlay is set to false. It might be the beginning of the audio of the .flvcode. I am wondering if it is my code or if someone else has experience something similair.
code:
ActionScript Code:
if (autoPlay_FV == "true") {
ns.play(flvURL_FV);
ns.seek(0);
trace("play");
_global.playStatus = true;
} else if (autoPlay_FV == "false") {
ns.play(flvURL_FV);
ns.seek(0);
ns.pause(true)
_global.playStatus = false;
} else {
ns.play(flvURL_FV);
trace("play");
autoClose = setInterval(forceClose, 10, ns);
}