summaryrefslogtreecommitdiffstats
path: root/test/subtimes.js
blob: be6940ad3b13f523e695a2a271c4cdc0c17470c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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);

function secondary_subtimes() {
  mp.msg.info("secondary-sub-start: " + mp.get_property_number("secondary-sub-start"));
  mp.msg.info("secondary-sub-end: " + mp.get_property_number("secondary-sub-end"));
  mp.msg.info("secondary-sub-text: " + mp.get_property_native("secondary-sub-text"));
}

mp.add_key_binding("T", "secondary_subtimes", secondary_subtimes);