3

If I'm playing a list of files in mpv (just as a directory), how do I toggle on/off its repeating the playing of the list/directory?

I know I can specify this when I launch mpv with --loop-playlist, which is great, but I want to know how to do it within the running program, too.

Shift + L does the current file only, which is also good to know how to do, but it's not the same thing.

Destroy666
  • 12,350

1 Answers1

3

Most mpv switches are also commands you can use within keybindings. E.g.:

Alt+l cycle loop-playlist

would alternate between on/force/off status of that switch as cycle goes through all possible values. Add that to your input.conf file. Or you could alternatively use:

Alt+l cycle-values loop-playlist inf no

to only alternate between on/off status.

Destroy666
  • 12,350