Future<void> jumpForward({int seconds = 10}) async { _checkDisposed(); final current = await _player.stream.position.first; await seek(current + Duration(seconds: seconds)); }