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
  #1  
Old 09-11-2015, 07:48 AM
andymosh andymosh is offline
Junior Member
 
Join Date: Sep 2015
Posts: 3
andymosh is on a distinguished road
Default

Help downloading graduation video from Uplynk player?


I am wanting to download a graduation video and I'm having a bit of trouble, this is the site where the video is displayed:

http://content.uplynk.com/player/5Sr...MQmPcTZsa.html

I check the network tab in Chrome dev tools and see a few requests, there's an m3u8 file which has a few other m3u8 files in there for different quality settings I imagine.

I eventually got to using ffmpeg (i'm on mac using homebrew) and I ran:

Code:
ffmpeg -i "http://content-ause2.uplynk.com/0f5f1ad03b48418eb085efef494426f5/g.m3u8?cid=0f5f1ad03b48418eb085efef494426f5&oid=8ab72384e3aa4ceb8e59b5d2af64e262&exp=1441965617&rn=2970515137&tc=1&ct=a&sig=422fc610d44b535ca11f435af9ae7a770df10ff2ab735788b8c8ab6ebf60af64&ad.cping=1&pbs=6efd45ea4baf4ae89702fbfc68bd8ddd" -c copy graduation.mp4
and it returned:



now as for the key, I had another look at the requests in the Network and there is this...

https://content-ause4.uplynk.com/che... 02c3c94c4c55

which might be a key? I'm not entirely sure.

If anyone could help me download this I'd be eternally grateful!
Reply With Quote
  #2  
Old 09-11-2015, 07:55 AM
slim94 slim94 is offline
Member
 
Join Date: Dec 2014
Posts: 57
slim94 is on a distinguished road
Default

Re: Help downloading graduation video from Uplynk player?


Seems you didn't grab the first m3u8 -- it worked for me doing this:


Code:
ffmpeg -i "http://content-ause3.uplynk.com/0f5f1ad03b48418eb085efef494426f5.m3u8?cid=0f5f1ad03b48418eb085efef494426f5&oid=8ab72384e3aa4ceb8e59b5d2af64e262&exp=1441976007&rn=2720210071&tc=1&ct=a&sig=aa802ee2cd5105201c68ce3bb7bd358da7472083c462821813daf1ac20e196ec&ad.cping=1&referer=content.uplynk.com" -c copy grad.ts
Reply With Quote
  #3  
Old 09-11-2015, 07:59 AM
andymosh andymosh is offline
Junior Member
 
Join Date: Sep 2015
Posts: 3
andymosh is on a distinguished road
Default

Re: Help downloading graduation video from Uplynk player?


Quote:
Originally Posted by slim94 View Post
Seems you didn't grab the first m3u8 -- it worked for me doing this:


Code:
ffmpeg -i "http://content-ause3.uplynk.com/0f5f1ad03b48418eb085efef494426f5.m3u8?cid=0f5f1ad03b48418eb085efef494426f5&oid=8ab72384e3aa4ceb8e59b5d2af64e262&exp=1441976007&rn=2720210071&tc=1&ct=a&sig=aa802ee2cd5105201c68ce3bb7bd358da7472083c462821813daf1ac20e196ec&ad.cping=1&referer=content.uplynk.com" -c copy grad.ts
I ran the same command and got a

"HTTP error 400 Bad Request"

It wouldn't have anything to do with me running ffmpeg on mac would it?

Edit: I ran the command on my windows machine and got the same 400 request?

Reply With Quote
  #4  
Old 09-11-2015, 08:24 AM
biezom biezom is offline
Senior Member
 
Join Date: Sep 2014
Posts: 1,025
biezom is on a distinguished road
Default

Re: Help downloading graduation video from Uplynk player?


Quote:
Originally Posted by andymosh View Post
I ran the same command and got a

"HTTP error 400 Bad Request"

It wouldn't have anything to do with me running ffmpeg on mac would it?

Edit: I ran the command on my windows machine and got the same 400 request?

because you can't use the same code
you need use your own code

you can find your own code in the source page code

you must be fast, because the code expires in 30 seconds

exp=1441977260
Reply With Quote
  #5  
Old 09-11-2015, 08:26 AM
slim94 slim94 is offline
Member
 
Join Date: Dec 2014
Posts: 57
slim94 is on a distinguished road
Default

Re: Help downloading graduation video from Uplynk player?


Quote:
Originally Posted by biezom View Post
because you can't use the same code
you need use your own code

you can find your own code in the source page code

you must be fast, because the code expires in 30 seconds

exp=1441977260
yeah i ran it on ffmpeg and got the stream downloading then went to try in livestreamer and it had already expired.
Reply With Quote
  #6  
Old 09-11-2015, 08:28 AM
andymosh andymosh is offline
Junior Member
 
Join Date: Sep 2015
Posts: 3
andymosh is on a distinguished road
Default

Re: Help downloading graduation video from Uplynk player?


Ah okay, I have to apologize it's the first time I've had to do anything like this, thank-you both for your help, just to clarify it is the url in the requests here:



I noticed in slim94's url there is "&referer=content.uplynk.com" at the end where I can't find it in this URL.

Edit: It seems to be working!



Will ffmpeg choose the best quality stream by default or do I need to specify some options for that? Thanks again the both of you, life savers!
Reply With Quote
  #7  
Old 09-11-2015, 08:49 AM
biezom biezom is offline
Senior Member
 
Join Date: Sep 2014
Posts: 1,025
biezom is on a distinguished road
Default

Re: Help downloading graduation video from Uplynk player?


Quote:
Originally Posted by andymosh View Post
Ah okay, I have to apologize it's the first time I've had to do anything like this, thank-you both for your help, just to clarify it is the url in the requests here:



I noticed in slim94's url there is "&referer=content.uplynk.com" at the end where I can't find it in this URL.
you sniff with chrome, he sniff with firefox


Quote:
Edit: It seems to be working!

Will ffmpeg choose the best quality stream by default or do I need to specify some options for that? Thanks again the both of you, life savers!
yes best by default
Reply With Quote
  #8  
Old 09-11-2015, 09:33 AM
slim94 slim94 is offline
Member
 
Join Date: Dec 2014
Posts: 57
slim94 is on a distinguished road
Default

Re: Help downloading graduation video from Uplynk player?


Quote:
Originally Posted by biezom View Post
you sniff with chrome, he sniff with firefox
yeah i find firefox + httpfox are the best combo for this kind of stuff.
Reply With Quote
  #9  
Old 07-13-2016, 08:22 AM
notoriusbig notoriusbig is offline
Junior Member
 
Join Date: Jul 2016
Posts: 4
notoriusbig is on a distinguished road
Default

Re: Help downloading graduation video from Uplynk player?


Hi All

I am also struggling download graduation from this link

http://content.uplynk.com/player/Bpm...qB0Z6zQea.html

tried the above but its not working. Any help appreciated.

notoriusbig
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 01:54 AM.


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