Video-Frame (not sample)
[ardour.git] / scripts / _export_tracks.lua
1 ardour { ["type"] = "Snippet", name = "Export Track XML" }
2
3 function factory () return function ()
4         local rlp = ARDOUR.RouteListPtr ()
5         local sel = Editor:get_selection ()
6         for r in sel.tracks:routelist ():iter () do
7                 rlp:push_back (r)
8         end
9         print (Session:export_track_state (rlp, "/tmp/rexport"))
10 end end