Page 1 of 1

libVLC lua plugins license, like YouTube support (commercial use)

Posted: 05 Oct 2018 23:42
by user456
https://github.com/videolan/vlc/blob/ma ... outube.lua

LibVLC can play YouTube if you have lua script for this. Are such scripts can be used in closed-source app?

Re: libVLC lua plugins license, like YouTube support (commercial use)

Posted: 06 Oct 2018 08:25
by RĂ©mi Denis-Courmont
No.

Re: libVLC lua plugins license, like YouTube support (commercial use)

Posted: 04 Nov 2018 14:35
by user456
Mb then implement dynamic lua files connection

For example user installs closed-source app, then he finds in this app option to open something like file manager and look for .lua files on his phone's sdcard (storage) and dynamically use them for playing YouTube and so on

Code: Select all

ArrayList<String> options = new ArrayList<>(); options.add("--lua-plugins-path"); options.add("/sdcard/emulated/0/lua"); ... mLibVLC = new LibVLC(App.getAppContext(), options);
Mb such parameter?