Kodi Community Forum
script.module.urlresolver development - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32)
+--- Forum: Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=26)
+--- Thread: script.module.urlresolver development (/showthread.php?tid=105707)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28


- Eldorado - 2012-01-26

Next week I'm going to try to get this plus the t0mm0 common library moved into the official repository so we can all start using it - and ensure we are all using the same most current version

A bunch of addons popping up now including these are part of their installs, so need to make sure everyone is at the same versions


Is this ready to use - coolkris - 2012-01-27

How can I use it. I am new and trying to write a plugin, this appears to be a wonderful script so that I can concentrate on pages & links.

Please let me know how to use.


- rogerthis - 2012-01-27

coolkris Wrote:How can I use it. I am new and trying to write a plugin, this appears to be a wonderful script so that I can concentrate on pages & links.

Please let me know how to use.

The howto guide on it is here http://t0mm0.github.com/xbmc-urlresolver/

You will find Quick Silver Screen and Channel1 addons using it over at http://www.xbmchub.info/


- dirtylion - 2012-02-15

someone know a way to get the video link from http://moviezer.com/ ?

http://moviezer.com/video/ "movieid"
http://moviezer.com/e/ "movieid" is for embed

jwplayer("container").setup({
flashplayer: "/media/swf/player/player.swf",
file: ""movieid"/RrP0daaMpv.flv",

but i don't know how to build the final link Sad


- k_zeon - 2012-02-15

dirtylion Wrote:someone know a way to get the video link from http://moviezer.com/ ?

http://moviezer.com/video/ "movieid"
http://moviezer.com/e/ "movieid" is for embed

jwplayer("container").setup({
flashplayer: "/media/swf/player/player.swf",
file: ""movieid"/RrP0daaMpv.flv",

but i don't know how to build the final link Sad

Just tried and this works in browser.
http://moviezer.com/video/RrP0daaMpv
http://moviezer.com/e/RrP0daaMpv

But if you were to use URLResolver Module , you would need to make a resolver to the direct file to be played.

And that is what i am trying to learn. How to make resolvers...


- dirtylion - 2012-02-15

yes, you need to find the direct flv link now

if you take a look at the source html text from http://moviezer.com/video/RrP0daaMpv you will find:

<script type="text/javascript">
jwplayer("container").setup({
flashplayer: "/media/swf/player/player.swf",
file: "5663f0200c/RrP0daaMpv.flv",
height: 353,
provider: "rtmp",
streamer: "rtmp://stream.cdn.1.moviezer.com/cfx/st",
width: 629,
skin: '/media/swf/player/skins/moviezer.zip',
logo: {
file: '/media/images/logo_player.png',
hide: false,
position: 'top-left',
link: 'http://moviezer.com/'
}
});
</script>
</div>
</div>

there is now a trick to build the direct link.. but i don't know how Sad


- newatv2user - 2012-02-16

dirtylion Wrote:there is now a trick to build the direct link.. but i don't know how Sad

Now just format it so the librtmp understands it:

librtmp man page

Also you could look at one of the xml for livestreams addon so you get an idea.


RE: script.module.urlresolver development - Eldorado - 2012-05-16

Just want to update this thread to note that UrlResolver has been moved into the XBMC repository for all to use

t0mm0 had written some very good documentation here - http://t0mm0.github.com/xbmc-urlresolver/modules/urlresolver/

I'm not sure of the correct process to get a xbmc wiki entry created, so hopefully this gets someones attention who can do so Smile


RE: script.module.urlresolver development - chmee - 2012-07-18

Sorry, what did happen to this Project. It seems, after getting into official repo, it lost his speed.


RE: script.module.urlresolver development - Eldorado - 2012-07-19

Was there something more you wanted to be done with it?

There are some updates needed for a couple of the plugins, but otherwise it's working good


RE: script.module.urlresolver development - ilomambo - 2013-01-05

Seems to be that more than one plugin needs update (that I know of : novamov, putlocker)
Many times the plugin reports file not longer exists, when in fact it does exist, or just fails to resolve.
Some new plugins are needed, like VideoSlasher

I guess most of the plugins are working fine, otherwise we would have seen some complains in the las 6 months.
But I've seen some other addon try to cope with the plugin problems by actually copying the whole urlresolver addon and modifying plugins.
I think once or twice a year it is in place to release an update, so we will not get to the point where it is broken.

Is t0mm0 still mantaining this addon?


Re: script.module.urlresolver development - Martijn - 2013-01-05

It just got updated yesterday


RE: script.module.urlresolver development - ilomambo - 2013-01-05

(2013-01-05, 18:30)Martijn Wrote: It just got updated yesterday

You are right! I just got it a few hours ago. What a coincidence! (v1.0.5 right?)
It is a pitty that VideoSlasher is still not supported and NovaMov says the file is not there, when I know I can access it from the regular site through firefox, using the same exact link. I hope not to have to wait six more months for a fix




RE: script.module.urlresolver development - Eldorado - 2013-01-05

Well you know you could always pitch in and send me some fixes as well as a VideoSlasher resolver

Or else you will be waiting 6 months for a fix... which btw no one else has reported these problems

https://github.com/Eldorados/script.module.urlresolver

Latest version:
Eden - 1.0.4
Frodo - 2.0.4






RE: script.module.urlresolver development - ilomambo - 2013-01-06

@Eldorado

I am not afraid of the challenge, though my knowledge of python is very limited. Mainly copying other people solutions and a little tinkering.
I will try to have a look at some ad-hoc solutions I've seen around, and if they work I will be happy to send you the patch/resolver.
I can also provide the problematic links.
Would you like all these as a PM or posted here in this post?