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

CBS.com Download

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

TheRandom1 08-12-2015 07:52 AM

CBS.com Download


 
Is it possible to download

http://www.cbs.com/shows/zoo/video/L...K/zoo-sleuths/

slim94 08-12-2015 10:35 AM

Re: CBS.com Download


 
try atresdownloder.

biezom 08-12-2015 12:59 PM

Re: CBS.com Download


 
Quote:

Originally Posted by TheRandom1 (Post 78884)

Code:

http://link.theplatform.com/s/dJ5BDC/0Ha_DNQpGzp3?mbr=true&manifest=m3u
open the link >>>save file >>>>and open with notepad++
you can find m3u8 link <video src=https://cbsios-vh.akamaihd.net/i/temp_hd_gallery_video/..................................>

################################################## #####

################################################
Code:

livestreamer "hlsvariant://https://cbsios-vh.akamaihd.net/i/temp_hd_gallery_video/CBS_Production_Outlet_VMS/video_robot/CBS_Production_Entertainment/2015/08/03/497740867995/CBS_ZOO_107_CONTENT_CIAN_streamclip_R_612992_,548,3596,2596,1848,1248,848,298,158,000.mp4.csmil/master.m3u8?hdnea=acl=/i/temp_hd_gallery_video/CBS_Production_Outlet_VMS/video_robot/CBS_Production_Entertainment/2015/08/03/497740867995/CBS_ZOO_107_CONTENT_CIAN_streamclip_R_612992_*~exp=1439407811~hmac=cfd011b1f84aa6dfb52c1cfc24a90d989ff2a068c6709b03cc3e4f6184e3c393" best -o Zoo-Sleuths.ts
with in red the link given on the file
#############################################


################################################## #############

reydson 08-13-2015 01:45 PM

Re: CBS.com Download


 
How do you get the link for the playlist file?

ceppu36 08-13-2015 01:53 PM

Re: CBS.com Download


 
Quote:

Originally Posted by reydson (Post 78907)
How do you get the link for the playlist file?

Try BitAnalyzer http://www.bitanalyzer.com

http://hizliresim.com/zVnJGY

biezom 08-13-2015 02:10 PM

Re: CBS.com Download


 
Quote:

Originally Posted by reydson (Post 78907)
How do you get the link for the playlist file?

for cbs.com

Code:

http://link.theplatform.com/s/dJ5BDC/video.settings.pid?mbr=true&manifest=m3u
to find video.settings.pid view source page code Ctrl+u (on firefox)

with normal user agent you have 5f4D520I206m rtmp protocol and not the better quality

with android user agent you have 0Ha_DNQpGzp3 hls protocol and 720p

or you can use this code in php

Code:

<?php
$pageUrl="$argv[1]";
$opts1 = array(
  'http'=>array(
    'method'=>"GET",
    'header'=>"Referer: \r\n" .
                "User-Agent: Mozilla/5.0 (Android 4.2; rv:19.0) Gecko/20121129 Firefox/19.0"
  )
);

$return=file_get_contents($pageUrl, false, stream_context_create($opts1));
$pidb=  strpos($return, "video.settings.pid = '"); $pide=strpos($return, "video.settings.content_id = '");
$pidf = $pide - $pidb ; $prepid =substr($return, $pidb , $pidf); $prepid = str_replace("video.settings.pid = '","",$prepid);
$prepidb = 0; $prepide=strpos($prepid, "'"); $prepidf = $prepide - $prepidb;
$pid = substr($prepid, $prepidb , $prepidf);
echo "http://link.theplatform.com/s/dJ5BDC/$pid?mbr=true&manifest=m3u\n\n";
?>

Code:

php cbs.php http://www.cbs.com/shows/zoo/video/LPtXL81U09ww5Pl4KDgRxbQzrrb_a_2K/zoo-sleuths/



NOTA: i'm newbie in php so the code can be improved

stinkfoot 08-13-2015 02:50 PM

Re: CBS.com Download


 
you yes can being adding &callback=jquery to theplatform url to yes being displaying in browser with no being downloading.

WHOOKIDSON 08-13-2015 08:35 PM

Re: CBS.com Download


 
Quote:

Originally Posted by biezom (Post 78909)
for cbs.com

Code:

http://link.theplatform.com/s/dJ5BDC/video.settings.pid?mbr=true&manifest=m3u
to find video.settings.pid view source page code Ctrl+u (on firefox)

with normal user agent you have 5f4D520I206m rtmp protocol and not the better quality

with android user agent you have 0Ha_DNQpGzp3 hls protocol and 720p

or you can use this code in php

Code:

<?php
$pageUrl="$argv[1]";
$opts1 = array(
  'http'=>array(
    'method'=>"GET",
    'header'=>"Referer: \r\n" .
                "User-Agent: Mozilla/5.0 (Android 4.2; rv:19.0) Gecko/20121129 Firefox/19.0"
  )
);

$return=file_get_contents($pageUrl, false, stream_context_create($opts1));
$pidb=  strpos($return, "video.settings.pid = '"); $pide=strpos($return, "video.settings.content_id = '");
$pidf = $pide - $pidb ; $prepid =substr($return, $pidb , $pidf); $prepid = str_replace("video.settings.pid = '","",$prepid);
$prepidb = 0; $prepide=strpos($prepid, "'"); $prepidf = $prepide - $prepidb;
$pid = substr($prepid, $prepidb , $prepidf);
echo "http://link.theplatform.com/s/dJ5BDC/$pid?mbr=true&manifest=m3u\n\n";
?>

Code:

php cbs.php http://www.cbs.com/shows/zoo/video/LPtXL81U09ww5Pl4KDgRxbQzrrb_a_2K/zoo-sleuths/



NOTA: i'm newbie in php so the code can be improved

thanks, man .. works flawlessy! :D :cool:

statickijiji 08-14-2015 12:32 AM

Re: CBS.com Download


 
Quote:

Originally Posted by biezom (Post 78889)
Code:

http://link.theplatform.com/s/dJ5BDC/0Ha_DNQpGzp3?mbr=true&manifest=m3u
open the link >>>save file >>>>and open with notepad++
you can find m3u8 link <video src=https://cbsios-vh.akamaihd.net/i/temp_hd_gallery_video/..................................>

################################################## #####

################################################
Code:

livestreamer "hlsvariant://https://cbsios-vh.akamaihd.net/i/temp_hd_gallery_video/CBS_Production_Outlet_VMS/video_robot/CBS_Production_Entertainment/2015/08/03/497740867995/CBS_ZOO_107_CONTENT_CIAN_streamclip_R_612992_,548,3596,2596,1848,1248,848,298,158,000.mp4.csmil/master.m3u8?hdnea=acl=/i/temp_hd_gallery_video/CBS_Production_Outlet_VMS/video_robot/CBS_Production_Entertainment/2015/08/03/497740867995/CBS_ZOO_107_CONTENT_CIAN_streamclip_R_612992_*~exp=1439407811~hmac=cfd011b1f84aa6dfb52c1cfc24a90d989ff2a068c6709b03cc3e4f6184e3c393" best -o Zoo-Sleuths.ts
with in red the link given on the file
#############################################


################################################## #############

Hey, I tried using this method. It gets to the part where it says "found matching plugin stream" and the rest after that. But then it says "error: unable to open URL". Any idea what's wrong? Thanks!

ehurdler 08-18-2015 01:50 PM

Re: CBS.com Download


 
Quote:

Originally Posted by statickijiji (Post 78925)
Hey, I tried using this method. It gets to the part where it says "found matching plugin stream" and the rest after that. But then it says "error: unable to open URL". Any idea what's wrong? Thanks!

statickijiji have you figured this out? Or has anyone helped you? I tried the procedure above and I get the same message. I get " (403 Client Error: Forbidden)" message. Can anyone help, and provide the info back to me? Thanks


All times are GMT -6. The time now is 02:27 AM.