Audio/video stream recording forums

Attention Visitor:
You may have to register or log in before you can post:
  • Click the register link to sign up.
  • Registered members please fill in the form below and click the "Log in" button.
To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Audio/video stream recording forums > Streaming media recording forum > Video stream recording
Register FAQ Members List Calendar Mark Forums Read

Reply Post New Thread
 
Thread Tools Display Modes
  #11  
Old 06-16-2014, 04:16 PM
mrberni mrberni is offline
Member
 
Join Date: May 2014
Posts: 58
mrberni is on a distinguished road
Default

Re: Decryp adobe access?


Thank you denobis!
But how to use this php script? I have php already installed
Reply With Quote
  #12  
Old 06-16-2014, 04:31 PM
blimey blimey is offline
Former Member
 
Join Date: Jul 2006
Posts: 286
blimey is on a distinguished road
Default

Re: Decryp adobe access?


You don't need to use the script directly, you can just take all of the information from it to form your http request to kaltura. It appears that the partner id for video.disney.com is always 628012. Then just take the video id for the video you want (found in the source of the video page, it is 0_mq7fa9rc for the video at the start of this thread) and the flavor id for 1920x1080_7840 (mp4) is 385971.

If you can't form the url, I can send you an example in a private note.
Reply With Quote
  #13  
Old 06-16-2014, 04:44 PM
mrberni mrberni is offline
Member
 
Join Date: May 2014
Posts: 58
mrberni is on a distinguished road
Default

Re: Decryp adobe access?


An example URL would be nice.

Thank you
Reply With Quote
  #14  
Old 08-16-2014, 01:42 AM
save8lot save8lot is offline
Member
 
Join Date: Aug 2014
Posts: 39
save8lot is on a distinguished road
Default

Re: Decryp adobe access?


Quote:
Originally Posted by blimey View Post
You don't need to use the script directly, you can just take all of the information from it to form your http request to kaltura. It appears that the partner id for video.disney.com is always 628012. Then just take the video id for the video you want (found in the source of the video page, it is 0_mq7fa9rc for the video at the start of this thread) and the flavor id for 1920x1080_7840 (mp4) is 385971.

If you can't form the url, I can send you an example in a private note.
Thanks blimey for directing me to the Disney PHP file, however I must admit I have no idea how to use it. I did read through the rest of this thread as well, and according to your directions you need a "Partner ID", "Video ID" and "Flavor ID". Just to use the same video as an example:
Code:
http://video.disney.com/watch/disneychannel-dmms026-captain-donald-4ffebffe5c7742b5e967c3c7
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.

Once I get those 3 ID's, is that all I need? At that point I assume I copy and paste them into the PHP File (not sure where), then execute the PHP file (not sure how).


Hopefully you can help me figure this out. You seem to be very knowledgeable, so thanks in advance for your help.
Reply With Quote
  #15  
Old 08-16-2014, 02: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
  #16  
Old 08-16-2014, 02:52 AM
save8lot save8lot is offline
Member
 
Join Date: Aug 2014
Posts: 39
save8lot is on a distinguished road
Default

Re: Decryp adobe access?


So you actually had to test them all out individually in order to figure out the flavor ids. OK I see, I figured there must have been some pattern I was missing. Good to know.

OK, now that I have determined the 3 ID, whats the next step?

BTW, I have the PHP file, and I have the Atresdownloader v17.2P installed (i had to download the "libeay32.dll" and "ssleay32.dll" files from the net and save them in the install directory to get the program to start).
Reply With Quote
  #17  
Old 08-16-2014, 03:15 AM
blimey blimey is offline
Former Member
 
Join Date: Jul 2006
Posts: 286
blimey is on a distinguished road
Default

Re: Decryp adobe access?


It sounds like you installed the update version of atres, you need the full version.
Code:
http://www.mediafire.com/download/p35nzym1n418yl5/a3toMP4v17.2F.exe
If you get atres running, you don't need to do anything other than enter the url of the video page, because atres runs the php script(s) automatically. The other steps described in this thread are about doing it manually without any program.
Reply With Quote
  #18  
Old 08-16-2014, 03:35 AM
save8lot save8lot is offline
Member
 
Join Date: Aug 2014
Posts: 39
save8lot is on a distinguished road
Default

Re: Decryp adobe access?


Yeah, I first installed the 17.2P file and it didnt work, so i figured it might have been an update file. I went back and installed v17 then 17.2P on top of it (which should essentially be the same thing as installed 17.2f alone, i assume).

I did try entering the video URL into the atresdownloader and hit the search (magnifying glass) button, and the program just froze on me (title bar said not responding). So either I did something wrong (which is not impossible since i have never used it before), or I am missing something.

EDIT: Tried using it a couple more time, and it kept freezing until I changed it to "Dont Use Proxies" then it loaded with a big green "OK" button and a black Rectangle in the middle of the screen (which looks like it should be for a streaming video), but nothing ever plays, nothing downloads, and there is nowhere to select the different "flavors" available.

While it would be great to figure out how to use it properly, I am genuinely interested in learning the "manual" way of doing this. I feel like I am close by already determining the 3 ID's, so what do I do now that i have them?
Reply With Quote
  #19  
Old 08-16-2014, 05:51 AM
save8lot save8lot is offline
Member
 
Join Date: Aug 2014
Posts: 39
save8lot is on a distinguished road
Default

Re: Decryp adobe access?


Thank You Blimey.

[I wish I could send you a PM to thank you in more detail.]

BTW...Do you think this method also works for the subtitle files "english_subtitles.vtt". I was not sure if maybe they could be one of the "Flavor ID's" or not.
Reply With Quote
  #20  
Old 08-17-2014, 05:25 AM
save8lot save8lot is offline
Member
 
Join Date: Aug 2014
Posts: 39
save8lot is on a distinguished road
Default

Re: Decryp adobe access?


Thanks for the subtitle Help Blimey.

I did not understand the m3u8 method because when i download the m3u8 file and open it in notepad all I find is ".ts" and ".key" files, no subs. However I am only interested in converting them to ".srt" anyway, and the ".xml" works fine for that, so its no big deal.

There were two videos I could Not find subs for, but i think perhaps there are none to be found (not sure why since all the rest have them).

Code:
http://video.disney.com/watch/disneychannel-the-adorable-couple-4f21c83e3f5c3c9cf9fc5d18
http://video.disney.com/watch/disneychannel-third-wheel-4f1253f92447a3fff4ab6ae9
Perhaps none were made for these 2 videos because I cant find any trace of subs at all.


Oh well, I guess I will just have to figure out how to make them on my own.

THANK YOU again for all your help!!
Reply With Quote
Reply Post New Thread
Tags:



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -6. The time now is 08:42 AM.


Powered by All-streaming-media.com; 2006-2011
vB forum hacked with Zoints add-ons