Streaming video as MovieTexture

Hi everyone, I’m trying to load a video as a MovieTexture using WWW but my script is not working. It shows this error: MoviePlayback::LoadMovieData got NULL

Here is my script, hope you guys can give me a hand with this:

public WWW wwwData;
public string url = "http://unity3d.com/files/docs/sample.ogg";
public GUITexture gt;
void Start() {
	wwwData = new WWW(url);
	gt = GetComponent<GUITexture>();
	gt.texture = wwwData.movie;
}
void Update() {
	MovieTexture m = gt.texture as MovieTexture;
	if (!m.isPlaying && m.isReadyToPlay)
		m.Play();

}

Regards,
Santhiago

Lots of people are experiencing the same issue.

It says here that it is fixed, but it is not…

Hi, @Santhiago, I have met the same problem, but after i built up my program, it worked OK. But I want it work in Editor. Can you share the way you used to make it work ?