You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using the chrome plugin to open web streams in vlc. But all streams are named master.m3u8 or random-numbers.mp4
So I tried inspecting the plugin and figured out how the streams get opened.
Native.prototype.exec = function (command, args, callback = function () {}) { args[1] = ' :meta-title="I bims da"'; console.log(command, args, callback); this.callback = function (res) { callback(res); }; this.channel.postMessage({ cmd: "exec", command, arguments: args, }); }; command is the path to vlc player and args is the stream url.
Via commandline it's easy to set the :meta-title="Custom Title" but when I try it in script it doesn't work.
So how I can launch VLC with arguments?
The text was updated successfully, but these errors were encountered:
I'm using the chrome plugin to open web streams in vlc. But all streams are named master.m3u8 or random-numbers.mp4
So I tried inspecting the plugin and figured out how the streams get opened.
Native.prototype.exec = function (command, args, callback = function () {}) { args[1] = ' :meta-title="I bims da"'; console.log(command, args, callback); this.callback = function (res) { callback(res); }; this.channel.postMessage({ cmd: "exec", command, arguments: args, }); };
command is the path to vlc player and args is the stream url.
Via commandline it's easy to set the :meta-title="Custom Title" but when I try it in script it doesn't work.
So how I can launch VLC with arguments?
The text was updated successfully, but these errors were encountered: