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
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. .
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
The text was updated successfully, but these errors were encountered: