[DllImport("libvlc")]
        public static extern Int64 libvlc_media_player_get_length(MediaPlayerHandle mediaPlayerHandle);
    //获取时间
        public Int64 GetLength()
        {
            return libvlc_media_player_get_length(mediaPlayerHandle)/1000;
        }