mrfragger
mrfragger
take out `bookmarker.lua` and replace with `locatefile.lua` (thx a ton for the script) ``` Copy locatefile.lua script to (linux/macos) ~/.config/mpv/scripts/bookmarker.lua (win) %APPDATA%\mpv\scripts\bookmarker.lua. Open key configuration file at (linux/macos) ~/.config/mpv/input.conf (win)...
I simply commented out these two lines and no longer get double results when searching subtitles with subtitle-search.lua in visualizer.lua --mp.observe_property("current-tracks/audio", "native", visualizer_hook) --mp.observe_property("current-tracks/video", "native", visualizer_hook) https://github.com/zenwarr/mpv-config/blob/master/scripts/subtitle-search.lua I'm sure it's...
The default shortcut key is _ (underscore) to toggle video on/off. Unfortunately I have to do it in order to be able toload subtitles for images. This way can easily...
Not sure if this is possible at all or maybe I'm on the wrong path. ffmpeg -i input.mp4 -vf lut3d='/Users/username/.config/mpv/lut/abigailgonzalez/abigailgonzalez blade runner.cube' -c:v libx265 output.mp4 this will apply any lut3d...
## mpv version and platform (write OS and version) Mac OS 14 Sonoma mpv 0.39 ``` webm.lua line 1735 append_property(ret, "sub-ass-force-style") change to append_property(ret, "sub-ass-style-overrides") to avoid the deprecating message...
I used sub-voracious.lua a while back and loved the listening mode which could be toggled. It only does srt and not vtt though. sub-pause also has "listening mode" if you...
perhaps this was the old way..not sure when it changed Ctrl+n: activate skipping (toggle) Ctrl+Alt+n: toggle between speedup and seek skip (switch-mode) should be Ctrl+n: Non-Subtitle skip (toggle) Ctrl+Alt+n: Seek...
Save a bookmark with pos = 0 If you save a bookmark for a live stream it won't resume as it's trying to play whatever timestamp the stream was at....
``` function makeBookmark(bname) local chaptername = mp.get_property("chapter-metadata/title") or "" if mp.get_property("path") ~= nil then if bname == nil then bname = mp.get_property("media-title") .. " #" .. chaptername .. " @...
Due to save-on-quit=yes position it'll revert to the saved time ...if you load the bookmark again then it'll go to the bookmark position. If there was a way to "loadfile",...