设置播放位置
Future<void> seekTo(Duration position) async { try { await _audioPlayer.seek(position); } catch (e) { print('设置播放位置失败: $e'); } }