mirror of
https://github.com/mpv-player/mpv
synced 2024-12-21 06:14:32 +00:00
cb32ad68f3
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);
|