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

biezom 08-18-2015 03:04 PM

Re: CBS.com Download


 
Quote:

Originally Posted by ehurdler (Post 79005)
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

perhaps not fast enough. you have about 2 min, after the link expires

statickijiji 08-18-2015 11:12 PM

Re: CBS.com Download


 
Quote:

Originally Posted by biezom (Post 79008)
perhaps not fast enough. you have about 2 min, after the link expires

Hey Biezom, thanks for the reply. I'm totally new at this. I was just tried using the exact link you posted in an earlier post. this one:

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
I just wanted to test it, to see what results I would get. So i grabbed that code, opened up CMD, and entered it. So from what you are saying, a section of this code only lasts 2 minutes, and changes? I tried following the directions in your other post, about the video.settings.pid, but still had trouble. Thanks for the help either way!

biezom 08-18-2015 11:27 PM

Re: CBS.com Download


 
Quote:

Originally Posted by statickijiji (Post 79018)
Hey Biezom, thanks for the reply. I'm totally new at this. I was just tried using the exact link you posted in an earlier post. this one:

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
I just wanted to test it, to see what results I would get. So i grabbed that code, opened up CMD, and entered it. So from what you are saying, a section of this code only lasts 2 minutes, and changes? I tried following the directions in your other post, about the video.settings.pid, but still had trouble. Thanks for the help either way!

hi you can't use the same code because the code is available for my ip and just for two minutes

so you need find your own code with this

IMPORTANT need US ip

Code:

http://link.theplatform.com/s/dJ5BDC/0Ha_DNQpGzp3?mbr=true&manifest=m3u
like i said in this post

Code:

http://stream-recorder.com/forum/showpost.php?p=78889&postcount=3

statickijiji 08-19-2015 12:33 AM

Re: CBS.com Download


 
Quote:

Originally Posted by biezom (Post 79019)
hi you can't use the same code because the code is available for my ip and just for two minutes

so you need find your own code with this

IMPORTANT need US ip

Code:

http://link.theplatform.com/s/dJ5BDC/0Ha_DNQpGzp3?mbr=true&manifest=m3u
like i said in this post

Code:

http://stream-recorder.com/forum/showpost.php?p=78889&postcount=3

I guess that's the problem i'm having. I downloaded the link.theplatform.com file. When I open, it shows:

"<ref src="http://link.theplatform.com/s/errorFiles/Unavailable.mp4" title="Geographic Restriction" abstract="This content is not available in your location.".......

I don't know what to do with the file, or how to get the link I need. Sorry, I'm really new at this. Thanks!

biezom 08-19-2015 06:27 AM

Re: CBS.com Download


 
Quote:

Originally Posted by statickijiji (Post 79020)
I guess that's the problem i'm having. I downloaded the link.theplatform.com file. When I open, it shows:

"<ref src="http://link.theplatform.com/s/errorFiles/Unavailable.mp4" title="Geographic Restriction" abstract="This content is not available in your location.".......

I don't know what to do with the file, or how to get the link I need. Sorry, I'm really new at this. Thanks!

you have your answer in your post need US ip

statickijiji 08-19-2015 06:22 PM

Re: CBS.com Download


 
Quote:

Originally Posted by biezom (Post 79024)
you have your answer in your post need US ip

Ahh, I'm a dummy. I was using a vpn, to access the videos originally, but I didn't think that I needed to have my vpn running, and have the video playing, before downloading that file. I assumed that it was just a file, and nothing more. But I guess it retrieves the information from the video when downloaded. Thanks Biezom, you're the best!

@ehurdler:

1. Make sure you are in the US, or have a US ip.
2. Download that file provided by biezom.
3. Open the file that you just downloaded, and all of the information will be filled out.
4. Copy the link that starts with https://cbsios-vh.akamaihd.net.... (it's a long link)
5. Take that link, and paste it into this >>
Code:

livestreamer "hlsvariant://HERE" best -o Zoo-Sleuths.ts
6. Now grab that livestreamer link, and run it in CMD, it will start downloading on it's own.

Thanks again Biezom!

statickijiji 08-19-2015 07:26 PM

Re: CBS.com Download


 
Hey biezom,

Just trying to use the same method to download other videos.

I tried using your method of getting the "video.settings.pid" and inserting it into this
Code:

http://link.theplatform.com/s/dJ5BDC/video.settings.pid?mbr=true&manifest=m3u
But when I do this, my file looks a little different. there is no "https://cbsios-vh.akamaihd.net/i/temp_hd_gallery_video....".

This time, this pops up "rtmp://cp48590.edgefcs.net/ondemand/?auth=daEdQaTdFa5caafb4dmc4d2cmccaibyc_dD-bv1sW4-h0-G9BPdUqf&amp". They seem to be .mp4 links, but they don't work with the livestreamer code.

Any idea what i'm doing wrong? thanks!

Here's an image of my page source
Code:

http://imgur.com/SQUwo8N

slim94 08-19-2015 07:41 PM

Re: CBS.com Download


 
Quote:

Originally Posted by statickijiji (Post 79050)
Ahh, I'm a dummy. I was using a vpn, to access the videos originally, but I didn't think that I needed to have my vpn running, and have the video playing, before downloading that file. I assumed that it was just a file, and nothing more. But I guess it retrieves the information from the video when downloaded. Thanks Biezom, you're the best!

@ehurdler:

1. Make sure you are in the US, or have a US ip.
2. Play the video from CBS
3. Download that file provided by biezom.
4. Open the file that you just downloaded, and all of the information will be filled out.
5. Copy the link that starts with https://cbsios-vh.akamaihd.net.... (it's a long link)
6. Take that link, and paste it into this >>
Code:

livestreamer "hlsvariant://HERE" best -o Zoo-Sleuths.ts
7. Now grab that livestreamer link, and run it in CMD, it will start downloading on it's own.

Thanks again Biezom!

EDIT: File finished downloading, but it turned out to be the episode of "Zoo". Probably just a minor tweak, hopefully. I'll try to figure it out and post here.

You realize the discussion is about an episode of the show Zoo right?

statickijiji 08-19-2015 08:09 PM

Re: CBS.com Download


 
Quote:

Originally Posted by slim94 (Post 79053)
You realize the discussion is about an episode of the show Zoo right?

Yes, you are correct. I just figured that since the title is "CBS.com Download", people, including myself, may want to use this method for other videos, if it's possible.

biezom 08-19-2015 08:13 PM

Re: CBS.com Download


 
Quote:

Originally Posted by statickijiji (Post 79052)
Hey biezom,

Just trying to use the same method to download other videos.

I tried using your method of getting the "video.settings.pid" and inserting it into this
Code:

http://link.theplatform.com/s/dJ5BDC/video.settings.pid?mbr=true&manifest=m3u
But when I do this, my file looks a little different. there is no "https://cbsios-vh.akamaihd.net/i/temp_hd_gallery_video....".

This time, this pops up "rtmp://cp48590.edgefcs.net/ondemand/?auth=daEdQaTdFa5caafb4dmc4d2cmccaibyc_dD-bv1sW4-h0-G9BPdUqf&amp". They seem to be .mp4 links, but they don't work with the livestreamer code.

Any idea what i'm doing wrong? thanks!

Here's an image of my page source
Code:

http://imgur.com/SQUwo8N

yes i you read this post
Code:

http://stream-recorder.com/forum/showpost.php?p=78909&postcount=6

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

statickijiji 08-19-2015 09:14 PM

Re: CBS.com Download


 
Quote:

Originally Posted by biezom (Post 79055)
yes i you read this post
Code:

http://stream-recorder.com/forum/showpost.php?p=78909&postcount=6

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

What if i'm trying to download a different episode? I view source, the same way, and find the video.settings.pid, but then I don't get
Code:

"https://cbsios-vh.akamaihd.net/..."
I get
Code:

"rtmp://cp48590.edgefcs.net/ondemand/"
Why is it different? Thanks!

biezom 08-19-2015 09:32 PM

Re: CBS.com Download


 
Quote:

Originally Posted by statickijiji (Post 79057)
What if i'm trying to download a different episode? I view source, the same way, and find the video.settings.pid, but then I don't get
Code:

"https://cbsios-vh.akamaihd.net/..."
I get
Code:

"rtmp://cp48590.edgefcs.net/ondemand/"
Why is it different? Thanks!


Code:

"rtmp://cp48590.edgefcs.net/ondemand/"
rtmp protocol not the better quality

if you want find the video.settings.pid with 720p
you need change the user agent of your browser
on firefox you can use "user agent switcher"

what is the video you want?

statickijiji 08-19-2015 09:38 PM

Re: CBS.com Download


 
Quote:

Originally Posted by biezom (Post 79058)
Code:

"rtmp://cp48590.edgefcs.net/ondemand/"
rtmp protocol not the better quality

if you want find the video.settings.pid with 720p
you need change the user agent of your browser
on firefox you can use "user agent switcher"

what is the video you want?

I want the rtmp quality. But I don't know how to download it.
I want this episode, in rtmp
Code:

http://www.cbs.com/shows/big_brother/video/4KE_GF19SzZb8W8jC39HxU3qNL7daLmQ/big-brother-all-stars-episode-1/
.

You need CBS all access though, so I don't know if it will work.

biezom 08-19-2015 10:07 PM

Re: CBS.com Download


 
Quote:

Originally Posted by statickijiji (Post 79059)
I want the rtmp quality. But I don't know how to download it.
I want this episode, in rtmp
Code:

http://www.cbs.com/shows/big_brother/video/4KE_GF19SzZb8W8jC39HxU3qNL7daLmQ/big-brother-all-stars-episode-1/
.

You need CBS all access though, so I don't know if it will work.

ok you have something like this


Code:

rtmp://cp48590.edgefcs.net/ondemand/?auth=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX&amp;aifp=v001&amp;slist=video/temp_hd_gallery_video/CBS_Production_Outlet_VMS/video_robot/CBS_Production_Entertainment/2014/06/04/273585731870/{break}video/temp_hd_gallery_video/CBS_Production_Outlet_VMS/video_robot/CBS_Production_Entertainment/2014/06/04/273585731870/CBS_BIG_BROTHER_701_CONTENT_CIAN_R_1928.mp4

Code:

rtmpdump -r "rtmp://cp48590.edgefcs.net/ondemand/?auth=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX&amp;aifp=v001&amp;slist=video/temp_hd_gallery_video/CBS_Production_Outlet_VMS/video_robot/CBS_Production_Entertainment/2014/06/04/273585731870/" -y "video/temp_hd_gallery_video/CBS_Production_Outlet_VMS/video_robot/CBS_Production_Entertainment/2014/06/04/273585731870/CBS_BIG_BROTHER_701_CONTENT_CIAN_R_1928.mp4" -o BIG_BROTHER_701.flv"

with instead of XXXXXXXXXXXXXXXXXXXXXXXXXX your own auth value

statickijiji 08-19-2015 10:17 PM

Re: CBS.com Download


 
Quote:

Originally Posted by biezom (Post 79060)
ok you have something like this


Code:

rtmp://cp48590.edgefcs.net/ondemand/?auth=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX&amp;aifp=v001&amp;slist=video/temp_hd_gallery_video/CBS_Production_Outlet_VMS/video_robot/CBS_Production_Entertainment/2014/06/04/273585731870/{break}video/temp_hd_gallery_video/CBS_Production_Outlet_VMS/video_robot/CBS_Production_Entertainment/2014/06/04/273585731870/CBS_BIG_BROTHER_701_CONTENT_CIAN_R_1928.mp4

Code:

rtmpdump -r "rtmp://cp48590.edgefcs.net/ondemand/?auth=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX&amp;aifp=v001&amp;slist=video/temp_hd_gallery_video/CBS_Production_Outlet_VMS/video_robot/CBS_Production_Entertainment/2014/06/04/273585731870/" -y "video/temp_hd_gallery_video/CBS_Production_Outlet_VMS/video_robot/CBS_Production_Entertainment/2014/06/04/273585731870/CBS_BIG_BROTHER_701_CONTENT_CIAN_R_1928.mp4" -o BIG_BROTHER_701.flv"

with instead of XXXXXXXXXXXXXXXXXXXXXXXXXX your own auth value

Ok, I did what you said, but it's not working. I replaced the XXXXXX with my auth code, and entered it into CMD, but didn't work. I tried to enter it into rtmp explorer too, but didn't work there. Where should I enter it? Thanks.

slim94 08-19-2015 10:19 PM

Re: CBS.com Download


 
Quote:

Originally Posted by biezom (Post 79060)
ok you have something like this


Code:

rtmp://cp48590.edgefcs.net/ondemand/?auth=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX&amp;aifp=v001&amp;slist=video/temp_hd_gallery_video/CBS_Production_Outlet_VMS/video_robot/CBS_Production_Entertainment/2014/06/04/273585731870/{break}video/temp_hd_gallery_video/CBS_Production_Outlet_VMS/video_robot/CBS_Production_Entertainment/2014/06/04/273585731870/CBS_BIG_BROTHER_701_CONTENT_CIAN_R_1928.mp4


Code:

rtmpdump -r "rtmp://cp48590.edgefcs.net/ondemand/?auth=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX&amp;aifp=v001&amp;slist=video/temp_hd_gallery_video/CBS_Production_Outlet_VMS/video_robot/CBS_Production_Entertainment/2014/06/04/273585731870/" -y "video/temp_hd_gallery_video/CBS_Production_Outlet_VMS/video_robot/CBS_Production_Entertainment/2014/06/04/273585731870/CBS_BIG_BROTHER_701_CONTENT_CIAN_R_1928.mp4" -o BIG_BROTHER_701.flv"

with instead of XXXXXXXXXXXXXXXXXXXXXXXXXX your own auth value

I still can't get the rtmp stream for this, i'm using default user agents, and all sorts of diff browsers but only get the hls playlist -- weird.

I'm not complaining -- just wanted to compare audio on both, but i can't even get the rtmp stream to test with -- so odd.

slim94 08-19-2015 10:20 PM

Re: CBS.com Download


 
Quote:

Originally Posted by statickijiji (Post 79061)
Ok, I did what you said, but it's not working. I replaced the XXXXXX with my auth code, and entered it into CMD, but didn't work. I tried to enter it into rtmp explorer too, but didn't work there. Where should I enter it? Thanks.

you need to run it from a cmd prompt with rtmpdump.exe in the same folder.

biezom 08-19-2015 10:23 PM

Re: CBS.com Download


 
Quote:

Originally Posted by statickijiji (Post 79061)
Ok, I did what you said, but it's not working. I replaced the XXXXXX with my auth code, and entered it into CMD, but didn't work. I tried to enter it into rtmp explorer too, but didn't work there. Where should I enter it? Thanks.

Code:

https://github.com/K-S-V/Scripts/releases/download/v2.4/rtmpdump-2.4.zip
download in C:\rtmpdump for example

open command prompt
go to the folder
Code:

cd C:\rtmpdump
and paste your code

statickijiji 08-19-2015 10:45 PM

Re: CBS.com Download


 
Quote:

Originally Posted by biezom (Post 79064)
Code:

https://github.com/K-S-V/Scripts/releases/download/v2.4/rtmpdump-2.4.zip
download in C:\rtmpdump for example

open command prompt
go to the folder
Code:

cd C:\rtmpdump
and paste your code

This is what i'm getting. We're getting close :p
Probably just a little mistake by me.

Code:

http://imgur.com/4qoG0xb

biezom 08-19-2015 11:51 PM

Re: CBS.com Download


 
Quote:

Originally Posted by statickijiji (Post 79065)
This is what i'm getting. We're getting close :p
Probably just a little mistake by me.

Code:

http://imgur.com/4qoG0xb



oopssss sorry i forgot mp4: at the begining of playpath option (-y)

nota: important you need recent auth value because expire with time
Code:

rtmpdump -r "rtmp://cp48590.edgefcs.net/ondemand/?auth=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX&amp;aifp=v001&amp;slist=video/temp_hd_gallery_video/CBS_Production_Outlet_VMS/video_robot/CBS_Production_Entertainment/2014/06/04/273585731870/" -y "mp4:video/temp_hd_gallery_video/CBS_Production_Outlet_VMS/video_robot/CBS_Production_Entertainment/2014/06/04/273585731870/CBS_BIG_BROTHER_701_CONTENT_CIAN_R_1928.mp4" -o BIG_BROTHER_701.flv"

statickijiji 08-20-2015 01:40 AM

Re: CBS.com Download


 
Quote:

Originally Posted by biezom (Post 79069)
oopssss sorry i forgot mp4: at the begining of playpath option (-y)

nota: important you need recent auth value because expire with time
Code:

rtmpdump -r "rtmp://cp48590.edgefcs.net/ondemand/?auth=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX&amp;aifp=v001&amp;slist=video/temp_hd_gallery_video/CBS_Production_Outlet_VMS/video_robot/CBS_Production_Entertainment/2014/06/04/273585731870/" -y "mp4:video/temp_hd_gallery_video/CBS_Production_Outlet_VMS/video_robot/CBS_Production_Entertainment/2014/06/04/273585731870/CBS_BIG_BROTHER_701_CONTENT_CIAN_R_1928.mp4" -o BIG_BROTHER_701.flv"

Thanks Biezom! Works like a charm, you're the best.

One last question, that you may be able to help with. The files are only 48.0 KHz audio stream. It sounds a lot better streaming from the website. Is there a reason why i'm not getting the full sound? Thanks either way for all the help.

statickijiji 09-02-2015 02:43 PM

Re: CBS.com Download


 
I'm unsure if bumping is allowed, so sorry if it isn't. Just wondering if anyone is able to figure out the audio issue i'm having? The files downloaded are around 48.0 Kbps, 22.05 KHz, and 2 channels, AAC (LC). Just wondering if there's a way to get files with higher audio streams? When I play the video from the website, it's noticeably better. Thanks!

ehurdler 03-28-2016 04:11 PM

Re: CBS.com Download


 
Biezom:
This same procedure doesn't seem to work any longer. Cannot get anything other than 480p at the greatest. I posted a long series of posts here:
http://stream-recorder.com/forum/cbs...es-t20848.html

Can you help? Thanks.

poriel 03-30-2016 08:53 AM

Re: CBS.com Download


 
any tips to download only closed captions from CBS.com? :o

stream_monkey 03-30-2016 11:30 AM

Re: CBS.com Download


 
Quote:

Originally Posted by poriel (Post 83503)
any tips to download only closed captions from CBS.com? :o

Load your video and then sniff for dfxp.

ehurdler 05-13-2016 04:12 PM

Re: CBS.com Download


 
Beizom, is there anyway you can fix the cbs.php script? Everytime I run it I get I guess the script info/script then shown in mt Terminal Window. Used to work, and I now cbs has changed some things. But I am unable to download some videos now from cbs. I have an all access pass, but even episodes that would be online without all access do not work. I also am unable to get youtube-dl to get some, but then it gets others. Any ideas?

For example, I am trying to find any way to download/capture from this url:
HTML Code:

http://www.cbs.com/shows/madam-secretary/video/7Arn_rLltPOSJUfaP14dgc3NZsLYODEn/madam-secretary-desperate-remedies/
The cbs.php script does not work for me anymore. When I run it I get this thrown back in the Terminal:
Code:

php cbs.php http://www.cbs.com/shows/madam-secretary/video/7Arn_rLltPOSJUfaP14dgc3NZsLYODEn/madam-secretary-desperate-remedies/
http://link.theplatform.com/s/dJ5BDC/<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml" class="">
<head>
    <script type="text/javascript" src="//js.indexww.com/ht/ls-cbs.js" async></script>
    <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
    <meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
    <meta content="app-id=530168168" name="apple-itunes-app">
    <meta property="og:site_name" content="CBS" />

    <link rel="alternate" href="android-app://com.cbs.app/cbs/http://www.cbs.com/shows/madam-secretary/video/7Arn_rLltPOSJUfaP14dgc3NZsLYODEn/madam-secretary-desperate-remedies/?campaign=ftag:ADLbe6cacd&fg=1" />
   
            <meta property="og:title" content=" Video -  - CBS.com"/>
   
            <meta property="og:description" content=""/>
   
            <meta property="og:type" content="article"/>
   
    <meta property="og:image" content=""/>


   
   
       
   

   
                   
    <meta name="application-name" content=""/>    <meta name="msapplication-TileImage" content="/assets/images/site/cbs_pin.png"/>    <meta name="msapplication-TileColor" content="#3070b1"/>    <meta name="msApplication-ID" content="App"/>    <meta name="CBS.Win8_dx3spxfjvhtp4" content="App"/>
                       
   
    <meta property="fb:app_id" content="30708972585"/>

    <meta name="keywords" content=""/>
    <meta name="description" content=""/>

    <meta name="twitter:widgets:csp" content="on">

    <title> Video -  - CBS.com</title>
    <link rel="shortcut icon" href="http://www.cbsstatic.com/sitecommon/images/favicon.ico"/>
            <link rel="canonical" href="http://www.cbs.com/shows/madam-secretary/video/7Arn_rLltPOSJUfaP14dgc3NZsLYODEn/madam-secretary-desperate-remedies/"/>
                <link rel="stylesheet" type="text/css" href="http://wwwimage.cbsstatic.com/assets/min/css/2013/v2.video.min.css?20160513-030106" />
<link rel="stylesheet" type="text/css" href="http://wwwimage.cbsstatic.com/assets/min/css/min/com.cbs.min.css?20160513-030106" />
<link rel="stylesheet" type="text/css" href="http://wwwimage.cbsstatic.com/assets/min/css/2012/r1/madam_secretary.min.css?20160513-030106" />
<link rel="stylesheet" type="text/css" href="http://wwwimage.cbsstatic.com/assets/min/css/2015/r1/cbs.q2.min.css?20160513-030106" />
<link rel="stylesheet" type="text/css" href="http://wwwimage.cbsstatic.com/assets/min/css/2015/r1/cbs.show.video.q2.min.css?20160513-030106" />
<link rel="stylesheet" type="text/css" href="http://wwwimage.cbsstatic.com/assets/min/css/2012/r1/video_carousel.min.css?20160513-030106" />
<link rel="stylesheet" type="text/css" href="http://wwwimage.cbsstatic.com/assets/min/css/2015/r1/video_carousel.min.css?20160513-030106" />

        <!--[if IE]>
    <link rel="stylesheet" type="text/css" href="/assets/css/2012/r1/ie.css"/>
    <![endif]-->

    <!--[if lt IE 9]>
    <link rel="stylesheet" type="text/css" href="/assets/css/2012/r1/ie78.css"/>
    <![endif]-->

    <script type="text/javascript" src="/assets/js/require.js"></script>
<script type="text/javascript">
    require.config({baseUrl: ?mbr=true&manifest=m3u

youtube-dl gives this error:
Code:

youtube-dl http://www.cbs.com/shows/madam-secretary/video/7Arn_rLltPOSJUfaP14dgc3NZsLYODEn/madam-secretary-desperate-remedies/
[CBS] madam-secretary-desperate-remedies: Downloading webpage
[CBS] 7Arn_rLltPOSJUfaP14dgc3NZsLYODEn: Downloading XML
[CBS] 7Arn_rLltPOSJUfaP14dgc3NZsLYODEn: Downloading zk764exF1AtC SMIL data
[CBS] 7Arn_rLltPOSJUfaP14dgc3NZsLYODEn: Downloading m3u8 information
[CBS] 7Arn_rLltPOSJUfaP14dgc3NZsLYODEn: Downloading wlMl2antwj_u SMIL data
[CBS] 7Arn_rLltPOSJUfaP14dgc3NZsLYODEn: Downloading m3u8 information
[CBS] 7Arn_rLltPOSJUfaP14dgc3NZsLYODEn: Downloading kQnwQ82DaXI_ SMIL data
[CBS] 7Arn_rLltPOSJUfaP14dgc3NZsLYODEn: Downloading m3u8 information
[CBS] 7Arn_rLltPOSJUfaP14dgc3NZsLYODEn: Downloading jVQ0P2r_ddjT SMIL data
[CBS] 7Arn_rLltPOSJUfaP14dgc3NZsLYODEn: Downloading eFRRgp6sTv4K SMIL data
[CBS] 7Arn_rLltPOSJUfaP14dgc3NZsLYODEn: Downloading m3u8 information
[CBS] 7Arn_rLltPOSJUfaP14dgc3NZsLYODEn: Downloading YmzBvcgrYhP5 SMIL data
[CBS] 7Arn_rLltPOSJUfaP14dgc3NZsLYODEn: Downloading m3u8 information
[CBS] 7Arn_rLltPOSJUfaP14dgc3NZsLYODEn: Downloading TLPpCfVgVDfE SMIL data
[CBS] 7Arn_rLltPOSJUfaP14dgc3NZsLYODEn: Downloading RghUgCr2WNpK SMIL data
[CBS] 7Arn_rLltPOSJUfaP14dgc3NZsLYODEn: Downloading NzR7fWZ_3p8X SMIL data
[CBS] 7Arn_rLltPOSJUfaP14dgc3NZsLYODEn: Downloading LRl3LJj_5n23 SMIL data
[CBS] 7Arn_rLltPOSJUfaP14dgc3NZsLYODEn: Downloading m3u8 information
[CBS] 7Arn_rLltPOSJUfaP14dgc3NZsLYODEn: Downloading JSON metadata
[download] Destination: Madam Secretary - Desperate Remedies-7Arn_rLltPOSJUfaP14dgc3NZsLYODEn.mp4
avconv version 11.1, Copyright (c) 2000-2014 the Libav developers
  built on Dec 14 2014 14:09:04 with Apple LLVM version 6.0 (clang-600.0.56) (based on LLVM 3.5svn)
https://cbsios-vh.akamaihd.net/i/temp_hd_gallery_video/CBS_Production_Outlet_VMS/video_robot/CBS_Production_Entertainment/2016/04/09/662457923923/CBS_MADAM_SECRETARY_219_CONTENT_CIAN_vr_20M_797801_,848,3596,2596,1848,1248,548,298,158,000.mp4.csmil/index_1_av.m3u8?null=0&id=AgBAeQ8H0DvJpQVRNlf6eseyBfgkky3fDoQHpKKUiNLV0rjV%2fBsQbBivWq9HdAMSYjiqUCT1n9N3pg%3d%3d: Protocol not found


ERROR: ffmpeg exited with code 1

Any ideas?


All times are GMT -6. The time now is 10:37 AM.