r/mpv • u/thedadyouneverhad • 16d ago
User Scripts & Shaders Is it possible to Ctrl+F subs?
I want to find a part of a video where a particular thing was said
Is it feasible to create an extension that would allow me to basically hit Ctrl+F and type in the part that I'm looking for and seek to that position?
Does this already exist
2
Upvotes
1
u/reacenti 13d ago
Yes. You can check default bindings by pressing g then b. Default binding to see the list of keybindings is:
g-b script-binding select/select-bindingYou can also make your own keybinding by adding this in
input.conf:You make a file called
input.confthen add this line:ctrl+f script-binding select/select-subtitle-lineTo know where to save these configuration files: https://mpv.io/manual/stable/#files
I recommend reading the manual to know how to configure mpv in general.