Page 1 of 1

VLC Lua Docs

Posted: 16 Nov 2020 07:11
by ProtoSahara
I recently spent a bit of time designing a VLC extension and wrote some simple documentation to help me more easily keep track of which Lua modules did what. I've worked on it a bit since then, added some markdown styling and uploaded it to my Github site.

Here are the modules I've documented: https://verghost.com/vlc-lua-docs/m/
Also, here's the Github repo: https://github.com/verghost/vlc-lua-docs

Re: VLC Lua Docs

Posted: 31 Dec 2020 09:39
by Kishorereddy31
Hey, I want to inspect all the objects in the object module for possible information about the silence in audio for an extension I am trying to make. So can you tell me about the structure of the remaining objects, the docs only talk about vout object.

Re: VLC Lua Docs

Posted: 09 Feb 2021 17:40
by ProtoSahara
I think that aout is the main audio object, but I've had issues with access to the object from time to time.
The objects module and the variables have been really weird for me, specifically the variables which have a few strange quirks. My best advice is to look into the source code (https://code.videolan.org/videolan/vlc) using the search functionality, which is how I found some of the object definitions. The objects module just provides an API to access available objects, but the objects themselves seem to be provided as blackboxes and so they are not iterable (as far as I know).

Re: VLC Lua Docs

Posted: 18 Aug 2021 02:38
by ProtoSahara
BTW the docs have moved to: https://vlc.verg.ca
The links in the previous post now 404 :(