Thank's for your reply. I'm going to be mad :D Whith a little dump function on the vlc object, I've the following results: from SD: ["sd"] = Table(4)= { ["add_node"] = function: 000001BD5353E430, ["add_item"] = function: 000001BD5353E610, ["remove_item"] = fun...
vlc.sd.add("lua{sd='TTTTT'}") main debug: looking for services_discovery module matching "lua": 9 candidates main debug: set config option: lua-sd to TTTTT lua error: Couldn't find lua services discovery script "TTTTT". main debug: no services_discovery modules matched...
Hello ! I need to add rtsp streams on a custom SD on the left panel under "Podcasts", "Jamendo Selections", "Icecast Radio Directory" from an extension (not a sd script !) I've tried : t = vlc.sd.add('Test') vlc.msg.dbg(t) But il fails :evil: logs : main debug: looking ...
It seems that the web server is the problem ! HTTP headers : HTTP/1.1 200 OK Server: nginx Date: Thu, 08 Apr 2021 02:45:15 GMT Content-Type: text/plain; charset=utf-8 Transfer-Encoding: chunked Connection: close 50f #EXTM3U #EXTINF:0,1 50f ??? WTF ?? I think it's why vlc.stream() can't parse the pla...
OK...... The documentation is not up to date... vlc.net.poll is available for windows ! I tried -- 3. Send GET request local http_request = "GET "..path.." HTTP/1.1\r\n".. "Host: "..host.."\r\n".. "\r\n" local count = vlc.net.send(tcp, http_request) ...
Here is my extension, I want to get the html index code from www.google.fr : Everything works fine, but not data retreiving with vlc.net.recv() function descriptor() return { title = "Net Test" } end function activate() -- 1. Variable from webpage to fetch host = "www.google.fr" ...
There is a hack : https://www.triades.net/9-blog/20-plugin-freebox-pour-vlc-3-0-x.html wich provide an adapted script, but the playlist retrieving is disabled ! It's a static list. You can see it a the end of : http://www.triades.net/downloads/freebox-static.lua And in this static file, the TNT stre...
The http://mafreebox.freebox.fr/freeboxtv/playlist.m3u link does not work for me. The old "freebox.lua" script: https://code.videolan.org/videolan/vlc-2.0/-/blob/master/share/lua/sd/freebox.lua The old freebox.lua script doesn't work anymore for 2 reasons : - vlc.stream() is broken - logo...
The link works only if your ISP is "Free ('www.free.fr)" in France ! This is a special url wich returns iptv (and TNT streams if the TV player is connected to an antenna) urls to watch TV on PC. You've just to open a network stream http://mafreebox.freebox.fr/freeboxtv/playlist.m3u and her...
Hello ! More informations about my stream problem : function main local m3ustream = vlc.stream('http://mafreebox.freebox.fr/freeboxtv/playlist.m3u') -- NOT WORKING ??? if m3ustream then vlc.msg.dbg("stream OK") else vlc.msg.dbg("stream KO") end local m3u_line = m3ustream:readline...
Here more informations: -- Extension description function descriptor() return { title = "Test" } end function main() local conn = vlc.net.connect_tcp("http://wwww.google.fr", 80) if conn then vlc.msg.info("Conn OK") else vlc.msg.info("Conn KO") end end Log: lu...
Here is my script : function descriptor() return { title = "Test" } end function main() vlc.msg.info("Message de test !") end It appears on the VLC interface, I click on "Test", it seems to do nothing. I go to Tools->Messages (CTRL-M) => Empty !! Any ideas ? Thx