![]() |
|
script.module.urlresolver development - Printable Version +- XBMC Community Forum (http://forum.xbmc.org) +-- Forum: Development (/forumdisplay.php?fid=32) +--- Forum: Python Add-on Development (/forumdisplay.php?fid=26) +--- Thread: script.module.urlresolver development (/showthread.php?tid=105707) |
- Lynx187 - 2012-01-03 15:09 Yes, this is only the first part of the link. If you use e.g. Wireshark you will see that the videolink is much longer. A solution written in python is here: https://github.com/Lynx187/xbmc-urlresolver/blob/master/script.module.urlresolver/lib/urlresolver/plugins/videobb.py How to decrypt what i found on rapidleech. - dirtylion - 2012-01-03 15:42 Lynx187 Wrote:Yes, this is only the first part of the link. If you use e.g. Wireshark you will see that the videolink is much longer. thanky you
- Harry Muscle - 2012-01-23 21:27 I noticed there hasn't been any activity on t0mm0's github repository for this project since November 3, so I was just wondering if this project is still active and being maintained or if it has been abandoned? I was hoping to use it for my latest project, but if it's no longer being maintained I might have to rethink that. Thanks for any input. Harry - Eldorado - 2012-01-23 23:15 Harry Muscle Wrote:I noticed there hasn't been any activity on t0mm0's github repository for this project since November 3, so I was just wondering if this project is still active and being maintained or if it has been abandoned? I was hoping to use it for my latest project, but if it's no longer being maintained I might have to rethink that. The common library and urlresolver are pretty much ready, if t0mm0 doesn't come back anytime soon I think it might be best that we take it upon ourselves to try and get them into the official repo so they can be used by all - newatv2user - 2012-01-24 18:54 Never knew this thing existed. So far I've seen couple of addon author's own implementation of such an idea. Ajay had snapvideos on his addons. Pretty sure I saw someone else's library too. I'm even working on my own implementation based on jbel's work on documentaryheaven. If I knew about this one, I wouldn't have had to. - Eldorado - 2012-01-26 15:59 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 00:13 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 00:26 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. 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 19:32 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
- k_zeon - 2012-02-15 23:06 dirtylion Wrote:someone know a way to get the video link from http://moviezer.com/ ? 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... |