Audio is not pausing when target is lost

The video is not stopping when the target is lost. I mean it plays in background. When the target is found, its playing the video from the current timeline. There is no pause when target is lost and audio is continuously playing.

1 Like

Hello @abul110498,

Did you try something like this:

tracking.on("seen", ()=>{
     sound.start();
});

tracking.on("notseen", ()=>{
     sound.pause();
});

att, Higão.

Cool.
What about in designer web tool?

1 Like