Handheld.PlayFullScreenMovie doesn't work on android

I am trying to stream videos from urls using the Handheld.PlayFullScreenMovie. I am currently using Unity 4.6.2, and before I updated, it was working fine on Android and ios. I had to go back and test it again today, and found that android is no loger streaming the video. I even used unity sample.ogg at “http://unity3d.com/files/docs/sample.ogg”.
The line below is the exact line in my code, which is not streaming the video. It will flash a black screen and nothing more.

Handheld.PlayFullScreenMovie(“http://unity3d.com/files/docs/sample.ogg”);

I’ve found the issue. Apparently, .ogg formats are not supported for streaming by all android devices. When I tested .mp4, it worked just fine, albiet, missing the audio. but that is a different problem for another day.