Hello. I found a way to play an online ogg video file by URL.
Code:
var url = "http://becunningandfulloftricks.files.wordpress.com/2013/04/hedgehog_in_the_fog.ogg";
function Start () {
yield WaitForSeconds(1);
var www = new WWW(url);
var movieTexture = www.movie;
while (!movieTexture.isReadyToPlay)
yield;
renderer.material.mainTexture = movieTexture;
audio.clip = movieTexture.audioClip;
movieTexture.Play();
audio.Play();
}
@script RequireComponent (AudioSource)
I was wondering if is possible to make it play an M3U8 Live Stream…
Please help