View Single Post
  #15  
Old 08-16-2014, 01:13 AM
blimey blimey is offline
Former Member
 
Join Date: Jul 2006
Posts: 286
blimey is on a distinguished road
Default

Re: Decryp adobe access?


Quote:
Originally Posted by save8lot View Post
Searching the source code I found:

partnerId = 628012
video_id = 0_9j8twsfg
Flavor id = ?

I am not sure what the flavor ID is, I found about 26 of them listed under "flavorParamsIds" but not sure how to determine which ones goes to the "1920x1080_7840x160.mp4" file.

Code:
flavorParamsIds":"0,385871,385881,385901,385911,385931,385951,385961,385971,386961,386981,387021,387031,426321,426331,426351,426361,698081,698092,698102,698112,698122,698142,698152,698162,698172,698182"
I am going to ASSUME its "385971" only because the user above was looking for the same quality and that code was also one of my 26 choices. However, it is really more important to determine HOW you figured out which one it was, as apposed to just guessing that is it.
Yes, you seem to have selected the correct parameters. As far as the flavorParamsIds, I suspect their definition is largely arbitrary. The kaltura manuals are online somewhere, you can search and look it up (I can't find the links right now). I don't know of any other way to define them other than manually checking each one individually. Here is a list of the ones I had checked;
Code:
385871 848x480_536x64.mp4

385881 848x480_904x96.mp4

385901 1280x720_1404x96.mp4

385911 1280x720_2104x96.mp4

385931 1280x720_2904x96.mp4

385951 1920x1080_4140x160.mp4

385961 1920x1080_5840x160.mp4

385971 1920x1080_7840x160.mp4

386961 1280x720_1404x96.webm

386981 1280x720_2904x96.webm

387021 320x240_96x32.mp4

387031 480x320_350x64.mp4

387041 480x320_500x64.mp4

426321 320x240_96x32.m3u8

426331 480x320_350x64.m3u8

426341 480x320_500x64.m3u8

426351 848x480_536x64.m3u8

426361 848x480_904x96.m3u8

698081 320x240_96x32.access.mp4

698092 480x320_350x64.access.mp4

698102 848x480_536x64.access.mp4

698112 848x480_904x96.access.mp4

698122 1280x720_1404x96.access.mp4

698142 1280x720_2104x96.access.mp4

698152 1280x720_2904x96.access.mp4

698162 1920x1080_4140x160.access.mp4

698172 1920x1080_5840x160.access.mp4

698182 1920x1080_7840x160.access.mp4
Reply With Quote