"We offer new support options and therefor the forums are now in read-only mode! Please check out our Support Center for more information." - Vuforia Engine Team

Video Playback - SetVolume is not function properly if the video is start from a particular position

Video Playback - SetVolume is not function properly if the video is start from a particular position

 

For example, 

// not working, sound still plays

video.VideoPlayer.Play(false, video.VideoPlayer.GetCurrentPosition());

video.VideoPlayer.SetVolume(0);

  // working, sound is muted

video.VideoPlayer.Play(false, 0);

video.VideoPlayer.SetVolume(0);

 Is it a bug on the vuforia video player library? Thanks!