From e8a77e5279c2682a1554ba8fd47b99c6bf6f4d52 Mon Sep 17 00:00:00 2001 From: Dudemanguy Date: Thu, 10 Aug 2023 23:27:28 -0500 Subject: player: add playlist-path properties A bit of a long standing pain with scripting is that when opening a file that gets interpreted as a playlist (like an m3u), the original path of the file gets thrown away later. Workarounds basically consist of getting the filename before mpv expands the path, but that's not really reliable. Instead of throwing it away, save the original playlist path by copying to the playlist entries when applicable (demuxer playlist and the playlist option). Then expose these as properties: playlist-path for the currently playing entry and playlist/N/playlist-path for each specific entry. Closes #8508, #7605. --- common/playlist.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'common/playlist.c') diff --git a/common/playlist.c b/common/playlist.c index ad5253bdd5..1ba8a58f32 100644 --- a/common/playlist.c +++ b/common/playlist.c @@ -142,6 +142,14 @@ void playlist_add_file(struct playlist *pl, const char *filename) playlist_add(pl, playlist_entry_new(filename)); } +void playlist_populate_playlist_path(struct playlist *pl, const char *path) +{ + for (int n = 0; n < pl->num_entries; n++) { + struct playlist_entry *e = pl->entries[n]; + e->playlist_path = talloc_strdup(e, path); + } +} + void playlist_shuffle(struct playlist *pl) { for (int n = 0; n < pl->num_entries; n++) -- cgit v1.2.3