Example #1
0
    private void PreRoll()
    {
        if (_movieHandle < 0)
        {
            return;
        }

        float vol = Volume;

        Volume = 0.0f;
        Play();
        Pause();
        AVProWindowsMediaPlugin.SeekFrames(_movieHandle, 0);
        Volume = vol;
    }