Code: Select all
function descriptor()
return {
title = "VLC Dummy Extension",
capabilities = { "playing-listener" }
}
end
function activate()
end
function deactivate()
end
function meta_changed()
end
function playing_changed()
vlc.msg.dbg("[Dummy] Status: " .. vlc.playlist.status())
end
I can see it loads correctly in the logs:
Code: Select all
lua debug: Deactivating 'VLC Dummy Extension'
lua debug: Reactivating extension VLC Dummy Extension
Is this a known feature descrepancy between Windows and MacOS? I've searched around and can't find anyone else who's had similar problems.
I'm on VLC version 3.0.11.1 on the Mac.