public void Play()
        {
            int ret = VLCLibrary.Instance.media_player_play(Handle);

            if (ret == -1)
            {
                throw new VlcException();
            }

            playing = true;
            paused  = false;

            while (VLCLibrary.Instance.media_player_is_playing(Handle) < 1)
            {
                System.Threading.Thread.Sleep(1 * 300);
            }
            Media.LoadMediaMetaData();
            loadAudioOutputs();
            loadAspectRatios();
        }