I am completely new to VLC plugins and don't have mutch experience using lua.
That beeing said, I did manage to create a plugin for my purposes exept for one detail.
I would like to save some data to a CSV file.
What ive tried so far is the following:
Code: Select all
function SaveConfirm()
local f = vlc.io.open("C:/hello.txt", 'w')
f:write("Hello, world!")
f:close()
end
Its just that nothing is happening, and I also don't have a clue how to get error messages.
Any suggestions?
Also, it would be amazing if you could show a 'safefiledialog' so users can select a place to save their file. Any idea if thats possible?