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 > rtmpdump
Register FAQ Members List Calendar Mark Forums Read

Reply Post New Thread
 
Thread Tools Display Modes
  #201  
Old 08-22-2014, 08:04 PM
seriousdizzle seriousdizzle is offline
Junior Member
 
Join Date: Feb 2013
Posts: 2
seriousdizzle is on a distinguished road
Default

Re: Adobe HDS Downloader


Greetings,

Sorry if this has been asked before. But is there a way to use the hds downloader output, as a source for ffmpeg?

Or, is there a way to use hds downloader to push to an rtmp destination instead of vlc? (This is what I would use ffmpeg for).

Thanks so much.
Reply With Quote
  #202  
Old 09-06-2014, 09:43 PM
jessyrichard jessyrichard is offline
Junior Member
 
Join Date: Sep 2014
Posts: 1
jessyrichard is on a distinguished road
Default

Re: Adobe HDS Downloader


I have using Adobe HDS Downloader for 2 years.
The script are working very well for me.
I haven't got even an error until now.
I have a question about the script.
Last week, I accidentally closed the command line while the downloading are continuing, after %90 of the downloading is complete.
There are seg-frag files in my Adobe HDS Downloader folder.
How can I join them as manually for watch %90 of the video?
Is there a way for that?
Thank you very much for your help.
Reply With Quote
  #203  
Old 09-06-2014, 11:01 PM
slim10 slim10 is offline
Member
 
Join Date: Jun 2013
Posts: 47
slim10 is on a distinguished road
Default

Re: Adobe HDS Downloader


Quote:
Originally Posted by jessyrichard View Post
I have using Adobe HDS Downloader for 2 years.
The script are working very well for me.
I haven't got even an error until now.
I have a question about the script.
Last week, I accidentally closed the command line while the downloading are continuing, after %90 of the downloading is complete.
There are seg-frag files in my Adobe HDS Downloader folder.
How can I join them as manually for watch %90 of the video?
Is there a way for that?
Thank you very much for your help.
Read the section "Offline fragment processing":
https://github.com/K-S-V/Scripts/wiki
Reply With Quote
  #204  
Old 09-09-2014, 09:29 AM
denobis denobis is offline
Senior Member
 
Join Date: Sep 2013
Posts: 568
denobis is on a distinguished road
Default

Re: Adobe HDS Downloader


Hi,

for some videos, like http://www.dailymotion.com/video/x24u2h3,
the script fails. With these changes works:

************************************************

869 // Extract baseFilename
870 $this->baseFilename = $this->media['url'];

to

// Extract baseFilename

$this->baseFilename = explode("?",$this->media['url'])[0];

if ($this->auth=="") $this->auth="?".explode("?",$this->media['url'])[1];

************************************************

and

886 $this->fragUrl = AbsoluteUrl($this->baseUrl, $this->media['url']);

to

$this->media['url']=explode("?",$this->media['url'])[0];

$this->fragUrl = AbsoluteUrl($this->baseUrl, $this->media['url']);

**************************************************
I dont know if these changes break other streams.
Reply With Quote
  #205  
Old 10-15-2014, 02:01 AM
maniac8828 maniac8828 is offline
Junior Member
 
Join Date: Oct 2014
Posts: 14
maniac8828 is on a distinguished road
Default

Re: Adobe HDS Downloader


I keep getting the below error when I tried to download a video:

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

I am new to this. Can anyone help?
Thanks in advance
Reply With Quote
  #206  
Old 10-15-2014, 03:27 AM
Hatchet Hatchet is offline
Junior Member
 
Join Date: Oct 2014
Posts: 10
Hatchet is on a distinguished road
Default

Re: Adobe HDS Downloader


Video url?
Reply With Quote
  #207  
Old 10-15-2014, 04:20 AM
maniac8828 maniac8828 is offline
Junior Member
 
Join Date: Oct 2014
Posts: 14
maniac8828 is on a distinguished road
Default

Re: Adobe HDS Downloader


Quote:
Originally Posted by Hatchet View Post
Video url?
http://colors.in.com/in/biggboss/vid...036-2.html#nav

Sorry missed it :P
Reply With Quote
  #208  
Old 10-15-2014, 05:04 AM
Hatchet Hatchet is offline
Junior Member
 
Join Date: Oct 2014
Posts: 10
Hatchet is on a distinguished road
Default

Re: Adobe HDS Downloader


Quote:
Originally Posted by maniac8828 View Post
I keep getting the below error when I tried to download a video:

Processing manifest info....
Access Denied! Unable to download the manifest.
Use this with an an Indian proxy/vpn (if you live outside India) to get your command line:
https://addons.mozilla.org/en-US/fir...link-detector/

Code:
php AdobeHDS.php --manifest "http://vodcolors-vh.akamaihd.net/z/revamp/14102014/BIGGBOS8EPISODEP23/SEGWHOLE-,256000,512000,712000,.mp4.csmil/manifest.f4m?hdnea=st=1413365954~exp=1413365984~acl=/*~hmac=fc97ded0f6596571a3e4a4d4c57f2693f831c9708dbe9561a480ab4cd3a1263b&jwstreamtype=hds&g=HQFPLWARZNSP&hdcore=3.3.0&plugin=jwplayer-3.3.0.0" --delete --auth "hdntl=exp=1413452358~acl=%2f*~data=hdntl~hmac=8537f7f25ec16db76fb6e91d76680954b96d4c1f8046cf0db9e57d625491fe2a&jwstreamtype=hds&als=0,3,NaN,0,0,NaN,0,0,0,19,f,0,2725.06,f,s,HQFPLWARZNSP,3.3.0,19&hdcore=3.3.0&plugin=jwplayer-3.3.0.0" --useragent "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:33.0) Gecko/20100101 Firefox/33.0"

Reply With Quote
  #209  
Old 10-15-2014, 05:40 AM
denobis denobis is offline
Senior Member
 
Join Date: Sep 2013
Posts: 568
denobis is on a distinguished road
Default

Re: Adobe HDS Downloader


There is a m3u8 stream

http://vodcolors-vh.akamaihd.net/i/r..._av.m3u8?null=

with atresdownloader
Reply With Quote
  #210  
Old 10-15-2014, 08:19 AM
maniac8828 maniac8828 is offline
Junior Member
 
Join Date: Oct 2014
Posts: 14
maniac8828 is on a distinguished road
Default

Re: Adobe HDS Downloader


Quote:
Originally Posted by Hatchet View Post
Use this with an an Indian proxy/vpn (if you live outside India) to get your command line:
https://addons.mozilla.org/en-US/fir...link-detector/

Code:
php AdobeHDS.php --manifest "http://vodcolors-vh.akamaihd.net/z/revamp/14102014/BIGGBOS8EPISODEP23/SEGWHOLE-,256000,512000,712000,.mp4.csmil/manifest.f4m?hdnea=st=1413365954~exp=1413365984~acl=/*~hmac=fc97ded0f6596571a3e4a4d4c57f2693f831c9708dbe9561a480ab4cd3a1263b&jwstreamtype=hds&g=HQFPLWARZNSP&hdcore=3.3.0&plugin=jwplayer-3.3.0.0" --delete --auth "hdntl=exp=1413452358~acl=%2f*~data=hdntl~hmac=8537f7f25ec16db76fb6e91d76680954b96d4c1f8046cf0db9e57d625491fe2a&jwstreamtype=hds&als=0,3,NaN,0,0,NaN,0,0,0,19,f,0,2725.06,f,s,HQFPLWARZNSP,3.3.0,19&hdcore=3.3.0&plugin=jwplayer-3.3.0.0" --useragent "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:33.0) Gecko/20100101 Firefox/33.0"

Thanks for replying. I did the same in PHP but I am still getting the error below:

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 12:18 AM.


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