Getting blip of sound from previous netstream video

Hi.

I am trying to figure out why a small bit of the sound is heard from a previous video loaded via netstream. I am loading h264 mp4 files, locally.

I’m stopping and hiding the previous video with:

stream_ns.pause();
stream_ns.seek(0);
video.visible= false;

Please show me the light :wink:

[EDIT] I did find a work around by starting a timer when the video starts to turn the volume to 1 from 0 (set in my video stop function) after a second. This works, but I’m wondering if I’m missing a more standard approach.