From 3ef4ecf765820cbb34921a3bc2893e3d2e8c440a Mon Sep 17 00:00:00 2001 From: Peter Kuchar Date: Sat, 11 Jul 2020 22:45:58 +0200 Subject: update README with inserting subtitles --- README.rst | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.rst b/README.rst index 2cf347c..0c9ff3d 100644 --- a/README.rst +++ b/README.rst @@ -161,6 +161,25 @@ Directly feeding mpv data from python player.play('python://foo') player.wait_for_playback() +Inserting subtitles +................... + +The "core-idle" property tells you whether video is actually playing or not +(player core is available for further commands) + +.. code:: python + + #!/usr/bin/env python3 + import mpv + from operator import not_ + + player = mpv.MPV(log_handler=print, input_default_bindings=True, input_vo_keyboard=True) + player.play(video) + player.wait_for_property('core-idle', not_) + player.sub_add(subs) + player.wait_for_playback() + player.terminate() + Using MPV's built-in GUI ........................ -- cgit