Send a YouTube URL link from a desktop computer or laptop?
#16
i am interested in a chrome version too
Reply
#17
You can get this working if you install the tampermonkey chrome extension and make some small modifications to the script.

Edit: uploaded the script on userscripts
Reply
#18
Hey guys,

I've posted the chrome version over here:
http://forum.xbmc.org/showthread.php?p=8...post832643

You can get it over at the chrome web store:
https://chrome.google.com/webstore/detai...ehdancpgme

cheers
Reply
#19
sandmac Wrote:Hey guys,

I've posted the chrome version over here:
http://forum.xbmc.org/showthread.php?p=8...post832643

You can get it over at the chrome web store:
https://chrome.google.com/webstore/detai...ehdancpgme

cheers

FYI: We are currently working on an official extensions for both firefox and chrome.

You beat me to it(damn). But we are still working on this. The extension is already working but we won't release it till Eden because we want some advanced functions that have yet to be implemented in XBMC as well.

Just wanted to let you know. Smile

Sincerely
Tobias Ussing
Reply
#20
And for Opera users there is the TeleTube extension that I have published several weeks ago.

Check this thread for the newest information: http://forum.xbmc.org/showthread.php?tid=103684
Reply
#21
iswasdoes Wrote:I'd like to see a way to do it from a smartphone, a la snapstick

http://www.engadget.com/2011/01/04/snaps...this-mont/

There is an app for that Big Grin

Well, at least for android, get "XBMCFlinger"

Whenever you click on youtube or vimeo video links in browser or search listings, it asks you if you would like to open it in browser or xbmcflinger. The first time you select xbmcflinger, it will ask you to enter addressand password for xbmc server and after that it keeps flinging.

It is awesome and I use it all the time.

Android's voice search + flinging is so much easier than searching in Youtube addon with SMS input on the remote.
Reply
#22
Hello I am trying to get this script going but when I hit configure nothing happens. The play in XBMC link is on the page but you can not click on it. I am using Firefox 5
Thanks
Reply
#23
I can recommend this:

https://chrome.google.com/webstore/detai...ehdancpgme

It simply works...
Reply
#24
deepseth Wrote:Taking this one step further, I've taken the existing Greasemonkey script and updated it to work with the JSON RPC and the updated plugin, so it doesn't need to find a video download URL on it's own.


The updated script that works can be found at http://userscripts.org/scripts/show/92945.

Hello !

I'm looking for the same function and I found many Script for Greasemonkey but none working one have all the functionality I'm looking for.

1) ability to play a video of course
2) ability to a video in playlist
3) to be perfect, have a nive mini-interface to do that

Actually the one you gave here: http://userscripts.org/scripts/show/92945 doesn't work for me, because when I click the sub-menu to enter the IP login/psw info nothing happens

This one http://userscripts.org/scripts/show/117046 when I click "user script command" it work and it has a nice interface (at the bottom right corner) with play, pause and stop button. But of course it has NO add to playlist or add to queue, possibility that is the most important for me.

I found another script that has the possibility to add to playlist but when I want to modifiy the host login/psw nothing happen like the first one...
http://userscripts.org/scripts/show/101305

Is there any way to edit the working one to add the queue feature from the third one ?
Reply
#25
Eluc Wrote:Hello !

I'm looking for the same function and I found many Script for Greasemonkey but none working one have all the functionality I'm looking for.

1) ability to play a video of course
2) ability to a video in playlist
3) to be perfect, have a nive mini-interface to do that

Actually the one you gave here: http://userscripts.org/scripts/show/92945 doesn't work for me, because when I click the sub-menu to enter the IP login/psw info nothing happens

This one http://userscripts.org/scripts/show/117046 when I click "user script command" it work and it has a nice interface (at the bottom right corner) with play, pause and stop button. But of course it has NO add to playlist or add to queue, possibility that is the most important for me.

I found another script that has the possibility to add to playlist but when I want to modifiy the host login/psw nothing happen like the first one...
http://userscripts.org/scripts/show/101305

Is there any way to edit the working one to add the queue feature from the third one ?

Hi, If you're using firefox or chrome we already provide an extension that will allow you to play videos and start playlists in xbmc from within your browser.

More here:
http://wiki.xbmc.org/index.php?title=Add...extensions
Reply
#26
Quote:Hi, If you're using firefox or chrome we already provide an extension that will allow you to play videos and start playlists in xbmc from within your browser.

In the upcoming version of Chrome (v21) you have to go through the store. Can you post it there? Otherwise, you can go to Tools | Extensions and drag/drop the crx there, but it's not known to all.
Reply
#27
Theres a chrome app called playlist2xbmc that does exactly what you want
Reply
#28
Did something change lately? I'm posting following JSON:

Code:
{"jsonrpc": "2.0", "method": "XBMC.Play", "params":{ "file" : "plugin://plugin.video.youtube/?action=play_video&videoid=mwEGHlqbjw8" }, "id": 1}

and I get:

Code:
{"error":{"code":-32601,"message":"Method not found."},"id":1,"jsonrpc":"2.0"}

UPDATE: I found what's wrong: XBMC.Play was phased out. Correct payload would be:

{"jsonrpc": "2.0", "method": "Player.Open", "params":{ "item" : {"file" : "plugin://plugin.video.youtube/?action=play_video&videoid=mwEGHlqbjw8" }}, "id": 1}

UPDATE2: I have wrapped that call into a project, and put it on github: https://github.com/galets/SendToYoutube .
Reply

Logout Mark Read Team Forum Stats Members Help
Send a YouTube URL link from a desktop computer or laptop?0