Guido Cella

Results 152 comments of Guido Cella
trafficstars

`change-list toggle` is documented to toggle a single item but `vf toggle` is documented to accept several filters, so it is unclear if this was supposed to work.

`--script` doesn't work at runtime. This can be done with ``` profile-cond=foo input-commands=load-script C:\foo\bar.lua ``` But this will load a new instance of the script each time the profile condition...

Yes, that should work. Check the console log.

This will load the script once: ``` [foo] profile-cond=cond and not p['user-data/foo-loaded'] input-commands=load-script foo.lua; no-osd set user-data/foo-loaded 1 ```

> Well, I see your point, but there are some cases (example: subtitles from https://animetosho.org/), where if you download a batch of subtitles they are scattered each episode has it's...

Just set `sub-file-paths` to whatever you want. ```lua mp.add_hook('on_load', 10, function () mp.set_property('sub-file-paths', 'Subs;Subs/' .. mp.get_property('filename/no-ext')) end) ```