/// <summary>
        /// Set new video subtitle file
        /// </summary>
        /// <param name="path">Path to the new video subtitle file</param>
        /// <returns></returns>
        public bool SetSubtitleFile(Uri path)
        {
            if (_playerObj != IntPtr.Zero)
            {
                return(_wrapper.ExpandedSpuSetFile(_playerObj, path.AbsolutePath) == 1);
            }

            return(false);
        }