http://nullnyanvapwq3ou4gbc62y26uiggj5ztbur7mzxrnjhfwxu43jbxtqd.onion/b/7395
cut_fragment.lua local start_pos = nil function toggle_mark () local pos = mp . get_property_number ( 'time-pos' ) if start_pos then local end_pos = pos local cut_fragment_fmt = 'Cut fragment: %s - %s' if start_pos == end_pos then return print_msg ( 'Cut fragment is empty' ) end if start_pos > end_pos then start_pos , end_pos = end_pos , start_pos end print_msg ( cut_fragment_fmt : format ( convert_time ( start_pos ), convert_time ( end_pos )) ) cut ( start_pos , end_pos ) start_pos = nil else local...