Audio/video stream recording forums (http://stream-recorder.com/forum/index.php)
-   Video stream recording (http://stream-recorder.com/forum/forumdisplay.php?f=4)
-   -  

Decryp adobe access?

(http://stream-recorder.com/forum/showthread.php?t=18422)

mrberni 06-15-2014 01:05 PM

Decryp adobe access?


 
Hello,

On Disney.com, they have the videos encrypted with Adobe-access:

example link:
Code:

http://video.disney.com/watch/disneyxd-dipper-vs-manliness-4c43a1ca811cd68bfbcc3bfe
Code:

http://cdn.secure.videos.dolimg.com/channel_longform/gravityfalls/929066/71abaf-pgravityfalls_e1-06-f006_tdm_h929066_fprhq_v1080p23_a16x9-178_leng-h264h_aac_1920x1080_7840x160.access.mp4?nvb=20140615175215&nva=20140616005215&token=0bb8c10a19e1dbc6641a0
or
Code:

http://cdn.videos.dolimg.com/channel_longform/gravityfalls/929066/71abaf-pgravityfalls_e1-06-f006_tdm_h929066_fprhq_v1080p23_a16x9-178_leng-h264h_aac_1920x1080_7840x160.access.mp4
How can I decrypt Adobe-access?

blimey 06-15-2014 03:58 PM

Re: Decryp adobe access?


 
The disney implementation of adobe access (AA) appears to be similar to the one used in the off-line version of bbc iplayer. The disney mp4 files have CEK metadata that is flagged for off-line decryption and license storage. In theory this should be easier to decrpyt than an implementation of AA that requires active online key exchange. That being said, I haven't seen any compromise for AA - including this off-line method.

Disney still has the non-secure cdn active for mp4 format without AA. Use that until they disable it, or use hls (m3u8).

mrberni 06-15-2014 05:01 PM

Re: Decryp adobe access?


 
OK, but I can only find 480p for non-secure cdn and hls, whereas the encrypted video is available as 1080p.

Or do you now a way, to get the 1080p video for the non-secure or hls video?

blimey 06-15-2014 05:55 PM

Re: Decryp adobe access?


 
I see the non-secure cdn url in memory, but I don't know where it is coming from in terms of network traffic. I suspect the player swf is getting it.

blimey 06-15-2014 06:04 PM

Re: Decryp adobe access?


 
I think the player swf is getting some manifest, smil, or json data that it is not entirely using. This is different than just what is in the page source. It is in memory, but no hint of the network resource from traffic or the decompiled swf.
Code:

http://cdn.videos.dolimg.com/channel_longform/gravityfalls/929066/be22aa-pgravityfalls_e1-06-f006_tdm_h929066_fprhq_v1080p23_a16x9-178_leng-h264h_aac_1920x1080_7840x160.mp4
It is probably not worth a lot of work locating the network source because they are obviously transitioning to flash access.

mrberni 06-16-2014 04:10 AM

Re: Decryp adobe access?


 
Which program do you use to look into the memory?

denobis 06-16-2014 07:46 AM

Re: Decryp adobe access?


 
I can get the links through a kaltura call, although maybe it's not the standard mechanism disney follows.

mrberni 06-16-2014 11:30 AM

Re: Decryp adobe access?


 
denobis, can you explain how you did it?
Or maybe implement the disney site to atresdownloader?

thank you

denobis 06-16-2014 12:30 PM

Re: Decryp adobe access?


 
Quote:

Originally Posted by mrberni (Post 68412)
denobis, can you explain how you did it?
Or maybe implement the disney site to atresdownloader?

thank you

See https://github.com/denobis/4od/blob/...deosdisney.php

blimey 06-16-2014 02:17 PM

Re: Decryp adobe access?


 
Thanks denobis, that does work. I saw references in the page source, but no traffic to there in wireshark, at least for video.disney.com. Looking at disneyxd.disney.com, there is some traffic to kaltura for the hls link, but in a different format from that shown in your script. Nice work!

mrberni 06-16-2014 03:16 PM

Re: Decryp adobe access?


 
Thank you denobis!
But how to use this php script? I have php already installed

blimey 06-16-2014 03:31 PM

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.

mrberni 06-16-2014 03:44 PM

Re: Decryp adobe access?


 
An example URL would be nice.

Thank you

save8lot 08-16-2014 12:42 AM

Re: Decryp adobe access?


 
Quote:

Originally Posted by blimey (Post 68416)
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. :)

blimey 08-16-2014 01:13 AM

Re: Decryp adobe access?


 
Quote:

Originally Posted by save8lot (Post 69845)
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


save8lot 08-16-2014 01:52 AM

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).

blimey 08-16-2014 02:15 AM

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.

save8lot 08-16-2014 02:35 AM

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?

save8lot 08-16-2014 04:51 AM

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.

save8lot 08-17-2014 04:25 AM

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!! :)

mrberni 08-18-2014 03:25 AM

Re: Decryp adobe access?


 
Quote:

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!! :)
I think there are no subtitles for these two videos, because you can't select closed captioning at the videoplayer there.

But what you can try is to use the subtitles from the watchdisneychannl version:
Code:

http://cdn.video.abc.com/video_disneychannel/cc/DMM_017_THEADORABLECOUPLE_WEBISODE_8b76db61-0c1a-4267-9dc8-37f807d45d91_10008490.xml
http://cdn.video.abc.com/video_disneychannel/cc/DMM_011_THIRDWHEEL_WEBISODE_d460d8e2-e5f7-4cd5-9212-c6c3cbdc0b87_10006487.xml

I don't know if they are compatible, but you can try it. But when you convert them, you have to adjust the time for every line by one hour earlier.

save8lot 08-19-2014 05:04 AM

Re: Decryp adobe access?


 
Thanks mrberni.

I will convert them to SRT and adjust the times as you said. Hopefully that will work. :)


Thanks for your help.

randyrulzz2014 09-14-2014 05:06 AM

Re: Decryp adobe access?


 
I want download this video:
Code:

http://video.disney.com/watch/disneychannel-send-me-an-angel-fish-4c2e6a64c67d161c89d062ab
but can't download it because of security token.
Code:

f029_tdm_h924823_fprhq_v1080p23_a16x9-178_leng-h264h_aac_1920x1080_7840x160.access.mp4?nvb=20140914093121&nva=20140914163121&token=0a665d63d3bbde9fd42cf
Can someone help me to download the video, please?

thanks in advance!

Stream Ripper 09-15-2014 11:50 PM

Re: Decryp adobe access?


 
Quote:

Originally Posted by randyrulzz2014 (Post 70565)
I want download this video:
Code:

http://video.disney.com/watch/disneychannel-send-me-an-angel-fish-4c2e6a64c67d161c89d062ab
but can't download it because of security token.
Code:

f029_tdm_h924823_fprhq_v1080p23_a16x9-178_leng-h264h_aac_1920x1080_7840x160.access.mp4?nvb=20140914093121&nva=20140914163121&token=0a665d63d3bbde9fd42cf
Can someone help me to download the video, please?

thanks in advance!

It's encrypted so your best bet will be a screen capture tool such as Replay Video Capture - takes more time, BUT it's HD and we trust and recommend it

mrberni 09-16-2014 01:28 PM

Re: Decryp adobe access?


 
Quote:

Originally Posted by randyrulzz2014 (Post 70565)
I want download this video:
Code:

http://video.disney.com/watch/disneychannel-send-me-an-angel-fish-4c2e6a64c67d161c89d062ab
but can't download it because of security token.
Code:

f029_tdm_h924823_fprhq_v1080p23_a16x9-178_leng-h264h_aac_1920x1080_7840x160.access.mp4?nvb=20140914093121&nva=20140914163121&token=0a665d63d3bbde9fd42cf
Can someone help me to download the video, please?

thanks in advance!

What you can do is to download the video from watchdisneychannel.go.com. If you need any instruction on how to download it from there, just pm me.

peterpan 09-16-2014 02:09 PM

Re: Decryp adobe access?


 
Don't you need to have a sub for that dude?!

mrberni 09-17-2014 05:00 AM

Re: Decryp adobe access?


 
Quote:

Originally Posted by peterpan (Post 70635)
Don't you need to have a sub for that dude?!

You mean for the locked episodes? You can actually download them, without loggin in.

PieBeatsCake 10-02-2014 04:38 AM

Re: Decryp adobe access?


 
I've been trying to figure out how to get this video in 720p but I have no idea how to grab the newer mp4s from this site anymore
Code:

http://video.disney.com/watch/disneyxd-property-of-ezra-bridger-4ffdb3ce67ae51e70409b56c
and when I try to use the ffmpeg method on this site
Code:

http://watchdisneyxd.go.com/star-wars-rebels/video/vdka0_eyup7qbx/property-of-ezra-bridger
I'm only able to grab it in 1080p.

Does anyone know what I could do in either case?

denobis 10-02-2014 04:42 AM

Re: Decryp adobe access?


 
http://cdn.secure.videos.dolimg.com/...767eb50a33b430

Use atresdownloader

PieBeatsCake 10-02-2014 05:45 AM

Re: Decryp adobe access?


 
Quote:

Originally Posted by denobis (Post 71136)

Thanks, I'll try that.

save8lot 10-06-2014 07:57 AM

Re: Decryp adobe access?


 
@Blimey-

Hey I was wondering if video.disney.com changed something on their site because the two most recent mickey mouse shorts are not downloadable via the normal method. I can get the direct download links as usual, but they just refuse to actually download.


#1
Code:

Streaming Link: http://video.disney.com/watch/disneychannel-the-boiler-room-504795c007d9ef5166af36d6
Code:

1080p Direct Download Link: http://cdn.videos.dolimg.com/production/secure/channel_longform/dmms/k100000748/d7b939-tdm_pdmms-023_hk100000748-h264h_aac_1920x1080_7840x160.mp4
Code:

Subtitles Link: http://cdn.videos.dolimg.com/production/secure/channel_longform/dmms/k100000748/2d46bc-tcap_pdmms-023_hk100000748-cap2ttml.xml
Code:

Authorization Required Download Link: http://cdn.secure.videos.dolimg.com/production/secure/channel_longform/dmms/k100000748/d7b939-tdm_pdmms-023_hk100000748-h264h_aac_1920x1080_7840x160.mp4
None of these will work for some reason. Same problem with the episode below.

#2
Code:

Streaming Link: http://video.disney.com/watch/disneychannel-mumbai-madness-503daabec8b72dcd266003c9
Did they recently add some new protection to their site or is there an alternative way to download these two videos?

Thanks in advance Blimey :)

mrberni 10-06-2014 09:55 AM

Re: Decryp adobe access?


 
Quote:

Originally Posted by save8lot (Post 71236)
Code:

Subtitles Link: http://cdn.videos.dolimg.com/production/secure/channel_longform/dmms/k100000748/2d46bc-tcap_pdmms-023_hk100000748-cap2ttml.xml

I don't know how to download the video, but the subtitle URL is this:
Code:

http://video.disney.com/watch/captions/production/secure/channel_longform/dmms/k100000748/2d46bc-tcap_pdmms-023_hk100000748-cap2ttml.xml?nvb=20141006144052&nva=20141006214052&token=03e250f73c6132ac935f7
The URL can be found in the source code of the page.

But have here the Links from the watchdisneychannel site:

Mumbai Madness:
Code:

1080p direct Link: http://cdn1.edgedatg.com/re/video_disneychannel/mp4/source/DMM_027_MUMBAIMADNESS_WEBISODE_ae1d3b29-1ba4-4857-9cc5-30aca5f30f97_10021059_source.mp4
Code:

Subtitles: http://cdn.video.abc.com/video_disneychannel/cc/DMM_027_MUMBAIMADNESS_WEBISODE_ae1d3b29-1ba4-4857-9cc5-30aca5f30f97_10021059.xml
Code:

Links can be found here: http://api.watchabc.go.com/vp2/ws/s/contents/2015/videos/004/001/-1/-1/-1/VDKA0_6ks3wacc/-1/-1?v=08.00
The Boiler Room:
Code:

1080p direct Link: http://cdn1.edgedatg.com/re/video_disneychannel/mp4/source/DMM_023_THEBOILERROOM_WEBISODE_5a325638-6284-44a7-aa05-66305c374aa8_10021031_source.mp4
Code:

Subtitles: http://cdn.video.abc.com/video_disneychannel/cc/DMM_023_THEBOILERROOM_WEBISODE_5a325638-6284-44a7-aa05-66305c374aa8_10021031.xml
Code:

Links can be found here: http://api.watchabc.go.com/vp2/ws/s/contents/2015/videos/004/001/-1/-1/-1/VDKA0_dwzf730t/-1/-1?v=08.00

denobis 10-06-2014 12:07 PM

Re: Decryp adobe access?


 
Quote:

Originally Posted by save8lot (Post 71236)
@Blimey-

Hey I was wondering if video.disney.com changed something on their site because the two most recent mickey mouse shorts are not downloadable via the normal method. I can get the direct download links as usual, but they just refuse to actually download.


#1
Code:

Streaming Link: http://video.disney.com/watch/disneychannel-the-boiler-room-504795c007d9ef5166af36d6
Code:

1080p Direct Download Link: http://cdn.videos.dolimg.com/production/secure/channel_longform/dmms/k100000748/d7b939-tdm_pdmms-023_hk100000748-h264h_aac_1920x1080_7840x160.mp4
Code:

Subtitles Link: http://cdn.videos.dolimg.com/production/secure/channel_longform/dmms/k100000748/2d46bc-tcap_pdmms-023_hk100000748-cap2ttml.xml
Code:

Authorization Required Download Link: http://cdn.secure.videos.dolimg.com/production/secure/channel_longform/dmms/k100000748/d7b939-tdm_pdmms-023_hk100000748-h264h_aac_1920x1080_7840x160.mp4
None of these will work for some reason. Same problem with the episode below.

#2
Code:

Streaming Link: http://video.disney.com/watch/disneychannel-mumbai-madness-503daabec8b72dcd266003c9
Did they recently add some new protection to their site or is there an alternative way to download these two videos?

Thanks in advance Blimey :)

Use atresdownloader

mrberni 10-06-2014 03:06 PM

Re: Decryp adobe access?


 
@denobis

In the mediafire folder from Atresdownloader, there are these files:
adnivkey.exe
adnextractkey.php
Archive.zip

Do I need them for Atresdownloader?

EDIT:
Just tried out Atresdownloader, and it actually works with the Disney site.
But it can't download the subtitles.

The Subtitles URL look like this:
Code:

http://video.disney.com/watch/captions/production/secure/channel_longform/dmms/k100000748/2d46bc-tcap_pdmms-023_hk100000748-cap2ttml.xml?nvb=20141006144052&nva=20141006214052&token=03e250f73c6132ac935f7
Atresdownloader finds this:
Code:

/watch/captions/production/secure/channel_longform/dmms/k100000748/2d46bc-tcap_pdmms-023_hk100000748-cap2ttml.xml?nvb=20141006144052&nva=20141006214052&token=03e250f73c6132ac935f7
All it has to do is add "http://video.disney.com" to it.

save8lot 10-06-2014 05:13 PM

Re: Decryp adobe access?


 
Quote:

Originally Posted by mrberni (Post 71240)
I don't know how to download the video

Yeah, its rather strange. The link should work fine but it just hangs instead of downloading. Either there is something wrong with the server they have it saved on, or they changed the way they are protecting new videos.

Quote:

Originally Posted by mrberni (Post 71240)
Code:

http://video.disney.com/watch/captions/production/secure/channel_longform/dmms/k100000748/2d46bc-tcap_pdmms-023_hk100000748-cap2ttml.xml?nvb=20141006144052&nva=20141006214052&token=03e250f73c6132ac935f7
The URL can be found in the source code of the page.

Thanks. That is obviously something else that has changed. The subs did not used to start with "video.disney.com" and they did not need the Token information either to download. So both are new.

Quote:

Originally Posted by mrberni (Post 71240)
But have here the Links from the watchdisneychannel site:

Mumbai Madness:
Code:

1080p direct Link: http://cdn1.edgedatg.com/re/video_disneychannel/mp4/source/DMM_027_MUMBAIMADNESS_WEBISODE_ae1d3b29-1ba4-4857-9cc5-30aca5f30f97_10021059_source.mp4
Code:

Subtitles: http://cdn.video.abc.com/video_disneychannel/cc/DMM_027_MUMBAIMADNESS_WEBISODE_ae1d3b29-1ba4-4857-9cc5-30aca5f30f97_10021059.xml
Code:

Links can be found here: http://api.watchabc.go.com/vp2/ws/s/contents/2015/videos/004/001/-1/-1/-1/VDKA0_6ks3wacc/-1/-1?v=08.00
The Boiler Room:
Code:

1080p direct Link: http://cdn1.edgedatg.com/re/video_disneychannel/mp4/source/DMM_023_THEBOILERROOM_WEBISODE_5a325638-6284-44a7-aa05-66305c374aa8_10021031_source.mp4
Code:

Subtitles: http://cdn.video.abc.com/video_disneychannel/cc/DMM_023_THEBOILERROOM_WEBISODE_5a325638-6284-44a7-aa05-66305c374aa8_10021031.xml
Code:

Links can be found here: http://api.watchabc.go.com/vp2/ws/s/contents/2015/videos/004/001/-1/-1/-1/VDKA0_dwzf730t/-1/-1?v=08.00

Thank you for supplying me with the watchdisneychannel links. They actually seem to be better quality since they have a slightly higher bitrate. However I found it strange that two episodes were missing from that site (No Service and Croissant de Triomphe). Both are available on the video.disney site, so i found that strange that watchdisneychannel didnt have them, but no big deal.

I actually noticed the same problem, of not being able to download, with a few other videos that were recently added to the video.disney site so I would really like to figure out "WHY" they are suddenly not working.

Perhaps Blimey or someone else will be able to figure out why.

Thanks again :)

mrberni 10-06-2014 05:28 PM

Re: Decryp adobe access?


 
It seems that they removed "No Service" and "Croissant de Triomphe" from watchdisneychannel. They had them once.
The URLs were:
Code:

http://watchdisneychannel.go.com/disney-mickey-mouse/video/vdka0_jbr1p0k2/no-service
http://watchdisneychannel.go.com/disney-mickey-mouse/video/vdka0_avvo6erv/croissant-de-triomphe

And for video.disney.com site:
Atresdownloader uses the secure link and adds a token:
Code:

http://cdn.secure.videos.dolimg.com/production/secure/channel_longform/dmms/k100000748/d7b939-tdm_pdmms-023_hk100000748-h264h_aac_1920x1080_7840x160.mp4?nvb=20141006212839&nva=20141007042839&token=03fb1cd54a1b2b0576fdf
I would like to know how to find this token.

But Atresdownloader only found a 1080p link for "The Boiler Room".

save8lot 10-06-2014 06:35 PM

Re: Decryp adobe access?


 
Quote:

Originally Posted by mrberni (Post 71263)
It seems that they removed "No Service" and "Croissant de Triomphe" from watchdisneychannel. They had them once.
The URLs were:
Code:

http://watchdisneychannel.go.com/disney-mickey-mouse/video/vdka0_jbr1p0k2/no-service
http://watchdisneychannel.go.com/disney-mickey-mouse/video/vdka0_avvo6erv/croissant-de-triomphe


Well, i think they were the first two episodes in the series, so maybe they are phasing them out, starting with the oldest. Who knows.

Quote:

Originally Posted by mrberni (Post 71263)
And for video.disney.com site:
Atresdownloader uses the secure link and adds a token:
Code:

http://cdn.secure.videos.dolimg.com/production/secure/channel_longform/dmms/k100000748/d7b939-tdm_pdmms-023_hk100000748-h264h_aac_1920x1080_7840x160.mp4?nvb=20141006212839&nva=20141007042839&token=03fb1cd54a1b2b0576fdf
I would like to know how to find this token.

But Atresdownloader only found a 1080p link for "The Boiler Room".

Wow, you got it to work. The link is exactly the same as the one i posted, expect for the token information. No idea where that came from or how Atresdownloader found it.

I have tried MANY times to get Atresdownloader to work for me, but it never does. I have no idea what i am doing wrong. What URL did you use in atresdownloader to find the working link?

mrberni 10-07-2014 03:17 AM

Re: Decryp adobe access?


 
I just used the normal URL from the video:
Code:

http://video.disney.com/watch/disneychannel-the-boiler-room-504795c007d9ef5166af36d6
I have Atresdownloader version 17.3. It needs some time to get the links.

And it seems that the token information expires after some time.

blimey 10-07-2014 03:36 AM

Re: Decryp adobe access?


 
Quote:

Originally Posted by mrberni (Post 71282)
I just used the normal URL from the video:
Code:

http://video.disney.com/watch/disneychannel-the-boiler-room-504795c007d9ef5166af36d6

For that particular video, the 1920x1080_7840x160 progressive url (with codes/token) is right in the source page.

mrberni 10-07-2014 04:29 AM

Re: Decryp adobe access?


 
Quote:

Originally Posted by blimey (Post 71283)
For that particular video, the 1920x1080_7840x160 progressive url (with codes/token) is right in the source page.

Yes I know, but the last time I tried them, they didn't work. But now they do. That's a bit strange.


All times are GMT -6. The time now is 09:26 PM.