- Home /
Question by
maxbattle84 · Jun 06, 2019 at 09:20 AM ·
videocertificate
How to use VideoPlayer component to reproduce a videoclip from an https server?
public IEnumerator Play(string urlVideo)
{
videoPlayer.url = urlVideo;
videoPlayer.Play();
yield return null;
}
I need to stream the clip from an URL, It works good using HTTP, but it doesn't with HTTPS. The server notifies a certification error. All other calls using UnityWebRequest work correctly, sending them the certificate.
Comment
Hey friend, did you found an answer to this? Could you help me figure it out? I have the same issue :c
Hi, I solved the problem, but I don't remember what it was exactly. The code I used is the same as above, so I think it was a certificate error. Let me know if you find a solution, or try to give me more details otherwise.