private async void tbSpeed_Scroll()
        {
            if (_player == null)
            {
                return;
            }

            await _player.Rate_SetAsync(tbSpeed.Value / 10.0);
        }