Expose PluginInfo bindings (eg plugin-type, unique id, etc)
[ardour.git] / scripts / s_replaceplugin.lua
index 6ec82768b762e744888772b122089a59100b0aa9..4cef07c7babb4631cc411c1146a611055e844aa2 100644 (file)
@@ -2,7 +2,7 @@ ardour { ["type"] = "Snippet", name = "Replace Plugin" }
 
 function factory () return function ()
 
-       route = Session:route_by_remote_id(1)
+       route = Session:get_remote_nth_route(1)
        old = route:nth_plugin(0)
        new = ARDOUR.LuaAPI.new_plugin(Session, "http://gareus.org/oss/lv2/fil4#stereo", ARDOUR.PluginType.LV2, "");
        route:replace_processor (old, new, nil)