summaryrefslogtreecommitdiff
path: root/share/scripts/new_playlist.lua
diff options
context:
space:
mode:
Diffstat (limited to 'share/scripts/new_playlist.lua')
-rw-r--r--share/scripts/new_playlist.lua17
1 files changed, 17 insertions, 0 deletions
diff --git a/share/scripts/new_playlist.lua b/share/scripts/new_playlist.lua
new file mode 100644
index 0000000000..54563cd6a5
--- /dev/null
+++ b/share/scripts/new_playlist.lua
@@ -0,0 +1,17 @@
+ardour {
+ ["type"] = "EditorAction",
+ name = "New Playlist",
+ license = "MIT",
+ author = "Ardour Lua Taskforce",
+ description = [[Prompts and builds a new playlist for every track in the session.]]
+}
+
+function factory () return function ()
+
+ for r in Session:get_tracks():iter() do
+ local rtav = Editor:rtav_from_route(r) -- lookup RTAV
+ Editor:new_playlists(rtav:to_timeaxisview())
+ end
+
+collectgarbage()
+end end