• 1
  • 2
  • 3
  • 4(current)
  • 5
  • 6
  • 11
[RELEASE] crackle.com
#46
(2012-04-30, 15:06)war2die4 Wrote: For those of you that are interested heres a mostly working plugin, its not perfect but most if not all categories are working.

https://rapidshare.com/files/349835107/p...rackle.zip
Enjoy

Cool, thanks for the plugin, seems to work fine!
Reply
#47
Your welcomeSmile
Reply
#48
(2012-04-30, 15:06)war2die4 Wrote: For those of you that are interested heres a mostly working plugin, its not perfect but most if not all categories are working.

https://rapidshare.com/files/349835107/p...rackle.zip
Enjoy

Thanks for updating it Smile
Reply
#49
I have been using XBMC on my ATV2 for awhile now and it's great. Last month I picked up an original XBOX and decided to put XBMC on it. After many tries of various XMBCs for xbox I finally found XBMC4XBOX-3.1-STABLE to be the one which actually worked on mine.

My question to anyone who can help is I installed CRACKLE on it and am able to see what movies I can choose from but when I choose them nothing happens... I get kicked back to the movie list. Do I need a video player installed? If so, where do I find it and which one?


I used the repo installer to get CRACKLE. I noticed in the post above mine that a .ZIP is available but I cant figure out the steps to install from a zip on the XBOX. Please advise, I can do it on the ATV2 but not XBOX.
Reply
#50
(2012-04-30, 15:06)war2die4 Wrote: For those of you that are interested heres a mostly working plugin, its not perfect but most if not all categories are working.

https://rapidshare.com/files/349835107/p...rackle.zip
Enjoy

Thanks for the effort and for sharing - but, it didnt work for me on my Windows 7 box.
bash, batch, and perl scripter
Running XBMC 11.x on W7U64 (previously 10.x on ATV1)
Reply
#51
That patched version did work quite nicely back then, providing access to TV shows as well as movies. I don't use this add-on very often, but did notice a couple of days ago that it appears to be broken again.
Reply
#52
I have made an addon for Crackle with the android api. I'll try to get it on the XBMC repo in the evening.
Reply
#53
Try this guys:

https://www.box.com/s/d59b63d89b92656151a0
Reply
#54
(2012-07-19, 01:55)newatv2user Wrote: Try this guys:

https://www.box.com/s/d59b63d89b92656151a0
Works great! Thanks for bringing Crackle back to XBMC.
Reply
#55
Very nice plugin.
Reply
#56
thanks for the work. It seems to only list episodes from the first season of a show. this is an easy fix though. news radio is an example.

another minor thing. you are accessing the 480p stream the 480p 1mbps is a little higher quality. There are other file name qualities in the swf player but they didn't all seem active. like I couldnt find active 720p.mp4 files anywhere even though they are supported in the swf.

did you reverse the authorization header signature that the app uses? I tried but the values weren't matching the ones I monitored. it is an md5 hmac signature with utc date and a provider number joined together by | to make the auth header token. I thought the input on the hmac was just the url but as I said the values dont seem to match. one could grab the playback urls in the json returns if the requests are signed.

thanks again for making plugins.

Reply
#57
I did not reversed any authorization. I just captured a normal session in wireshark. The media url themselves are kind of a hack. Just the image url replaced to point to guessed video. I try 480p first. For some items that does not have 480p, I try to play 360p.

According to their website, they only serve 360p and 480p. So never tried to figure out anything else.
Reply
#58
it is just a different ending to the file name. "480p_1mbps.mp4" instead of "480p.mp4". I believe it is just higher bitrate.

there is also a site method to get the filepath as . "http://www.crackle.com/app/vidwall.ashx?flags=-1&fm=%s&partner=20" % videoid
it is the 'p' value in the 'i' set. The same paths work for rtmp or http. the rtmp streams just use swf verify but they play fine as well.

here is a list of the other file path names they seem to use. I couldn't find any 720p things available though.
Code:
public static const H264_480p_1MBPS:MediaFileSlot = new MediaFileSlot(56, "480p_1mbps.mp4", true, true, true);
        public static const CDN_H264_480p:MediaFileSlot = new MediaFileSlot(55, "480p.mp4", true, true, true);
        public static const CDN_FLV_544:MediaFileSlot = new MediaFileSlot(49, "c544.flv", true, false, true);
        public static const H264_360p:MediaFileSlot = new MediaFileSlot(54, "360p.mp4", true, true, true);
        public static const CDN_H264_306p:MediaFileSlot = new MediaFileSlot(50, "306p.mp4", true, true, true);
        public static const CDN_H264_720p:MediaFileSlot = new MediaFileSlot(51, "720p.mp4", true, true, true);
        public static const MP4_306p:MediaFileSlot = new MediaFileSlot(48, "306p.mp4", false, true);
        public static const MP4_720p:MediaFileSlot = new MediaFileSlot(45, "720p.mp4", false, true);
        public static const CrackleLarge:MediaFileSlot = new MediaFileSlot(9, "c544.flv");
        public static const CrackleSmall:MediaFileSlot = new MediaFileSlot(10, "c400.flv");
        public static const HDNA:MediaFileSlot = new MediaFileSlot(32, "480p_hq.flv");
        public static const CDN_MP4_640p:MediaFileSlot = new MediaFileSlot(24, "itv.mp4", true, true, true);

one more thing. you can genre filter with the api. I believe only ios seems to use this and not the android app. It works fine though.

like here is the browse all url for movies.
hxxp://api.crackle.com/Service.svc/browse/movies/full/all/alpha/US?format=json

the 'all' between 'full' and 'alpha' is the genre filter. Using the value 'Action_Comedy_Crime_Horror_Sci-Fi_Thriller' would essentially be the 'all' value. You just specify which genres are active.

sorry to just dump information. I just thought it might be useful to you.
Reply
#59
Sorry to contradict newatv2user, but I can't get the new Crackle addon to work with ATV2 either.
Reply
#60
(2012-07-19, 01:55)newatv2user Wrote: Try this guys:

https://www.box.com/s/d59b63d89b92656151a0

Thank you for this.
Reply
  • 1
  • 2
  • 3
  • 4(current)
  • 5
  • 6
  • 11

Logout Mark Read Team Forum Stats Members Help
[RELEASE] crackle.com1