I have a video in StreamingAssets its working fine in firefox and other browsers but not playing in chrome only
GameObject cam = GameObject.Find("Main Camera");
videoPlayer = cam.AddComponent<UnityEngine.Video.VideoPlayer>();
// Obtain the location of the video clip.
videoPlayer.url = System.IO.Path.Combine(Application.streamingAssetsPath, "avc_dj.mp4");
videoPlayer.Play();
here is my code please help me out what is the problem