Ejemplo n.º 1
0
    public void Play(string videoPath)
    {
        if (!initialized)
        {
            Init();
        }

        PS4VideoPlayer.PlayParams pp = new PS4VideoPlayer.PlayParams();
        pp.loopSetting = PS4VideoPlayer.Looping.None;
        pp.volume      = 0.0f;
        video.PlayVideoEx(videoPath, pp);
        return;
    }