Kodi Community Forum
[RELEASE] Justin.tv (Video) Plugin - 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: Video Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=154)
+---- Thread: [RELEASE] Justin.tv (Video) Plugin (/showthread.php?tid=51981)



- milk - 2010-10-03

I'm trying to find out how to donate to rtmpdump, but I can't find their site w/ paypal account. Please advise.


- Livin - 2010-10-03

milk Wrote:People are moving to Boxee because of the ability to watch justin.tv.

Why does Boxee get to do this and not XBMC? If I'm not mistaken, Boxee/Plex/etc are using XBMC's code and then adding options. Why are they not required to "share"?


- milk - 2010-10-04

Livin Wrote:Why does Boxee get to do this and not XBMC? If I'm not mistaken, Boxee/Plex/etc are using XBMC's code and then adding options. Why are they not required to "share"?

Boxee uses the Mozilla browser to play the video. I'm not sure why the xbox can't do the same. I think it is because the xbox doesn't do DRM. I'm not sure though.


- johoja - 2010-10-04

Livin Wrote:Why does Boxee get to do this and not XBMC? If I'm not mistaken, Boxee/Plex/etc are using XBMC's code and then adding options. Why are they not required to "share"?

Boxee has a closed source component which they are not required to share as its a binary blob separate from the main program.

This binary blob is what lets them use 'playback' flash content, what they do is use a web-browser and Adobe Flash and try and get the video content that way.

XBMC tries to get the actual video stream instead of using Adobe Flash.


Need some guidence - applesinafton - 2011-02-11

I'm setting up some plugins in the video menu on my iPad......how do I get the plugins that are not listed into the XBMC get more.....please help and thanks!


- stacked - 2011-02-11

applesinafton Wrote:I'm setting up some plugins in the video menu on my iPad......how do I get the plugins that are not listed into the XBMC get more.....please help and thanks!

Sorry, this plugin is not working.


- Vrok - 2011-02-17

stacked Wrote:BROKEN If someone finds a workaround, I would gladly update the plugin.

You can use chrome with -k I think and advanced launcher plugin to run a url on full screen. If you also add this userscript to chrome then justin.tv automatically plays at fullscreen: http://forum.xbmc.org/showpost.php?p=726761&postcount=1549

In other words you can work around this issue by launching chrome from within your jtv channel browser


- czarphanguye - 2011-04-15

Vrok Wrote:You can use chrome with -k I think and advanced launcher plugin to run a url on full screen. If you also add this userscript to chrome then justin.tv automatically plays at fullscreen: http://forum.xbmc.org/showpost.php?p=726761&postcount=1549

In other words you can work around this issue by launching chrome from within your jtv channel browser


Sounds like a good solution.


- Icarus3000 - 2011-05-02

Is there a way to get even a list of justin.tv channels through XBMC, and then have an external browser launch when the links are selected?


- al101 - 2011-05-02

Icarus3000 Wrote:Is there a way to get even a list of justin.tv channels through XBMC, and then have an external browser launch when the links are selected?

yes this plugin does that for justin, Livestream, UStream, own3d, Zero punctuation, veetle, freedocast or any streaming site that has RSS feed.

http://forum.xbmc.org/showthread.php?tid=94739

I use it for HD veetle streams.


- rogerzees - 2011-05-02

Found this code on a forum,via babelfish i translate that the coder got this working but it isnt perfect,
maybe there is a way to test it in xbmc.

Code:
<?php
$site = "http://ru.justin.tv/maxi163";
$get = file_get_contents ("$site");
$reg = preg_match ("/\"authenticity_token\" type=\"hidden\" value=\"(.+)\" \//i", $get, $authenticity_token);
//echo htmlspecialchars ("$authenticity_token[1]");


$socket = fsockopen('ru.justin.tv', 80, $errno, $errstr, 30);

if(!$socket)die("$errstr($errno)");
$data = "authenticity_token=".urlencode("$authenticity_token[1]")."&publisher_guard=".urlencode("w8")."&commit=".urlencode("%D0%9F%D1%80%D0%B8%D0%BD%D1%8F%D1%82%D1%8C");

fwrite($socket, "POST /maxi163 HTTP/1.1\r\n");
fwrite($socket, "Host: www.justin.tv\r\n");
fwrite($socket,"Content-type: application/x-www-form-urlencoded\r\n");
fwrite($socket,"Content-length:".strlen($data)."\r\n");
fwrite($socket,"Accept:*/*\r\n");
fwrite($socket,"Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12 WebMoney Advisor\r\n");
fwrite($socket,"\r\n");

fwrite($socket,"$data\r\n");
fwrite($socket,"\r\n");

fclose($socket);


?>









//$_POST['authenticity_token'] = "$authenticity_token[1]";
//$_POST['publisher_guard'] = 'w8';
//$_POST['commit'] = 'submit';


http://pastebin.com/1AMqKwzW


- toine512 - 2011-07-19

Hello everyone,

Jtv changed their network architecture, HD streams uses regular Akamai FMS which works properly with rtmpdump.

Now the good part, I'm adding support of NetStream.Authenticate.UsherToken in librtmp .. and it works ! For now all this things are hardcoded, I need a few more time ...

~toine512


- johoja - 2011-07-19

toine512 Wrote:Hello everyone,

Jtv changed their network architecture, HD streams uses regular Akamai FMS which works properly with rtmpdump.

Now the good part, I'm adding support of NetStream.Authenticate.UsherToken in librtmp .. and it works ! For now all this things are hardcoded, I need a few more time ...

~toine512

Awesome news, time to bring the plugin back to life Smile


- stacked - 2011-07-19

toine512 Wrote:Hello everyone,

Jtv changed their network architecture, HD streams uses regular Akamai FMS which works properly with rtmpdump.

Now the good part, I'm adding support of NetStream.Authenticate.UsherToken in librtmp .. and it works ! For now all this things are hardcoded, I need a few more time ...

~toine512

Good news! Big Grin

Looking forward to any updates.

johoja Wrote:Awesome news, time to bring the plugin back to life Smile

Yea. It would probably be a good idea for this plugin to be completely re-written. It's pretty out-dated.


- grypho - 2011-07-19

wow! great news! this would be awesome Smile