diff --git a/mpv.py b/mpv.py index b93c7ef..56bb47c 100644 --- a/mpv.py +++ b/mpv.py @@ -544,6 +544,9 @@ class MPV(object): def loadlist(self, playlist, mode='replace'): self.command('loadlist', playlist.encode(fs_enc), mode) + def playlist_append(self, filename, **options): + self.loadfile(self, filename, 'append', **options) + def playlist_clear(self): self.command('playlist_clear')