[RELEASE] crackle.com
#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


Messages In This Thread
[RELEASE] crackle.com - by t0mm0 - 2011-04-23, 19:20
[No subject] - by igotdvds - 2011-04-24, 02:48
[No subject] - by Pete7 - 2011-04-24, 03:46
[No subject] - by kobun - 2011-04-24, 10:24
[No subject] - by Vonswanko - 2011-04-25, 14:02
[No subject] - by t0mm0 - 2011-04-25, 14:47
[No subject] - by Vonswanko - 2011-04-25, 15:47
[No subject] - by t0mm0 - 2011-04-25, 15:51
[No subject] - by Vonswanko - 2011-04-25, 16:09
[No subject] - by t0mm0 - 2011-04-25, 16:20
[No subject] - by Vonswanko - 2011-04-25, 19:02
[No subject] - by Pete7 - 2011-04-26, 00:03
[No subject] - by GoodOmens - 2011-04-26, 02:15
[No subject] - by Vonswanko - 2011-04-27, 13:18
[No subject] - by jostster - 2011-05-10, 07:26
[No subject] - by jostster - 2011-05-11, 18:47
[No subject] - by t0mm0 - 2011-05-11, 19:52
[No subject] - by jostster - 2011-05-13, 19:20
[No subject] - by t0mm0 - 2011-05-13, 22:56
[No subject] - by jostster - 2011-05-14, 02:03
[No subject] - by t0mm0 - 2011-05-14, 02:18
[No subject] - by jostster - 2011-05-14, 02:22
[No subject] - by t0mm0 - 2011-05-14, 02:35
[No subject] - by divingmule - 2011-05-21, 15:03
[No subject] - by t0mm0 - 2011-05-21, 15:51
[No subject] - by bharath23 - 2011-09-17, 05:30
[No subject] - by t0mm0 - 2011-09-17, 12:10
[No subject] - by bharath23 - 2011-09-17, 15:53
[No subject] - by xcript - 2011-10-29, 06:35
Great Plugin!! - by r3g10 - 2012-01-18, 05:47
[No subject] - by Hiethen - 2012-01-23, 16:39
[No subject] - by apw2607 - 2012-01-23, 21:54
Same Here - by soundmanbrad - 2012-02-04, 03:50
[No subject] - by bharath23 - 2012-03-05, 00:37
[No subject] - by moveright - 2012-03-05, 22:38
[No subject] - by newatv2user - 2012-03-05, 23:50
very cool - by thewarm - 2012-03-07, 00:15
[No subject] - by apw2607 - 2012-03-08, 05:55
RE: [RELEASE] crackle.com - by war2die4 - 2012-04-15, 02:59
RE: [RELEASE] crackle.com - by war2die4 - 2012-04-30, 01:22
RE: [RELEASE] crackle.com - by darwin - 2012-04-30, 04:59
RE: [RELEASE] crackle.com - by war2die4 - 2012-04-30, 05:50
RE: [RELEASE] crackle.com - by war2die4 - 2012-04-30, 15:06
RE: [RELEASE] crackle.com - by bac522 - 2012-05-04, 00:18
RE: [RELEASE] crackle.com - by Hiethen - 2012-06-03, 20:33
RE: [RELEASE] crackle.com - by mespinola - 2012-07-18, 02:20
RE: [RELEASE] crackle.com - by war2die4 - 2012-05-01, 00:43
RE: [RELEASE] crackle.com - by war2die4 - 2012-05-05, 02:09
RE: [RELEASE] crackle.com - by carpenter940 - 2012-07-13, 22:46
RE: [RELEASE] crackle.com - by artrafael - 2012-07-18, 08:18
RE: [RELEASE] crackle.com - by newatv2user - 2012-07-18, 18:03
RE: [RELEASE] crackle.com - by newatv2user - 2012-07-19, 01:55
RE: [RELEASE] crackle.com - by artrafael - 2012-07-19, 09:06
RE: [RELEASE] crackle.com - by Myrddraal - 2012-07-22, 13:16
RE: [RELEASE] crackle.com - by Zeee1 - 2012-07-22, 01:58
RE: [RELEASE] crackle.com - by BlueCop - 2012-07-22, 03:15
RE: [RELEASE] crackle.com - by newatv2user - 2012-07-22, 04:04
RE: [RELEASE] crackle.com - by BlueCop - 2012-07-22, 04:35
RE: [RELEASE] crackle.com - by apw2607 - 2012-09-25, 17:03
RE: [RELEASE] crackle.com - by gegs - 2012-07-22, 12:29
RE: [RELEASE] crackle.com - by newatv2user - 2012-07-25, 02:17
RE: [RELEASE] crackle.com - by gegs - 2012-07-27, 19:16
RE: [RELEASE] crackle.com - by Saureus - 2012-07-25, 04:34
RE: [RELEASE] crackle.com - by newatv2user - 2012-07-27, 21:01
RE: [RELEASE] crackle.com - by gegs - 2012-07-28, 00:20
RE: [RELEASE] crackle.com - by gegs - 2012-07-28, 23:56
RE: [RELEASE] crackle.com - by BlueCop - 2012-07-29, 00:34
RE: [RELEASE] crackle.com - by gegs - 2012-07-29, 15:48
RE: [RELEASE] crackle.com - by newatv2user - 2012-07-29, 16:14
RE: [RELEASE] crackle.com - by Kacdoon - 2012-07-29, 01:53
RE: [RELEASE] crackle.com - by Zeee1 - 2012-07-29, 05:10
RE: [RELEASE] crackle.com - by BlueCop - 2012-07-29, 15:52
RE: [RELEASE] crackle.com - by gegs - 2012-08-15, 00:44
RE: [RELEASE] crackle.com - by newatv2user - 2012-10-03, 22:39
RE: [RELEASE] crackle.com - by doucettom - 2012-10-12, 02:58
RE: [RELEASE] crackle.com - by newatv2user - 2012-10-12, 04:02
RE: [RELEASE] crackle.com - by doucettom - 2012-10-12, 05:13
Re: RE: [RELEASE] crackle.com - by hams1000 - 2012-10-12, 23:05
RE: [RELEASE] crackle.com - by Eye in the sky - 2012-10-14, 14:56
RE: [RELEASE] crackle.com - by newatv2user - 2012-10-14, 16:44
RE: [RELEASE] crackle.com - by CaptainKen - 2012-10-22, 17:16
Re: RE: [RELEASE] crackle.com - by hams1000 - 2012-10-22, 21:31
RE: [RELEASE] crackle.com - by CaptainKen - 2012-10-23, 14:41
RE: [RELEASE] crackle.com - by newatv2user - 2012-10-23, 16:28
RE: [RELEASE] crackle.com - by CaptainKen - 2012-10-23, 17:34
RE: [RELEASE] crackle.com - by newatv2user - 2012-10-23, 18:19
RE: [RELEASE] crackle.com - by pmolson - 2012-11-15, 09:49
RE: [RELEASE] crackle.com - by Eye in the sky - 2012-10-24, 09:37
RE: [RELEASE] crackle.com - by Double_Faster - 2012-11-22, 18:20
RE: [RELEASE] crackle.com - by foreverguest - 2012-11-23, 19:20
RE: [RELEASE] crackle.com - by Double_Faster - 2012-11-23, 21:29
RE: [RELEASE] crackle.com - by Double_Faster - 2012-11-23, 20:15
RE: [RELEASE] crackle.com - by pmolson - 2012-11-23, 21:37
RE: [RELEASE] crackle.com - by foreverguest - 2012-11-23, 21:57
RE: [RELEASE] crackle.com - by Double_Faster - 2012-11-23, 22:32
RE: [RELEASE] crackle.com - by foreverguest - 2013-01-15, 22:46
RE: [RELEASE] crackle.com - by doudelgado - 2013-01-17, 18:09
RE: [RELEASE] crackle.com - by foreverguest - 2013-01-18, 18:54
RE: [RELEASE] crackle.com - by doudelgado - 2013-01-18, 21:36
RE: [RELEASE] crackle.com - by foreverguest - 2013-01-20, 16:20
RE: [RELEASE] crackle.com - by doudelgado - 2013-01-20, 16:59
RE: [RELEASE] crackle.com - by foreverguest - 2013-01-22, 22:03
RE: [RELEASE] crackle.com - by speed32219 - 2013-02-16, 16:14
RE: [RELEASE] crackle.com - by pmolson - 2013-02-16, 19:19
RE: [RELEASE] crackle.com - by foreverguest - 2013-02-17, 17:02
RE: [RELEASE] crackle.com - by RedPenguin - 2013-05-13, 02:07
RE: [RELEASE] crackle.com - by pmolson - 2013-02-17, 20:02
RE: [RELEASE] crackle.com - by pdoth - 2013-03-23, 19:15
RE: [RELEASE] crackle.com - by artrafael - 2013-03-23, 20:33
RE: [RELEASE] crackle.com - by Firepants - 2013-07-02, 13:48
RE: [RELEASE] crackle.com - by foreverguest - 2013-07-02, 17:44
RE: [RELEASE] crackle.com - by Firepants - 2013-07-08, 12:02
RE: [RELEASE] crackle.com - by Eye in the sky - 2013-07-07, 15:18
RE: [RELEASE] crackle.com - by pdlibrary - 2013-07-08, 19:26
RE: [RELEASE] crackle.com - by foreverguest - 2013-07-25, 23:59
RE: [RELEASE] crackle.com - by artphotodude - 2013-07-25, 00:10
RE: [RELEASE] crackle.com - by Eye in the sky - 2013-07-27, 13:24
RE: [RELEASE] crackle.com - by foreverguest - 2013-07-28, 02:42
RE: [RELEASE] crackle.com - by Eye in the sky - 2013-07-28, 10:50
RE: [RELEASE] crackle.com - by foreverguest - 2013-07-29, 06:14
RE: [RELEASE] crackle.com - by thombrown2024 - 2013-09-23, 21:42
RE: [RELEASE] crackle.com - by Eye in the sky - 2013-07-29, 09:53
RE: [RELEASE] crackle.com - by Eye in the sky - 2013-07-30, 09:56
RE: [RELEASE] crackle.com - by foreverguest - 2013-07-30, 18:32
RE: [RELEASE] crackle.com - by Eye in the sky - 2013-08-01, 11:17
RE: [RELEASE] crackle.com - by dCypher - 2013-09-09, 15:02
RE: [RELEASE] crackle.com - by artphotodude - 2013-09-09, 18:09
RE: [RELEASE] crackle.com - by artrafael - 2013-09-09, 18:33
RE: [RELEASE] crackle.com - by seftongillis - 2013-10-03, 07:28
RE: [RELEASE] crackle.com - by foreverguest - 2013-10-04, 06:45
RE: [RELEASE] crackle.com - by russds - 2014-02-04, 07:26
RE: [RELEASE] crackle.com - by seftongillis - 2013-10-04, 19:14
RE: [RELEASE] crackle.com - by nitewing15 - 2013-10-04, 21:22
RE: [RELEASE] crackle.com - by gajju - 2013-10-05, 20:25
RE: [RELEASE] crackle.com - by gilgamezh - 2014-02-09, 16:42
RE: [RELEASE] crackle.com - by gilgamezh - 2014-02-09, 17:05
RE: [RELEASE] crackle.com - by coelhopsi - 2014-02-10, 02:14
RE: [RELEASE] crackle.com - by foreverguest - 2014-02-10, 14:04
RE: [RELEASE] crackle.com - by coelhopsi - 2014-02-13, 03:27
RE: [RELEASE] crackle.com - by taylor4747 - 2014-02-20, 00:40
RE: [RELEASE] crackle.com - by foreverguest - 2014-02-20, 02:58
RE: [RELEASE] crackle.com - by dkjohnsoncpa - 2014-02-20, 17:10
RE: [RELEASE] crackle.com - by lusephur - 2014-02-27, 00:32
RE: [RELEASE] crackle.com - by lusephur - 2014-02-27, 01:13
RE: [RELEASE] crackle.com - by Wolfy ZA - 2014-02-28, 11:15
RE: [RELEASE] crackle.com - by lusephur - 2014-02-28, 11:54
RE: [RELEASE] crackle.com - by m0ngr31 - 2014-03-09, 04:09
RE: [RELEASE] crackle.com - by WordTickler - 2014-03-25, 23:13
RE: [RELEASE] crackle.com - by m0ngr31 - 2014-03-26, 01:20
RE: [RELEASE] crackle.com - by Alexsource - 2014-12-24, 02:23
RE: [RELEASE] crackle.com - by Alexsource - 2014-12-24, 15:42
RE: [RELEASE] crackle.com - by Drozono - 2015-04-11, 00:32
RE: [RELEASE] crackle.com - by Alexsource - 2015-04-11, 00:35
RE: [RELEASE] crackle.com - by Drozono - 2015-04-11, 00:45
RE: [RELEASE] crackle.com - by Alexsource - 2015-04-11, 01:12
RE: [RELEASE] crackle.com - by Drozono - 2015-04-11, 06:36
RE: [RELEASE] crackle.com - by foreverguest - 2015-04-18, 04:16
RE: [RELEASE] crackle.com - by Step - 2015-05-23, 21:21
RE: [RELEASE] crackle.com - by 27hectormanuel - 2020-04-27, 10:11
Logout Mark Read Team Forum Stats Members Help
[RELEASE] crackle.com1