plugin.video.pulsar
plugin.video.pulsar copied to clipboard
feature request: configurable streaming engine
Hi, Would it be possible to have an option within pulsar to redirect its magnet links to other magnet players ? I strongly believe that xbmctorrent is faster and parses names better then pulsar(same developer so no harm, right ?:). would be great if i could have like radio button or any other menu with other addons to play with. here's a little JS snippet i dug up that has the function with URIs to redirect into the other magnet payers. .
getPluginPath: function(url, callback) { if (localStorage['magnetAddOn'] == 'pulsar') { callback('plugin://plugin.video.pulsar/play?uri=' + encodeURIComponent(url)); } else if (localStorage['magnetAddOn'] == 'kmediatorrent') { callback('plugin://plugin.video.kmediatorrent/play/' + encodeURIComponent(url)); } else if (localStorage['magnetAddOn'] == 'torrenter') { callback('plugin://plugin.video.torrenter/?action=playSTRM&url=' + encodeURIComponent(url)); } else { callback('plugin://plugin.video.xbmctorrent/play/' + encodeURIComponent(url)); } } };
Thanks ! Roy