mirror of
https://github.com/mpv-player/mpv
synced 2025-02-08 16:07:16 +00:00
These properties contain the current subtitle's start and end times. Can be useful to cut sample audio through the scripting interface.
8 lines
270 B
JavaScript
8 lines
270 B
JavaScript
function subtimes() {
|
|
mp.msg.info("sub-start: " + mp.get_property_number("sub-start"));
|
|
mp.msg.info("sub-end: " + mp.get_property_number("sub-end"));
|
|
mp.msg.info("sub-text: " + mp.get_property_native("sub-text"));
|
|
}
|
|
|
|
mp.add_key_binding("t", "subtimes", subtimes);
|