Kodi Community Forum
Release PlayIt service : Play hosted video url remotely on XBMC - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27)
+---- Forum: Service Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=152)
+---- Thread: Release PlayIt service : Play hosted video url remotely on XBMC (/showthread.php?tid=118251)

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 29 30 31


RE: PlayIt service : Play hosted video url remotely on XBMC - ajay - 2013-10-17

(2013-10-16, 23:37)coolstud Wrote:
(2013-10-08, 13:29)ajay Wrote:
(2013-09-26, 01:17)coolstud Wrote: Hi AJ

Please could you integrate all the feature into the toolbarbutton in Firefox same as Chrome extension.

Hope to hear from you!

Many thanks!

Done, download latest add-on version 1.1.1 that is available at
https://addons.mozilla.org/en-US/firefox/addon/playit-on-xbmc/versions/?page=1#version-1.1.1

its under review with Firefox team, so wont be updated automatically.


Hi AJ

Thank you for making the new toolbar button, its still not the same as Chrome add on features as listed below.

1. Remove drop marker and add right click to get toolbar button context menu.
2. Toolbar button is not movable, would like the option to move it anywhere on the toolbar or add-on bar like the previous versions.
3. Also could you add "Options" to toolbar button context menu which would allow you set IP/Port numbers then save and exit it.

Separate request can you add http://mega.co.nz to playit because if you install MEGA Addon you can stream movies with MEGA links.

Hi,

1. Its not possible to get toolbar menu using right click, I see drop marker button is better option because its second button,
2. Agreed, button is not movable, I will fix it in next release of addon.
3. Not possible to add options to toolbar button context menu. Chrome has this options item available by default, handled by its system not by me. Firefox works in different way.

THanks,


RE: PlayIt service : Play hosted video url remotely on XBMC - coolstud - 2013-10-17

(2013-10-17, 08:05)ajay Wrote:
(2013-10-16, 23:37)coolstud Wrote:
(2013-10-08, 13:29)ajay Wrote: Done, download latest add-on version 1.1.1 that is available at
https://addons.mozilla.org/en-US/firefox/addon/playit-on-xbmc/versions/?page=1#version-1.1.1

its under review with Firefox team, so wont be updated automatically.


Hi AJ

Thank you for making the new toolbar button, its still not the same as Chrome add on features as listed below.

1. Remove drop marker and add right click to get toolbar button context menu.
2. Toolbar button is not movable, would like the option to move it anywhere on the toolbar or add-on bar like the previous versions.
3. Also could you add "Options" to toolbar button context menu which would allow you set IP/Port numbers then save and exit it.

Separate request can you add http://mega.co.nz to playit because if you install MEGA Addon you can stream movies with MEGA links.

Hi,

1. Its not possible to get toolbar menu using right click, I see drop marker button is better option because its second button,
2. Agreed, button is not movable, I will fix it in next release of addon.
3. Not possible to add options to toolbar button context menu. Chrome has this options item available by default, handled by its system not by me. Firefox works in different way.

THanks,

Hi Ajay

Some no restart addons have right click and options/preferences in Firefox e.g adblock plus (personally don't like drop markers takes up space on toolbar makes it look big next to other buttons).

Also its to many clicks for me to change IP Address as I am sending links to my raspberry pi's in the front room and back room and also xbmc on my laptop, would appreciate it if you can do anything to make it easier as the first version of Playit addon was simpler.

Many thanks

Sanjay


RE: PlayIt service : Play hosted video url remotely on XBMC - NordishByNature - 2013-10-22

Hello AJ!

I found your Firefox Extension very useful! It works great!

I added a urlresolver Plugin for castamp:
https://github.com/Eldorados/script.module.urlresolver/pull/117


However your general URLResolverDelegator breaks my rtmp link bacause it add the video link with addUserAgent=True by default.

That breaks every rtmp link from URLresolver I guess.

This is the code:

Code:
video_info.add_video_link(VIDEO_QUAL_SD, stream_url)
in /script.module.turtlex/lib/snapvideo/UrlResolverDelegator.py

Code:
def add_video_link(self, video_qual, video_link, addUserAgent=True, addReferer=False, refererUrl=None):
        if addUserAgent:
            video_link = video_link.replace(' ', '%20') + '|' + HttpUtils.getUserAgentForXBMCPlay()
            if addReferer and refererUrl is not None:
                video_link = video_link + '&Referer=' + refererUrl
        self.__video_links[video_qual] = video_link

What do you think? Worth a fix?

Cheers mablae


PlayIt service : Play hosted video url remotely on XBMC - ajay - 2013-10-22

(2013-10-22, 01:19)NordishByNature Wrote: Hello AJ!

I found your Firefox Extension very useful! It works great!

I added a urlresolver Plugin for castamp:
https://github.com/Eldorados/script.module.urlresolver/pull/117


However your general URLResolverDelegator breaks my rtmp link bacause it add the video link with addUserAgent=True by default.

That breaks every rtmp link from URLresolver I guess.

This is the code:

Code:
video_info.add_video_link(VIDEO_QUAL_SD, stream_url)
in /script.module.turtlex/lib/snapvideo/UrlResolverDelegator.py

Code:
def add_video_link(self, video_qual, video_link, addUserAgent=True, addReferer=False, refererUrl=None):
        if addUserAgent:
            video_link = video_link.replace(' ', '%20') + '|' + HttpUtils.getUserAgentForXBMCPlay()
            if addReferer and refererUrl is not None:
                video_link = video_link + '&Referer=' + refererUrl
        self.__video_links[video_qual] = video_link

What do you think? Worth a fix?

Cheers mablae

Hi,

Yes, it is a bug. No need to add additional info to URL resolved by URLResolver. I am out on vacation for three weeks, don't have access to my code. Would you like to have access to my google code project, pass on your gmail id.

By the way, please rate Firefox addon if you like it.

Thanks,
Ajay


RE: PlayIt service : Play hosted video url remotely on XBMC - NordishByNature - 2013-10-23

(2013-10-22, 08:12)ajay Wrote: Hi,

Yes, it is a bug. No need to add additional info to URL resolved by URLResolver. I am out on vacation for three weeks, don't have access to my code. Would you like to have access to my google code project, pass on your gmail id.

By the way, please rate Firefox addon if you like it.

Thanks,
Ajay

Hey Ajay,

thanks for the quick reply! I would like to get commit access to repo. I have send you my gmail acc via PM.

I am used to git / github but I'll try to commit that change to your SVN...

How should I fix this bug? Should I check the returned link in URLResolverDelegator.py if it starts with rtmp:// and then do the add_video_link with addUserAgent=false?

A bit hackish but should work.

BTW: How is the addon deployed to xbmc.org Repo? Is that procedure documented somewhere or standardized, yet?

The rating is already on Mozilla.org! Thanks in advance, have a nice Vacation!


cheers mablae


RE: PlayIt service : Play hosted video url remotely on XBMC - NordishByNature - 2013-10-24

Okay, commited a patch... :-)

Thanks ajay!


RE: PlayIt service : Play hosted video url remotely on XBMC - Phobos666 - 2013-10-28

(2013-06-13, 11:12)mezo Wrote:
(2013-06-13, 04:18)ajay Wrote:
(2013-06-13, 00:00)mezo Wrote: hey, ajay. first great work! is it possible to support the site twitch.tv?

I think I can make it work but this will required installation of twitch.tv add-on. Because I see lots of code is needed to get video URL and as it is already provided in an existing add-on twitch.tv, I can use it to play your request video URL passed through playIt.

have you tried twitch.tv addon of XBMC, does it work?
im using this twitch addon, but its very very uncomfortable for me. u need sometimes many clicks to get to ur stream. so my idea was to start the stream with one click from my pc Smile
quick: yes it works

I see it already requested here but the support for twitch.tv isn't working yet right?
I have the twitch.tv addon installed but playit don't pass the URL through for me.


RE: PlayIt service : Play hosted video url remotely on XBMC - NordishByNature - 2013-11-02

I will take a look on twitch...!

Give me some time, please... Smile


cheers mablae


RE: PlayIt service : Play hosted video url remotely on XBMC - brantje - 2013-11-18

Hi mate,
I installed your chrome extension, love the right click menu.

I have an greasemonkey script that gives me options when i hover the youtube thumbnails.
Maybe integrate into playit?
The link is
http://userscripts.org/scripts/show/136934

Note:
I do not see any play to xbmc buttons from your script.


RE: PlayIt service : Play hosted video url remotely on XBMC - brotbuexe - 2013-11-29

I tried vimeo from android through the play it app. Didn't work.
http://pastebin.com/7cjeYtCi


RE: PlayIt service : Play hosted video url remotely on XBMC - azybmz - 2013-12-09

Hi, All the AJ addons are being marked broken - I had successfully installed these with XBMC version - SPMC 12.4.1 a few days back. Now, I flashed a new ROM (Finless 1.7) on my MK908 and with the same SPMC version, all the addons are marked broken. I am able to install other addons. Help please !!!


RE: PlayIt service : Play hosted video url remotely on XBMC - azybmz - 2013-12-09

(2013-12-09, 22:37)azybmz Wrote: Hi, All the AJ addons are being marked broken - I had successfully installed these with XBMC version - SPMC 12.4.1 a few days back. Now, I flashed a new ROM (Finless 1.7) on my MK908 and with the same SPMC version, all the addons are marked broken. I am able to install other addons. Help please !!!

I did find something in the debug logs. Looks like I haven't installed common cache plugin and beautifulsoup. I had assumed that dependencies will be resolved automatically. I will try after installing these plugins. Thanks.


RE: PlayIt service : Play hosted video url remotely on XBMC - skweezer - 2013-12-10

Cant believe ive missed this add on. IT IS AMAZINGGGGGGG !! Works perfectly and on everything i tried.

THANK YOU Big GrinBig Grin[/align]


RE: PlayIt service : Play hosted video url remotely on XBMC - ajay - 2013-12-18

(2013-12-10, 02:22)skweezer Wrote: Cant believe ive missed this add on. IT IS AMAZINGGGGGGG !! Works perfectly and on everything i tried.

THANK YOU Big GrinBig Grin[/align]

I am pleased to know about your wonderful experience. Thanks!


RE: PlayIt service : Play hosted video url remotely on XBMC - coolstud - 2013-12-22

(2013-10-17, 18:12)coolstud Wrote:
(2013-10-17, 08:05)ajay Wrote:
(2013-10-16, 23:37)coolstud Wrote: Hi AJ

Thank you for making the new toolbar button, its still not the same as Chrome add on features as listed below.

1. Remove drop marker and add right click to get toolbar button context menu.
2. Toolbar button is not movable, would like the option to move it anywhere on the toolbar or add-on bar like the previous versions.
3. Also could you add "Options" to toolbar button context menu which would allow you set IP/Port numbers then save and exit it.

Separate request can you add http://mega.co.nz to playit because if you install MEGA Addon you can stream movies with MEGA links.

Hi,

1. Its not possible to get toolbar menu using right click, I see drop marker button is better option because its second button,
2. Agreed, button is not movable, I will fix it in next release of addon.
3. Not possible to add options to toolbar button context menu. Chrome has this options item available by default, handled by its system not by me. Firefox works in different way.

THanks,

Hi Ajay

Some no restart addons have right click and options/preferences in Firefox e.g adblock plus (personally don't like drop markers takes up space on toolbar makes it look big next to other buttons).

Also its to many clicks for me to change IP Address as I am sending links to my raspberry pi's in the front room and back room and also xbmc on my laptop, would appreciate it if you can do anything to make it easier as the first version of Playit addon was simpler.

Many thanks

Sanjay

Hi Ajay

Please could you help with this, much appreciated.

Thanks!

Sanjay