Results 40 comments of Jonnie

In the current version you cannot pass them since configs do not support lua tables, only strings. I could update it like in playlistmanager where the setting is a json...

Good suggestion. This is possible if the script is refactored to use assdraw instead of the osd-message. I'll implement it when I get some free time.

One other possible solution is to use some prefix for every item like this: ``` ○ ▷ first_file.mp4 ● ▷ second_file.mp4 ○ 🗁 cat_videos ``` That probably looks very ugly...

Quick fix 6a0d855ded6ed438e595cdaedff007f46849da8f ``` ○ file.mp4 ● file2.mp4 ○ file3.mp4 ○ file4.mp4 ``` Keeping issue open for further improvements.

This seems very complex. Did I understand it correctly that if you have no files open and you queue 1, 4, 2 and 5 with navigator you want autoload to...

Ok, so it seems it's out of my control since autoload sorts the playlist after you start playing any file. I think some kind of combined script for would be...

Add this in `input.conf` `KEY script-message playlistmanager shuffle` to suffle at runtime. Although there is no function to reverse it. What use case do you have to return to original?

`playlist-unshuffle` cool I didn't know about this :+1: I feel like it's a bit waste to re-implement that for this script. I think maybe this script shouldn't include a shuffle...

It would be trivial in Lua 5.3. Unfortunately mpv doesn't support it. Easiest solution would probably be to rewrite this whole script in JS 🤷‍♂️

input.conf `q quit-watch-later` or mpv.conf `save-position-on-quit` Second one has the benefit of working even if player is closed from gui/other than keybind. Edit: oh I see you re-ordered playlist. For...