From 95436529c62718b434a5383f888a0f0ec7de3aa8 Mon Sep 17 00:00:00 2001 From: edde746 <86283021+edde746@users.noreply.github.com> Date: Fri, 26 Dec 2025 06:23:44 +0100 Subject: [PATCH] fix: observe speed property close #193 --- lib/mpv/player/player_native.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/mpv/player/player_native.dart b/lib/mpv/player/player_native.dart index 85874f31..e129ade3 100644 --- a/lib/mpv/player/player_native.dart +++ b/lib/mpv/player/player_native.dart @@ -354,6 +354,7 @@ class PlayerNative implements Player { await _observeProperty('track-list', (Platform.isAndroid || Platform.isWindows) ? 'string' : 'node'); await _observeProperty('eof-reached', 'flag'); await _observeProperty('volume', 'double'); + await _observeProperty('speed', 'double'); await _observeProperty('aid', 'string'); await _observeProperty('sid', 'string'); } catch (e) {