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

Adobe HDS Downloader

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

slim10 04-26-2016 11:15 AM

Re: Adobe HDS Downloader


 
Quote:

Originally Posted by Quaraxkad (Post 84093)
Read: https://github.com/K-S-V/Scripts/wiki

--quality low/medium/high


Or he can choose the exact bitrate. According to his screen cap, the choices appear to be: 4057, 2105, 1298, 765, 460 or 257.

umairpk85 05-03-2016 12:39 PM

Re: Adobe HDS Downloader


 
thanks alot for the help guys.. one more thing.. does adobe hds works on windows 2012R2 ? i shifted to this window today and i m not able to make it workout on adobe hds here.. plz help

Gbry 05-04-2016 10:30 AM

Re: Adobe HDS Downloader


 
Hi guys,
is it possible to increase the "updating bootstrap info:...." attempts?

Seems to me that after the second one, HDS stop to record.

AlvoErrado2 05-07-2016 08:28 PM

Re: Adobe HDS Downloader


 
Code:

http://www.tfou.fr/miraculous/videos/miraculous-les-aventures-de-ladybug-et-chat-noir-volpina-8729591-739.html
Code:

C:\Scripts-master>php AdobeHDS.php --manifest "http://web.q1.tf1.fr/2/USP-0x0/94/75/12989475/ssm/12989475.ism/12989475.f4m?vk=MTI5ODk0NzUuZjRt&st=pDzx0C8sYiGlejlq9Et7pQ&e=1462797912&t=1462668312&bu=TFOU&login=miraculous-tfou&i=195.154.116.60&u=3056e51cf860b4a952b391f275e70512&sum=1889bfac533451b482f304a92a76c1cd&min_bitrate=700000&max_bitrate=2000000&seek=wat&hdcore=2.11.3&g=WNSQUCJUWJBC" --delete --auth "vk=MTI5ODk0NzUuZjRt&st=pDzx0C8sYiGlejlq9Et7pQ&e=1462797912&t=1462668312&bu=TFOU&login=miraculous-tfou&i=195.154.116.60&u=3056e51cf860b4a952b391f275e70512&sum=1889bfac533451b482f304a92a76c1cd&min_bitrate=700000&max_bitrate=2000000&seek=wat&als=0,3,0,0,0,NaN,0,0,0,43,f,48,1237.72,f,s,WNSQUCJUWJBC,2.11.3,43&hdcore=2.11.3" --useragent "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:46.0) Gecko/20100101 Firefox/46.0"

                            KSV Adobe HDS Downloader

Processing manifest info....
Access Denied! Unable to download the manifest.

I can't download the videos on this page, any suggestion?

I downloaded using the IDM, but wanted to understand how to solve this problem.

sebus 05-15-2016 02:23 AM

Re: Adobe HDS Downloader


 
HDS Link Detector add-on for Firefox does not work on Palemoon 64 26.2.2, anyway to fix it? Even if I force install, it never shows in add-on bar

edit
Had to use Portable Firefox, worked a treat

Enable the curl extension in the php.ini file (by removing the preceding semi-colon which commented that line out)
I discovered that PHP was looking for php_curl.dll in the root of PHP, so I had to move it there from the 'ext' directory.

sebus 05-25-2016 12:10 AM

Re: Adobe HDS Downloader


 
Each flv downloaded with AHDS Downloader while processed with ffmpeg to mpg gives the following errors (but in the end converts OK)

Code:

[mp4 @ 0000018c20e1e620] Invalid DTS: 1792000 PTS: 1791360 in output stream 0:0, replacing by guess
[flv @ 0000018c20d4a680] Invalid timestamps stream=0, pts=112040, dts=112080, size=2121
[mp4 @ 0000018c20e1e620] Invalid DTS: 1793280 PTS: 1792640 in output stream 0:0, replacing by guess
frame= 2803 fps= 59 q=-1.0 Lsize=  23777kB time=00:01:52.12 bitrate=1737.1kbits/s speed=2.38x
video:21908kB audio:1783kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.360898%
[aac @ 0000018c2156c800] Qavg: 892.677

Anybody has any idea why?

Same error is mentioned ie here

And still applies to latest available FFmpeg git-9591ca7 64-bit Static (2016-05-25)

sebus

xNuno 05-25-2016 10:13 AM

Re: Adobe HDS Downloader


 
Hi,

I'm using Adobe HDS script to get live stream from ISP to VLC but sometimes I get something strange like loops or repeated stuff on the player...

One thing that I did was to limit parallel connections to 1 only, this reduced the problem a lot but is not mitigated yet.

As I understand the server dont like to much connections to it like dont respect an interval and for instance when the bootstrapp needs to update and something is donwloading I get a loop or freeze.

I can't provide the link I'm using here but I can do it on PM if someone can help.

Best Regards,
Nuno

joejones15 05-25-2016 06:41 PM

Re: Adobe HDS Downloader


 
hey guys,

the script was working well, but now not getting any results, saying is unable to do FlashAccess DRM. Any ideas to help?

http://i.imgur.com/6KFgtyP.png

Gunnar 05-26-2016 11:30 AM

Re: Adobe HDS Downloader


 
Quote:

Originally Posted by Gbry (Post 84205)
Hi guys,
is it possible to increase the "updating bootstrap info:...." attempts?

Seems to me that after the second one, HDS stop to record.

Yes, same for me, fixed it by adding retries to the script, something like this, search for "$status = $cc->get($bootstrapUrl)", around line 1111? in my abused script

Also added Loginfo text plus beeps (only php-sound easily available is the Bell character for an old console, with delay inbetween)

That is, inserted 2 retries with beeps and delays, straight inline-code without any counter counting the retries.
$cc->get() is the one doing the download.
$status as 200 hex means OK, alll others different kind of problems.

First and last lines unchanged, add, insert the rest.
php.exe complains at reading the script if obvious splelling,etc errors.

$bootstrapPos = 0;
LogInfo("\n STARTSTART Updating bootstrap info, Available fragments: " . $this->fragCount);
$status = $cc->get($bootstrapUrl);
LogInfo("GOT Status: " . $status );
if ($status != 200) {
LogInfo("\n 1111Failed to refresh bootstrap info, Status: " . $status . $bootstrapUrl);
echo chr(7); usleep(10000);
echo chr(7);

$status = $cc->get($bootstrapUrl);
if ($status != 200) {
LogInfo("\n 22222Failed to refresh bootstrap info, Status: " . $status . $bootstrapUrl, true);
$status = $cc->get($bootstrapUrl);
echo chr(7); usleep(10000);
echo chr(7); usleep(10000);
echo chr(7); usleep(10000);

}
}
$bootstrapInfo = $cc->response;
ReadBoxHeader($bootstrapInfo, $bootstrapPos, $boxType, $boxSize);


Gunnar

PS Watch out with the LogError code, changed most of them as they print the error and exits, no retries.
Change them to Loginfo

PPS This helped a lot on capturing live streams, especially when also running torrents or "Cptr doing too much"
Now runs for days without this error-exit, When problems getting fragments just a matter of 6-12s of stream missing

PPPS I have also added beep-info-alerts to missed fragments, TimeStamps getting fixed or negative.
Next will be "warning-beep" when script has launched close to the default 8 simultaneus, parallel "get-fragments", a sign the connection is too slow (Need to slow down other downloads or similar).
2-3 parallel downloads means evrthng is OK for my live streams, some live streams seem to buffer only 7-8 fragments, others more.
(for archived streams I use two parallels going, enough to get full speed with no pauses inbetween)

Gunnar 05-26-2016 11:56 AM

Re: Adobe HDS Downloader


 
Quote:

Originally Posted by joejones15 (Post 84492)
hey guys,

the script was working well, but now not getting any results, saying is unable to do FlashAccess DRM. Any ideas to help?

http://i.imgur.com/6KFgtyP.png

From my Finland YLE (BBC) experience the script and detector (together) can do some encrypted streams.

That is, when it "works" there is a lot of --author, etc and cookie, etc arguments added (by HDS detector plugin frm web page) needed for the script to get the (one) encryption syst recently added.
(for garbage US action series so have not bothered checking in detail)

The (humongous) link also needs to be used within some 30-60seconds or "cant access Key"

Gunnar

PS That is, your command line didnt include any of the "humongous stuff"


All times are GMT -6. The time now is 01:03 PM.