is Handheld.PlayFullScreenMovie a pro feature in unity?

hello, Handheld.PlayFullScreenMovie is this a pro feature in unity. I trying to play video in android.
I did as mentioned in the documentry from creating StreamingAssets folder to everything yet its not working.

heres my code.

public class VideoPLay : MonoBehaviour {

public string path = "Awake and Start - Unity Official Tutorials.mp4";
// Use this for initialization
void Start () {
	Invoke ("startPlay", 0.1f);
}

void startPlay()
{
	Debug.Log ("start");
	Handheld.PlayFullScreenMovie (path,Color.blue,FullScreenMovieControlMode.Full);
	Debug.Log ("end");
}

}

thanks in advance.

Of course not.

I put the movie at here:

DirectoryInfo videoFile = new DirectoryInfo( “file://” + Application.persistentDataPath + “/” + fileName +“.”+ fileType);

Handheld.PlayFullScreenMovie(videoFile.ToString(), Color.black, FullScreenMovieControlMode.Full, FullScreenMovieScalingMode.AspectFill);

yield return new WaitForEndOfFrame();