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

How to download videos from CTV.CA

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

cuaron 05-11-2014 05:21 PM

How to download videos from CTV.CA


 
How can I download video from CTV.CA? I look at old topics and I've tried a lot of programs but I couldn't.

I would be glad if you can help.

Thanks.

cuaron 05-16-2014 02:08 PM

Re: How to download videos from CTV.CA


 
Please help me

minato4u 05-16-2014 02:57 PM

Re: How to download videos from CTV.CA


 
Install Internet Download Manager and open video in google chrome
as soon as video starts playing a button will appear Download video with IDM,select quality and download

If you get part of video,seek video forward with that time

Hope this will help

cuaron 05-17-2014 04:17 AM

Re: How to download videos from CTV.CA


 
Thanks. I tried downloading with IDM. But IDM download only ads, can not download video.

minato4u 05-19-2014 05:46 AM

Re: How to download videos from CTV.CA


 
You will need
1. PHP
2. AdobeHDS

1.php
You can install php by installing wamp server from http://www.wampserver.com/en/

2.AdobeHDS
save this file https://raw.githubusercontent.com/jx...r/AdobeHDS.php

Read some info of it here https://github.com/K-S-V/Scripts/wiki

After installing php,
save adobeHDS.php to wamp>>www folder

wamp folder >> bin folder >> php >> "your php version folder" and copy path of php.exe file for example like this C:\wamp\bin\php\php5.3.13\ and add semicolon to it C:\wamp\bin\php\php5.3.13\; and copy it

Go to control panel>>system>>advanced system setting>>click environment variables>>click new>>In variable name field type 'path' without quotes and in variable value type the path you just copied>>click ok >> ok

open run (windows key+R) type cmd and type 'php -v' without quotes,press enter

If you get version info you are going great

open chrome press F12 >> network tab
open page you want to download video from
as video starts press filter button the one look like flashlight torch
type manifest.f4m
you will get manifest.f4m listed ,right click on that and click copy link address
download that manifest.f4m if you want to see avaliable video qualities,open it in notepad and you can see bitrate like
<manifest xmlns="http://ns.adobe.com/f4m/2.0">

<media href="http://ams-vp9.9c9media.com/hds-vod/ae/2014-05-14/5A7F1A52F6BF19BC/CTV-324308-Arrow-S2E23-001-Adaptive_01-pd.mp4.f4m" bitrate="299"/>

<media href="http://ams-vp9.9c9media.com/hds-vod/ae/2014-05-14/5A7F1A52F6BF19BC/CTV-324308-Arrow-S2E23-001-Adaptive_02-pd.mp4.f4m" bitrate="480"/>

<media href="http://ams-vp9.9c9media.com/hds-vod/ae/2014-05-14/5A7F1A52F6BF19BC/CTV-324308-Arrow-S2E23-001-Adaptive_03-pd.mp4.f4m" bitrate="640"/>

<media href="http://ams-vp9.9c9media.com/hds-vod/ae/2014-05-14/5A7F1A52F6BF19BC/CTV-324308-Arrow-S2E23-001-Adaptive_04-pd.mp4.f4m" bitrate="896"/>

<media href="http://ams-vp9.9c9media.com/hds-vod/ae/2014-05-14/5A7F1A52F6BF19BC/CTV-324308-Arrow-S2E23-001-Adaptive_05-pd.mp4.f4m" bitrate="1280"/>

<media href="http://ams-vp9.9c9media.com/hds-vod/ae/2014-05-14/5A7F1A52F6BF19BC/CTV-324308-Arrow-S2E23-001-Adaptive_06-pd.mp4.f4m" bitrate="1536"/>

<media href="http://ams-vp9.9c9media.com/hds-vod/ae/2014-05-14/5A7F1A52F6BF19BC/CTV-324308-Arrow-S2E23-001-Adaptive_07-pd.mp4.f4m" bitrate="1856"/>

<media href="http://ams-vp9.9c9media.com/hds-vod/ae/2014-05-14/5A7F1A52F6BF19BC/CTV-324308-Arrow-S2E23-001-Adaptive_08-pd.mp4.f4m" bitrate="2048"/>
</manifest>
choose your bitrate

in cmd type
php AdobeHDS.php --manifest <<paste that address here>> --delete

you can add --quality <<your bitrate>> to the command before --delete to choose quality
--quality [param] selected quality level (low|medium|high) or exact bitrate

the video will be download in folder that contain adobeHDS.php
.

other options are
--help displays this help
--debug show debug output
--delete delete fragments after processing
--fproxy force proxy for downloading of fragments
--play dump stream to stdout for piping to media player
--rename rename fragments sequentially before processing
--update update the script to current git version
--auth [param] authentication string for fragment requests
--duration [param] stop recording after specified number of seconds
--filesize [param] split output file in chunks of specified size (MB)
--fragments [param] base filename for fragments
--fixwindow [param] timestamp gap between frames to consider as timeshift
--manifest [param] manifest file for downloading of fragments
--maxspeed [param] maximum bandwidth consumption (KB) for fragment downloading
--outdir [param] destination folder for output file
--outfile [param] filename to use for output file
--parallel [param] number of fragments to download simultaneously
--proxy [param] proxy for downloading of manifest
--quality [param] selected quality level (low|medium|high) or exact bitrate
--referrer [param] Referer to use for emulation of browser requests
--start [param] start from specified fragment
--useragent [param] User-Agent to use for emulation of browser requests

if this downloads only part of video,online seek video forward that whit dot and you will get another manifest.f4m file and do the same to download that

minato4u 05-19-2014 05:49 AM

Re: How to download videos from CTV.CA


 
also getFlv software may help
use different kernel like ipad,android in getFLV

cuaron 05-19-2014 10:25 AM

Re: How to download videos from CTV.CA


 
Quote:

Originally Posted by minato4u (Post 67687)
You will need
1. PHP
2. AdobeHDS

1.php
You can install php by installing wamp server from http://www.wampserver.com/en/

2.AdobeHDS
save this file https://raw.githubusercontent.com/jx...r/AdobeHDS.php

Read some info of it here https://github.com/K-S-V/Scripts/wiki

After installing php,
save adobeHDS.php to wamp>>www folder

wamp folder >> bin folder >> php >> "your php version folder" and copy path of php.exe file for example like this C:\wamp\bin\php\php5.3.13\ and add semicolon to it C:\wamp\bin\php\php5.3.13\; and copy it

Go to control panel>>system>>advanced system setting>>click environment variables>>click new>>In variable name field type 'path' without quotes and in variable value type the path you just copied>>click ok >> ok

open run (windows key+R) type cmd and type 'php -v' without quotes,press enter

If you get version info you are going great

open chrome press F12 >> network tab
open page you want to download video from
as video starts press filter button the one look like flashlight torch
type manifest.f4m
you will get manifest.f4m listed ,right click on that and click copy link address
download that manifest.f4m if you want to see avaliable video qualities,open it in notepad and you can see bitrate like
<manifest xmlns="http://ns.adobe.com/f4m/2.0">

<media href="http://ams-vp9.9c9media.com/hds-vod/ae/2014-05-14/5A7F1A52F6BF19BC/CTV-324308-Arrow-S2E23-001-Adaptive_01-pd.mp4.f4m" bitrate="299"/>

<media href="http://ams-vp9.9c9media.com/hds-vod/ae/2014-05-14/5A7F1A52F6BF19BC/CTV-324308-Arrow-S2E23-001-Adaptive_02-pd.mp4.f4m" bitrate="480"/>

<media href="http://ams-vp9.9c9media.com/hds-vod/ae/2014-05-14/5A7F1A52F6BF19BC/CTV-324308-Arrow-S2E23-001-Adaptive_03-pd.mp4.f4m" bitrate="640"/>

<media href="http://ams-vp9.9c9media.com/hds-vod/ae/2014-05-14/5A7F1A52F6BF19BC/CTV-324308-Arrow-S2E23-001-Adaptive_04-pd.mp4.f4m" bitrate="896"/>

<media href="http://ams-vp9.9c9media.com/hds-vod/ae/2014-05-14/5A7F1A52F6BF19BC/CTV-324308-Arrow-S2E23-001-Adaptive_05-pd.mp4.f4m" bitrate="1280"/>

<media href="http://ams-vp9.9c9media.com/hds-vod/ae/2014-05-14/5A7F1A52F6BF19BC/CTV-324308-Arrow-S2E23-001-Adaptive_06-pd.mp4.f4m" bitrate="1536"/>

<media href="http://ams-vp9.9c9media.com/hds-vod/ae/2014-05-14/5A7F1A52F6BF19BC/CTV-324308-Arrow-S2E23-001-Adaptive_07-pd.mp4.f4m" bitrate="1856"/>

<media href="http://ams-vp9.9c9media.com/hds-vod/ae/2014-05-14/5A7F1A52F6BF19BC/CTV-324308-Arrow-S2E23-001-Adaptive_08-pd.mp4.f4m" bitrate="2048"/>
</manifest>
choose your bitrate

in cmd type
php AdobeHDS.php --manifest <<paste that address here>> --delete

you can add --quality <<your bitrate>> to the command before --delete to choose quality
--quality [param] selected quality level (low|medium|high) or exact bitrate

the video will be download in folder that contain adobeHDS.php
.

other options are
--help displays this help
--debug show debug output
--delete delete fragments after processing
--fproxy force proxy for downloading of fragments
--play dump stream to stdout for piping to media player
--rename rename fragments sequentially before processing
--update update the script to current git version
--auth [param] authentication string for fragment requests
--duration [param] stop recording after specified number of seconds
--filesize [param] split output file in chunks of specified size (MB)
--fragments [param] base filename for fragments
--fixwindow [param] timestamp gap between frames to consider as timeshift
--manifest [param] manifest file for downloading of fragments
--maxspeed [param] maximum bandwidth consumption (KB) for fragment downloading
--outdir [param] destination folder for output file
--outfile [param] filename to use for output file
--parallel [param] number of fragments to download simultaneously
--proxy [param] proxy for downloading of manifest
--quality [param] selected quality level (low|medium|high) or exact bitrate
--referrer [param] Referer to use for emulation of browser requests
--start [param] start from specified fragment
--useragent [param] User-Agent to use for emulation of browser requests

if this downloads only part of video,online seek video forward that whit dot and you will get another manifest.f4m file and do the same to download that

Thank you so much, you're amazing man :)

Quote:

Originally Posted by minato4u (Post 67688)
also getFlv software may help
use different kernel like ipad,android in getFLV

I used it on windows 8 but it did not work.

minato4u 05-20-2014 07:23 AM

Re: How to download videos from CTV.CA


 
why are you using CTV.CA to download tv shows instead use kickass.to.

use torrent client like utorrent.
for small size and best quality 480p use http://kickass.to/user/baiscope/uploads/

also yts.re for movies

Did that AdobeHDS works for you?

cuaron 05-20-2014 11:19 AM

Re: How to download videos from CTV.CA


 
Quote:

Originally Posted by minato4u (Post 67712)
why are you using CTV.CA to download tv shows instead use kickass.to.

use torrent client like utorrent.
for small size and best quality 480p use http://kickass.to/user/baiscope/uploads/

also yts.re for movies

Did that AdobeHDS works for you?

I want to download some TV Shows and I couldn't find them on kickass :)

Yes, I can download with AdobeHDS but it is a bit troublesome :)

minato4u 05-22-2014 03:18 AM

Re: How to download videos from CTV.CA


 
tell me name of tv shows and required quality and i'll provide you best links to download that shows.

astral2k5 12-24-2014 03:25 PM

Re: How to download videos from CTV.CA


 
Quote:

Originally Posted by minato4u (Post 67755)
tell me name of tv shows and required quality and i'll provide you best links to download that shows.

Does the ctv.ca download still work with adobehds.php ?
I get flash drm message...


All times are GMT -6. The time now is 07:39 AM.