Hey guys,
I’m stuck on a couple very basic issues with scripting:
-
I need to make a new folder, but os.mkdir(“C:\Users\Public\testFolder”) doesnt work.
It’s returning nil…as far as I can tell this is what the documentation says to do -
I’m trying to use renoise.song(): render() but I keep getting the error: ‘invalid render filename parameter. expected a non empty path and name, a valid file_name within an existing path’
I couldn’t find any preexisting scripts that do these things as a reference so hopefully someone can set me straight
dirr = "C:\Users\Public\test"
os.mkdir(dirr)
function rendering_done_callback()
renoise.app():show_message("done")
end
filename = "C:\Users\Public\otherTest\testRender.wav"
options = {
0,
50,
44100,
16 ,
'default',
'high', }
renoise.song():render(options, filename, rendering_done_callback)