PDA

View Full Version : Trying to Download VoD from CBC Sports / CBC Olympics for Rio 2016


Impulse1234
08-04-2016, 12:16 AM
I've been trying for months to figure out how to download videos from the CBC sports website, to no avail; in particular, that of the upcoming Rio Olympics. I prefer having them downloaded and able to watch at any time instead of having to use slow bandwidth / phone data to stream them, but I've had zero luck being able to download anything off of there in good shape.

Example of something I want to download (first round of women's soccer, Canada vs. Australia): http://olympics.cbc.ca/video/vod/soccer-aug-women-first-round-can-aus.html.

If someone knows how to do this, you would be my saviour!

I read through a couple of threads to pull something like this from Adblock Plus (http://dvr-i.rio2016.cbc.ca/dvr/9c8f0e62-a9c7-432a-824f-e0951599301b/9c8f0e62-a9c7-432a-824f-e0951599301b.ism/QualityLevels(3450000)/Manifest(video,format=m3u8-aapl-v3,audiotrack=englishnumeris), but I have no clue how to proceed afterwards, so some guidance would be really well appreciated.

ehurdler
08-04-2016, 07:50 AM
I am in the US, so I am not sure if this will be the same for you or not. I have nbcolympics.com, so if you have access to use that instead this will work 100%. The Canada vs. Australia game is there in full replay.

http://stream.nbcolympics.com/womens-soccer-match-2

To capture the video you will need the HDS Link Detector installed in Firefox. Just search for how to do this, install it, configure if you don’t have it already. I don’t remember the process off the top of my head. Make sure you have the updated AdobeHDS.php, set and configured properly too. Again, search for this if you don’t have it already. I am using a Macintosh, not that it makes a difference but telling you my process.

With everything installed and configured, make sure the HDS Link detector add-on is enabled. Now navigate to the game in question. Once the game starts playing you will see the add-on show the banner showing the video fragment link it captures. With this link you can capture the video fragments for this full video, and also the audio fragments for the full audio. The fragments will have to be merged together as well as the video and the audio into one full video. Those processes are rather quick and seamless.

So once the add-on gives you a link, you can modify the link and download the fragments you need and merge them together.

This is an example of the code you will need for this

Video:

php AdobeHDS.php --quality 7000 --manifest "" --delete


Audio:

php AdobeHDS.php --quality 56 --manifest "" --delete


Join:

ffmpeg -i video.flv -i audio.flv -c copy joined.mp4

Example, Given this link from the add-on:

php AdobeHDS.php --manifest "http://olystreameast.nbcolympics.com/vod/690c26d3-280d-4d17-9d86-4ef9e406480f/nbc-olympics0803094426.ism/manifest(format=f4m-f4f,filtername=vodcut).f4m?token=st=1470317712~exp =1470317832~acl=/vod/690c26d3-280d-4d17-9d86-4ef9e406480f/nbc-olympics0803094426.ism/*~hmac=ee008b15c134623c079477ea82ebbc6bd9ef5a56e3b 75d0c134162d2f37f8a30" --delete


With that link, if you take the url between the “”’s and place it within the code strings I posted above it will start capturing the video fragments, then the audio fragments in Terminal (for me since I am using a Macintosh) or a cmd prompt if you are using Windows. The link above will expire in a minute or so. So I always capture the video fragments first. This will download all the video fragments, then it will put them all together with no user interaction into a .flv file. Then I reload the soccer match in the browser to capture a new link in the add-on and paste that within the code string Above. This will as well capture all the audio fragments and put them together. All you will have to do is the last line of code I gave you to Join them with ffmpeg. Will create a video with audio into an .mp4. That will give you the highest video and audio quality possible through the nbcolympics website. You can change the video quality if you would like, but you’ll have to run the -debug script on the add-on link that is captured:

php AdobeHDS.php --manifest "http://olystreameast.nbcolympics.com/vod/690c26d3-280d-4d17-9d86-4ef9e406480f/nbc-olympics0803094426.ism/manifest(format=f4m-f4f,filtername=vodcut).f4m?token=st=1470317712~exp =1470317832~acl=/vod/690c26d3-280d-4d17-9d86-4ef9e406480f/nbc-olympics0803094426.ism/*~hmac=ee008b15c134623c079477ea82ebbc6bd9ef5a56e3b 75d0c134162d2f37f8a30" -debug

That will give you a whole bunch of info that will just keep scrolling. So let it run and you are looking for the info at the top. So after a few seconds stop the debug script. You want to capture Fragments, not Keyframes.

Bitrate URL
7001 QualityLevels(7000000)/Keyframes(video,format=f4m-f4f)
7000 QualityLevels(7000000)/Fragments(video,format=f4m-f4f)
4001 QualityLevels(4000000)/Keyframes(video,format=f4m-f4f)
4000 QualityLevels(4000000)/Fragments(video,format=f4m-f4f)
2201 QualityLevels(2200000)/Keyframes(video,format=f4m-f4f)
2200 QualityLevels(2200000)/Fragments(video,format=f4m-f4f)
1401 QualityLevels(1400000)/Keyframes(video,format=f4m-f4f)
1400 QualityLevels(1400000)/Fragments(video,format=f4m-f4f)
901 QualityLevels(900000)/Keyframes(video,format=f4m-f4f)
900 QualityLevels(900000)/Fragments(video,format=f4m-f4f)
601 QualityLevels(600000)/Keyframes(video,format=f4m-f4f)
600 QualityLevels(600000)/Fragments(video,format=f4m-f4f)
301 QualityLevels(300000)/Keyframes(video,format=f4m-f4f)
300 QualityLevels(300000)/Fragments(video,format=f4m-f4f)
56 QualityLevels(56000)/Fragments(audio_en_0,format=f4m-f4f)

Sorry if this is long winded, I just wrote this out quickly with what I do, so if it is too much detail that is why. Any questions let me know. Good luck, maybe this will also work for the CBC site.

mtepper27
08-04-2016, 04:21 PM
Thank you, that works perfectly!!! I have been searching for help on this for a while.

Would you happen to know how to download WatchESPN streams?

KSV's AdobeHDS Link Detector doesn't detect any links from ESPN streams

Any help would be greatly appreciated.

BusterAvis
08-04-2016, 05:55 PM
Where do you type these 3 codes in?
Command prompt? And if so, where in command prompt?
What folder?

I'm used to using Livestreamer and FFmpeg, both in command prompt.
Never used AdobeHDS before. Thanks.
I'm pretty sure I have some sort of AdobeHDS, because I was able to successfully add the HDS Link Detector "add-on" to Firefox a few minutes ago, and it sniffed out this code:

php AdobeHDS.php --manifest "http://olystreameast.nbcolympics.com/vod/690c26d3-280d-4d17-9d86-4ef9e406480f/nbc-olympics0803094426.ism/manifest(format=f4m-f4f,filtername=vodcut).f4m?token=st=1470355147~exp =1470355267~acl=/vod/690c26d3-280d-4d17-9d86-4ef9e406480f/nbc-olympics0803094426.ism/*~hmac=640871a65a4ccb7fa5f588156d061d7dd2d9f2604b4 dc2b433f73481f32bbb07" --delete


Here are the 3 codes from the first example box above that I'm confused about ............

Video:
php AdobeHDS.php --quality 7000 --manifest "" --delete


Audio:
php AdobeHDS.php --quality 56 --manifest "" --delete


Join:
ffmpeg -i video.flv -i audio.flv -c copy joined.mp4

BusterAvis
08-04-2016, 06:38 PM
I might be on to something.
I found something from a YouTube video:
https://www.youtube.com/watch?v=6DXZHYRqM5A

When trying to grab the manifest code from this NBC Olympics link referenced above:
http://stream.nbcolympics.com/womens-soccer-match-2

I downloaded Grab Any Media for AdobeHDS helper from that YouTube link.
I just don't know the exact code I need to paste into the top left of the image below where you put in the Manifest or Fragment code. Nothing seems to work. I keep trying all the codes I can grab, and I try to click on "Start" in the right (as circled in red) in the image below, but it won't do anything.


https://s31.postimg.org/wef5v8kx7/Adobe2.jpg

Impulse1234
08-04-2016, 07:37 PM
I am in the US, so I am not sure if this will be the same for you or not. I have nbcolympics.com, so if you have access to use that instead this will work 100%. The Canada vs. Australia game is there in full replay.

http://stream.nbcolympics.com/womens-soccer-match-2

To capture the video you will need the HDS Link Detector installed in Firefox. Just search for how to do this, install it, configure if you don’t have it already. I don’t remember the process off the top of my head. Make sure you have the updated AdobeHDS.php, set and configured properly too. Again, search for this if you don’t have it already. I am using a Macintosh, not that it makes a difference but telling you my process.

With everything installed and configured, make sure the HDS Link detector add-on is enabled. Now navigate to the game in question. Once the game starts playing you will see the add-on show the banner showing the video fragment link it captures. With this link you can capture the video fragments for this full video, and also the audio fragments for the full audio. The fragments will have to be merged together as well as the video and the audio into one full video. Those processes are rather quick and seamless.

So once the add-on gives you a link, you can modify the link and download the fragments you need and merge them together.

This is an example of the code you will need for this

Video:

php AdobeHDS.php --quality 7000 --manifest "" --delete


Audio:

php AdobeHDS.php --quality 56 --manifest "" --delete


Join:

ffmpeg -i video.flv -i audio.flv -c copy joined.mp4

Example, Given this link from the add-on:

php AdobeHDS.php --manifest "http://olystreameast.nbcolympics.com/vod/690c26d3-280d-4d17-9d86-4ef9e406480f/nbc-olympics0803094426.ism/manifest(format=f4m-f4f,filtername=vodcut).f4m?token=st=1470317712~exp =1470317832~acl=/vod/690c26d3-280d-4d17-9d86-4ef9e406480f/nbc-olympics0803094426.ism/*~hmac=ee008b15c134623c079477ea82ebbc6bd9ef5a56e3b 75d0c134162d2f37f8a30" --delete


With that link, if you take the url between the “”’s and place it within the code strings I posted above it will start capturing the video fragments, then the audio fragments in Terminal (for me since I am using a Macintosh) or a cmd prompt if you are using Windows. The link above will expire in a minute or so. So I always capture the video fragments first. This will download all the video fragments, then it will put them all together with no user interaction into a .flv file. Then I reload the soccer match in the browser to capture a new link in the add-on and paste that within the code string Above. This will as well capture all the audio fragments and put them together. All you will have to do is the last line of code I gave you to Join them with ffmpeg. Will create a video with audio into an .mp4. That will give you the highest video and audio quality possible through the nbcolympics website. You can change the video quality if you would like, but you’ll have to run the -debug script on the add-on link that is captured:

php AdobeHDS.php --manifest "http://olystreameast.nbcolympics.com/vod/690c26d3-280d-4d17-9d86-4ef9e406480f/nbc-olympics0803094426.ism/manifest(format=f4m-f4f,filtername=vodcut).f4m?token=st=1470317712~exp =1470317832~acl=/vod/690c26d3-280d-4d17-9d86-4ef9e406480f/nbc-olympics0803094426.ism/*~hmac=ee008b15c134623c079477ea82ebbc6bd9ef5a56e3b 75d0c134162d2f37f8a30" -debug

That will give you a whole bunch of info that will just keep scrolling. So let it run and you are looking for the info at the top. So after a few seconds stop the debug script. You want to capture Fragments, not Keyframes.

Bitrate URL
7001 QualityLevels(7000000)/Keyframes(video,format=f4m-f4f)
7000 QualityLevels(7000000)/Fragments(video,format=f4m-f4f)
4001 QualityLevels(4000000)/Keyframes(video,format=f4m-f4f)
4000 QualityLevels(4000000)/Fragments(video,format=f4m-f4f)
2201 QualityLevels(2200000)/Keyframes(video,format=f4m-f4f)
2200 QualityLevels(2200000)/Fragments(video,format=f4m-f4f)
1401 QualityLevels(1400000)/Keyframes(video,format=f4m-f4f)
1400 QualityLevels(1400000)/Fragments(video,format=f4m-f4f)
901 QualityLevels(900000)/Keyframes(video,format=f4m-f4f)
900 QualityLevels(900000)/Fragments(video,format=f4m-f4f)
601 QualityLevels(600000)/Keyframes(video,format=f4m-f4f)
600 QualityLevels(600000)/Fragments(video,format=f4m-f4f)
301 QualityLevels(300000)/Keyframes(video,format=f4m-f4f)
300 QualityLevels(300000)/Fragments(video,format=f4m-f4f)
56 QualityLevels(56000)/Fragments(audio_en_0,format=f4m-f4f)

Sorry if this is long winded, I just wrote this out quickly with what I do, so if it is too much detail that is why. Any questions let me know. Good luck, maybe this will also work for the CBC site.

Turns out I can't access NBC Olympics, region-locked of course :/
And I tried downloading HDS Link Detector (the addon for Firefox), and when I tried playing the video nothing popped up in terms of coding. :/

mtepper27
08-05-2016, 02:33 PM
All you have to do is use an IP changer or VPN. They cost about $5 a month. Use an IP within the United States and you'll have access to NBCOlympics

mtepper27
08-05-2016, 02:47 PM
And if you're interested in the Canadian Women's Soccer Team.... I record all of the Women's football, so if you PM me, I can share the matches with you via torrent. I record in 8mbps, 720p, 60fps. I would be happy to help

BusterAvis
08-05-2016, 04:14 PM
And if you're interested in the Canadian Women's Soccer Team.... I record all of the Women's football, so if you PM me, I can share the matches with you via torrent. I record in 8mbps, 720p, 60fps. I would be happy to help

WOW, thank you.
Whatever matches you are willing share.
Would certainly like to have all of them, however that sounds rude to request all.

USA, Canada, Australia, Sweden, and New Zealand's matches would be good though. But if it's quick to set up a torrent file, then all matches would be great, but certainly wouldn't expect you to take up too much time.

Thanks again. :)

mtepper27
08-05-2016, 04:53 PM
Not rude, I offered to help.

Are you familiar with using UTorrent? I can do the Canada matches within 24 hours after the match happens. But if you want all the matches of the teams you listed, would you mind waiting until after the Olympics finish? I ask because I'm going be extremely busy recording all of the Olympics the next 2 weeks.

My email address is mtepper27@gmail.com, so we can communicate further via email.

BusterAvis
08-05-2016, 09:32 PM
Not rude, I offered to help.

Are you familiar with using UTorrent? I can do the Canada matches within 24 hours after the match happens. But if you want all the matches of the teams you listed, would you mind waiting until after the Olympics finish? I ask because I'm going be extremely busy recording all of the Olympics the next 2 weeks.

My email address is mtepper27@gmail.com, so we can communicate further via email.

Oh, by all means, please feel free to take your time.
I would appreciate any and all matches that you're willing to eventually upload, even if it takes a few weeks or longer.

Thanks for offering. :)

My Email:
busteravis@yahoo.com

BusterAvis
08-05-2016, 09:45 PM
Thank you, that works perfectly!!! I have been searching for help on this for a while.

Would you happen to know how to download WatchESPN streams?

KSV's AdobeHDS Link Detector doesn't detect any links from ESPN streams

Any help would be greatly appreciated.

When using Firefox, right after the the "archived" WatchESPN stream begins to play (or during the advertisement, or actually during when you first load up the separate window pop-up screen that shows the WatchESPN event, click these three things on your keyboard at the same time.... Ctrl key + Shift Key + i (i as in iceland)

So once again, it's Ctrl key + Shift Key + i

It'll pop up with the console and you can search for "m3u8"
Once you have the proper m3u8 file (the i.m3u8 file used to be the highest quality in WatchESPN, now it's the j.m3u8 file which sometimes takes longer to pop up).

i.m3u8 used to be 720p, now it's almost 720p (much better than standard still)

j.m3u8 is the true 720p one now.

You can use the m3u8 file in command prompt using FFMPEG.
WatchESPN tends to work better now with FFMPEG than it does with LiveStreamer (it used to work great with LiveStreamer until recently).

https://s31.postimg.org/510dd6xq3/espn_M3_U8.jpg

raphou
08-06-2016, 01:51 PM
Hello,

I'm also struggling in using AdobeHDS.php with CBC.

I only receive:

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

URL:
http://olympics.cbc.ca/video/vod/soccer-aug-women-first-round-can-aus.html

After extensive research, I have found the following:

Different URLs for Manifest:
http://dvr-i.rio2016.cbc.ca/dvr/9c8f0e62-a9c7-432a-824f-e0951599301b/9c8f0e62-a9c7-432a-824f-e0951599301b.ism/manifest(format=m3u8-aapl-v3,audioTrack=englishnumeris)?hdnea=st=#########~e xp=#########~acl=/*~hmac=####################

http://dvr-i.rio2016.cbc.ca/dvr/9c8f0e62-a9c7-432a-824f-e0951599301b/9c8f0e62-a9c7-432a-824f-e0951599301b.ism/QualityLevels(128000)/Manifest(englishnumeris,format=m3u8-aapl-v3)

http://dvr-i.rio2016.cbc.ca/dvr/9c8f0e62-a9c7-432a-824f-e0951599301b/9c8f0e62-a9c7-432a-824f-e0951599301b.ism/QualityLevels(3450000)/Manifest(video,format=m3u8-aapl-v3,audiotrack=englishnumeris)http://dvr-i.rio2016.cbc.ca/dvr/9c8f0e62-a9c7-432a-824f-e0951599301b/9c8f0e62-a9c7-432a-824f-e0951599301b.ism/QualityLevels(3450000)/Manifest(video,format=m3u8-aapl-v3,audiotrack=englishnumeris)

Downloaded Manifest:

First link:
#EXTM3U
#EXT-X-VERSION:3
#EXT-X-STREAM-INF:BANDWIDTH=300436,RESOLUTION=256x144,CODECS="avc1.42c00c,mp4a.40.2"
QualityLevels(150000)/Manifest(video,format=m3u8-aapl-v3,audiotrack=englishnumeris)
#EXT-X-STREAM-INF:BANDWIDTH=402636,RESOLUTION=384x216,CODECS="avc1.42c00d,mp4a.40.2"
QualityLevels(250000)/Manifest(video,format=m3u8-aapl-v3,audiotrack=englishnumeris)
#EXT-X-STREAM-INF:BANDWIDTH=555936,RESOLUTION=384x216,CODECS="avc1.42c00d,mp4a.40.2"
QualityLevels(400000)/Manifest(video,format=m3u8-aapl-v3,audiotrack=englishnumeris)
#EXT-X-STREAM-INF:BANDWIDTH=760336,RESOLUTION=512x288,CODECS="avc1.42c015,mp4a.40.2"
QualityLevels(600000)/Manifest(video,format=m3u8-aapl-v3,audiotrack=englishnumeris)
#EXT-X-STREAM-INF:BANDWIDTH=1118036,RESOLUTION=640x360,CODECS="avc1.4d401e,mp4a.40.2"
QualityLevels(950000)/Manifest(video,format=m3u8-aapl-v3,audiotrack=englishnumeris)
#EXT-X-STREAM-INF:BANDWIDTH=1577936,RESOLUTION=768x432,CODECS="avc1.4d401e,mp4a.40.2"
QualityLevels(1400000)/Manifest(video,format=m3u8-aapl-v3,audiotrack=englishnumeris)
#EXT-X-STREAM-INF:BANDWIDTH=2395536,RESOLUTION=1024x576,CODECS="avc1.4d401f,mp4a.40.2"
QualityLevels(2200000)/Manifest(video,format=m3u8-aapl-v3,audiotrack=englishnumeris)
#EXT-X-STREAM-INF:BANDWIDTH=3673036,RESOLUTION=1280x720,CODECS="avc1.4d401f,mp4a.40.2"
QualityLevels(3450000)/Manifest(video,format=m3u8-aapl-v3,audiotrack=englishnumeris)
#EXT-X-STREAM-INF:BANDWIDTH=138976,CODECS="mp4a.40.2"
QualityLevels(128000)/Manifest(englishnumeris,format=m3u8-aapl-v3)

Second link:
#EXTM3U
#EXT-X-VERSION:3
#EXT-X-ALLOW-CACHE:NO
#EXT-X-MEDIA-SEQUENCE:0
#EXT-X-TARGETDURATION:6
#EXT-X-PROGRAM-DATE-TIME:1971-08-04T17:18:06.786Z
#EXTINF:6.016000,no-desc
Fragments(englishnumeris=501742867866666,format=m3 u8-aapl-v3)
#EXTINF:6.016000,no-desc
Fragments(englishnumeris=501742928026666,format=m3 u8-aapl-v3)
#EXTINF:6.016000,no-desc
Fragments(englishnumeris=501742988186666,format=m3 u8-aapl-v3)
#EXTINF:6.016000,no-desc
Fragments(englishnumeris=501743048346666,format=m3 u8-aapl-v3)
#EXTINF:6.016000,no-desc
Fragments(englishnumeris=501743108506666,format=m3 u8-aapl-v3)

(....)

#EXTINF:6.016000,no-desc
Fragments(englishnumeris=501839845786666,format=m3 u8-aapl-v3)
#EXTINF:6.016000,no-desc
Fragments(englishnumeris=501839905946666,format=m3 u8-aapl-v3)
#EXTINF:6.016000,no-desc
Fragments(englishnumeris=501839966106666,format=m3 u8-aapl-v3)
#EXTINF:2.005333,no-desc
Fragments(englishnumeris=501840026266666,format=m3 u8-aapl-v3)
#EXT-X-ENDLIST

Third Link:
#EXTM3U
#EXT-X-VERSION:3
#EXT-X-ALLOW-CACHE:NO
#EXT-X-MEDIA-SEQUENCE:0
#EXT-X-TARGETDURATION:6
#EXT-X-PROGRAM-DATE-TIME:1971-08-04T17:18:05.680Z
#EXTINF:6.006000,no-desc
Fragments(video=501742856800000,format=m3u8-aapl-v3,audiotrack=englishnumeris)
#EXTINF:6.006000,no-desc
Fragments(video=501742916860000,format=m3u8-aapl-v3,audiotrack=englishnumeris)
#EXTINF:6.006000,no-desc
Fragments(video=501742976920000,format=m3u8-aapl-v3,audiotrack=englishnumeris)
#EXTINF:6.006000,no-desc
Fragments(video=501743036980000,format=m3u8-aapl-v3,audiotrack=englishnumeris)
#EXTINF:6.006000,no-desc
Fragments(video=501743097040000,format=m3u8-aapl-v3,audiotrack=englishnumeris)
#EXTINF:6.006000,no-desc
Fragments(video=501743157100000,format=m3u8-aapl-v3,audiotrack=englishnumeris)
#EXTINF:6.006000,no-desc
Fragments(video=501743217160000,format=m3u8-aapl-v3,audiotrack=englishnumeris)
#EXTINF:6.006000,no-desc
Fragments(video=501743277220000,format=m3u8-aapl-v3,audiotrack=englishnumeris)
#EXTINF:6.006000,no-desc
Fragments(video=501743337280000,format=m3u8-aapl-v3,audiotrack=englishnumeris)
#EXTINF:6.006000,no-desc
Fragments(video=501743397340000,format=m3u8-aapl-v3,audiotrack=englishnumeris)
#EXTINF:6.006000,no-desc
Fragments(video=501743457400000,format=m3u8-aapl-v3,audiotrack=englishnumeris)
#EXTINF:6.006000,no-desc
Fragments(video=501743517460000,format=m3u8-aapl-v3,audiotrack=englishnumeris)
#EXTINF:6.006000,no-desc
Fragments(video=501743577520000,format=m3u8-aapl-v3,audiotrack=englishnumeris)
#EXTINF:6.006000,no-desc
Fragments(video=501743637580000,format=m3u8-aapl-v3,audiotrack=englishnumeris)
#EXTINF:6.006000,no-desc
Fragments(video=501743697640000,format=m3u8-aapl-v3,audiotrack=englishnumeris)

(....)

#EXTINF:6.006000,no-desc
Fragments(video=501839913760000,format=m3u8-aapl-v3,audiotrack=englishnumeris)
#EXTINF:6.006000,no-desc
Fragments(video=501839973820000,format=m3u8-aapl-v3,audiotrack=englishnumeris)
#EXTINF:2.002000,no-desc
Fragments(video=501840033880000,format=m3u8-aapl-v3,audiotrack=englishnumeris)
#EXT-X-ENDLIST


FROM Mozilla Debug:

Headers:

Request Headers:
Host: dvr-i.rio2016.cbc.ca
User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-GB,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Referer: http://olympics.cbc.ca/flash/divaplayer/divaflash/DivaAll.swf?20160806065535
Cookie: s_pers=%######%#####-New%7C1502035270344%3B; AMCV_951720B3535680CB0A490D45%40AdobeOrg=199910993 1%7CMCMID%7C88286696642400635392847616661647017606 %7CMCAID%7CNONE; hdntl=exp=#######~acl=%2f*~hmac=###########
Connection: keep-alive

Response Headers:
Access-Control-Allow-Credentials: Server,range,hdntl,hdnts
Access-Control-Allow-Headers: origin,range,hndtl,hdnts
Access-Control-Allow-Methods: GET,POST,OPTIONS
Access-Control-Allow-Origin: *
Access-Control-Max-Age: 86400
Cache-Control: max-age=259200
Content-Length: 171781
Content-Type: application/vnd.apple.mpegurl
Date: Sat, 06 Aug 2016 15:18:04 GMT
Etag: "1505520086413335"
Expires: Tue, 09 Aug 2016 15:18:04 GMT
Pragma: IISMS/6.0,IIS Media Services Premium by Microsoft
Server: Microsoft-IIS/8.5 IISMS/6.0
X-Content-Type-Options: nosniff
X-Powered-By: ASP.NET
x-ms-streaming-duration: 0


What should I do next?

Many thanks

raphou
08-06-2016, 02:14 PM
Also, forgot to mention that HDS Link Detector does not work here, whereas it works for other videos on CBC ( eg: http://www.thecomedynetwork.ca/shows/thedailyshow?videoPackage=141171)

Thanks

joyfuls
08-07-2016, 12:18 AM
I would really like to know how to as well! The free VPNs/Proxies won't work on NBC :c

McLemore23
08-07-2016, 06:46 AM
in livestreamer:
livestreamer --hls-segment-threads 10 "hlsvariant://http://dvr-i.rio2016.cbc.ca/dvr/9c8f0e62-a9c7-432a-824f-e0951599301b/9c8f0e62-a9c7-432a-824f-e0951599301b.ism/manifest(format=m3u8-aapl-v3,audioTrack=englishnumeris)?hdnea=st=1470572294~ exp=1470572324~acl=/*~hmac=89795832882751fd1bb658099e1de8ec30fa212b9c6 0def524c555ed27075b9d" best -o Olympics.ts
works pretty good for me

JustPassing
08-07-2016, 07:17 AM
Can anybody help? I'm having problems with the AdobeHDS.php script. I've downloaded the script and installed php with xampp, but when I type php AdobeHDS.php --help, I get a bunch of lines. Is there anything special I have to do with the script? Thanks.

Edit: It seems that php_mysql.dll doesn't exist... I've done a google search on this but I'm having a hard time understanding what the problem is or what to do. Any help appreciated.

BusterAvis
08-07-2016, 11:32 AM
I also am struggling with AdobeHDS.php.
What do I have to download exactly to get AdobeHDS.php ???
Where can I download it from? I've never used it before.
I'm used to working with FFMPEG and LiveStreamer in Command Prompt.

If someone would be kind enough to put exact instructions for what we need for AdobeHDS.php, and a starting point to get us going, that would be great.

Thanks.

For example, trying to capture and download the stream from the NBC Olympics site, something like this .........
http://stream.nbcolympics.com/beach-volleyball-preliminary-match-3

joyfuls
08-07-2016, 09:00 PM
in livestreamer:

works pretty good for me

I wanted to rip this (http://olympics.cbc.ca/video/vod/artistic-gymnastics-aug-men-qualification.html) video.

I got an error using the following code. I did the exact same thing, but it says forbidden.

livestreamer --hls-segment-threads 10 "hlsvariant://http://dvr-i.rio2016.cbc.ca/dvr/3d603fd0-787e-42b2-b28b-9a1dba20b18a/3d603fd0-787e-42b2-b28b-9a1dba20b18a.ism/manifest(format=m3u8-aapl-v3,audioTrack=english)?hdnea=st=1470624656~exp=147 0624686~acl=/*~hmac=01fdc70288728e4c1265a4a969be042c51d563cddce 15f9ed27a5f2b3c778870" best -o Olympics.ts

[cli][info] Found matching plugin stream for URL hlsvariant://http://dvr-i.rio2016.cbc.ca/dvr/3d603fd0-787e-42b2-b28b-9a1dba20b18a/3d603fd0-787e-42b2-b28b-9a1dba20b18a.ism/manifest(format=m3u8-aapl-v3,audioTrack=english)?hdnea=st=1470624656~exp=147 0624686~acl=/*~hmac=01fdc70288728e4c1265a4a969be042c51d563cddce 15f9ed27a5f2b3c778870

error: Unable to open URL: http://dvr-i.rio2016.cbc.ca/dvr/3d603fd0-787e-42b2-b28b-9a1dba20b18a/3d603fd0-787e-42b2-b28b-9a1dba20b18a.ism/manifest(format=m3u8-aapl-v3,audioTrack=english)?hdnea=st=1470624656~exp=147 0624686~acl=/*~hmac=01fdc70288728e4c1265a4a969be042c51d563cddce 15f9ed27a5f2b3c778870(403 Client Error: Forbidden)

*edit: I live in Canada so it's not a geoblock problem

joyfuls
08-07-2016, 11:01 PM
Actually I solved it. Use livestreamer

livestreamer hlsvariant://"url-to-video.m3u8" best -o video.mp4

credits to this reddit thread. (https://www.reddit.com/r/Piracy/comments/4w31xw/downloading_videos_off_of_cbc_sports_cbc_olympics/)

Now my question is does anyone know how to start the download from a certain timestamp?

nwtim
08-08-2016, 05:02 PM
I am in the US, so I am not sure if this will be the same for you or not. I have nbcolympics.com, so if you have access to use that instead this will work 100%. The Canada vs. Australia game is there in full replay.

http://stream.nbcolympics.com/womens-soccer-match-2

To capture the video you will need the HDS Link Detector installed in Firefox. Just search for how to do this, install it, configure if you don’t have it already. I don’t remember the process off the top of my head. Make sure you have the updated AdobeHDS.php, set and configured properly too. Again, search for this if you don’t have it already. I am using a Macintosh, not that it makes a difference but telling you my process.

With everything installed and configured, make sure the HDS Link detector add-on is enabled. Now navigate to the game in question. Once the game starts playing you will see the add-on show the banner showing the video fragment link it captures. With this link you can capture the video fragments for this full video, and also the audio fragments for the full audio. The fragments will have to be merged together as well as the video and the audio into one full video. Those processes are rather quick and seamless.

So once the add-on gives you a link, you can modify the link and download the fragments you need and merge them together.

This is an example of the code you will need for this

Video:

php AdobeHDS.php --quality 7000 --manifest "" --delete


Audio:

php AdobeHDS.php --quality 56 --manifest "" --delete


Join:

ffmpeg -i video.flv -i audio.flv -c copy joined.mp4

Example, Given this link from the add-on:

php AdobeHDS.php --manifest "http://olystreameast.nbcolympics.com/vod/690c26d3-280d-4d17-9d86-4ef9e406480f/nbc-olympics0803094426.ism/manifest(format=f4m-f4f,filtername=vodcut).f4m?token=st=1470317712~exp =1470317832~acl=/vod/690c26d3-280d-4d17-9d86-4ef9e406480f/nbc-olympics0803094426.ism/*~hmac=ee008b15c134623c079477ea82ebbc6bd9ef5a56e3b 75d0c134162d2f37f8a30" --delete


With that link, if you take the url between the “”’s and place it within the code strings I posted above it will start capturing the video fragments, then the audio fragments in Terminal (for me since I am using a Macintosh) or a cmd prompt if you are using Windows. The link above will expire in a minute or so. So I always capture the video fragments first. This will download all the video fragments, then it will put them all together with no user interaction into a .flv file. Then I reload the soccer match in the browser to capture a new link in the add-on and paste that within the code string Above. This will as well capture all the audio fragments and put them together. All you will have to do is the last line of code I gave you to Join them with ffmpeg. Will create a video with audio into an .mp4. That will give you the highest video and audio quality possible through the nbcolympics website. You can change the video quality if you would like, but you’ll have to run the -debug script on the add-on link that is captured:

php AdobeHDS.php --manifest "http://olystreameast.nbcolympics.com/vod/690c26d3-280d-4d17-9d86-4ef9e406480f/nbc-olympics0803094426.ism/manifest(format=f4m-f4f,filtername=vodcut).f4m?token=st=1470317712~exp =1470317832~acl=/vod/690c26d3-280d-4d17-9d86-4ef9e406480f/nbc-olympics0803094426.ism/*~hmac=ee008b15c134623c079477ea82ebbc6bd9ef5a56e3b 75d0c134162d2f37f8a30" -debug

That will give you a whole bunch of info that will just keep scrolling. So let it run and you are looking for the info at the top. So after a few seconds stop the debug script. You want to capture Fragments, not Keyframes.

Bitrate URL
7001 QualityLevels(7000000)/Keyframes(video,format=f4m-f4f)
7000 QualityLevels(7000000)/Fragments(video,format=f4m-f4f)
4001 QualityLevels(4000000)/Keyframes(video,format=f4m-f4f)
4000 QualityLevels(4000000)/Fragments(video,format=f4m-f4f)
2201 QualityLevels(2200000)/Keyframes(video,format=f4m-f4f)
2200 QualityLevels(2200000)/Fragments(video,format=f4m-f4f)
1401 QualityLevels(1400000)/Keyframes(video,format=f4m-f4f)
1400 QualityLevels(1400000)/Fragments(video,format=f4m-f4f)
901 QualityLevels(900000)/Keyframes(video,format=f4m-f4f)
900 QualityLevels(900000)/Fragments(video,format=f4m-f4f)
601 QualityLevels(600000)/Keyframes(video,format=f4m-f4f)
600 QualityLevels(600000)/Fragments(video,format=f4m-f4f)
301 QualityLevels(300000)/Keyframes(video,format=f4m-f4f)
300 QualityLevels(300000)/Fragments(video,format=f4m-f4f)
56 QualityLevels(56000)/Fragments(audio_en_0,format=f4m-f4f)

Sorry if this is long winded, I just wrote this out quickly with what I do, so if it is too much detail that is why. Any questions let me know. Good luck, maybe this will also work for the CBC site.This is pretty much the method I used for downloading numerous events from the 2014 Winter Olympics (QualityLevels were different), but I'm having trouble this time around. I updated to the latest PHP version (VC14) and when I run the php script to grab the video I'm getting an error saying,

You have to install the following extension(s) to continue: 'curl'

Anyone know what curl extension is needed for this?

When I try the version of PHP I used for 2014, I consistently get,

KSV Adobe HDS Downloader
Processing manifest info....
Access Denied! Unable o download the manifest.

This happens no matter how quickly I do a copy-paste-save-and run of the HDS Link capture.

What version of PHP are you who are getting successful captures using?

nwtim
08-08-2016, 06:45 PM
This is pretty much the method I used for downloading numerous events from the 2014 Winter Olympics (QualityLevels were different), but I'm having trouble this time around. I updated to the latest PHP version (VC14) and when I run the php script to grab the video I'm getting an error saying,

You have to install the following extension(s) to continue: 'curl'

Anyone know what curl extension is needed for this?

When I try the version of PHP I used for 2014, I consistently get,

KSV Adobe HDS Downloader
Processing manifest info....
Access Denied! Unable o download the manifest.

This happens no matter how quickly I do a copy-paste-save-and run of the HDS Link capture.

What version of PHP are you who are getting successful captures using?I reverted back to the previous version of PHP that I used in 2014. I believe it was unable to download the manifest because it wasn't recognizing the quality parameter I was setting. I tried --quality high instead of a bitrate and it was able to download, but all I got was the keyframes. I had run into this problem in the past, but I can't recall how I got around it.
Any tips?

nwtim
08-08-2016, 10:23 PM
When I get a good manifest url I'm able to get the fragments joined on one of my computers, but on the other I seem to have an incorrect version of the AdobeHDS.php script. Anybody know where I can get different versions of the script to try?
Never mind on the above - I found one that's working now.

So far I'm having another issue and that is that I'm getting an imcomplete ffmpeg mux of the joined video fragments and the joined audio fragments. For example, on the Women's synchronized 3m springboard diving, I get an audio file that is 1h 35m in length and a video file that is 1h 34m in length and at the 1h 32m 23s mark it returns,

negative cts, previous timestamps might e wrong
[mp4 @ 048ef880] pts <5450497> < dts <5545907> in stream 0
av_interleaved_write_frame<>; Invalid argument

Anyone see something like this or have any thoughts? The resulting aborted muxed file does not play.

why3e
08-10-2016, 10:53 PM
Actually I solved it. Use livestreamer

credits to this reddit thread. (https://www.reddit.com/r/Piracy/comments/4w31xw/downloading_videos_off_of_cbc_sports_cbc_olympics/)

Now my question is does anyone know how to start the download from a certain timestamp?
I tried to download the following livestreamer
http://olympics.cbc.ca/video/vod/table-tennis-aug-women-semifinal-matches.html

The manifest link is
http://dvr-s.rio2016.cbc.ca/dvr/adaf3fb7-7029-43fe-9f4f-be240564040a/adaf3fb7-7029-43fe-9f4f-be240564040a.ism/manifest?hdnea=st=1470890921~exp=1470890951~acl=/*~hmac=0497a262cc4d7766289c026b70c76b3640857bd1601 960a26ceddde79ffc7df7

there was nothing like (format=m3u8-aapl-v3,audioTrack=english)
and got an error
error: Unable to open URL: http://dvr-s.rio2016.cbc.ca/dvr/adaf3fb7-7029-43fe-9f4f-be240564040a/adaf3fb7-7029-43fe-9f4f-be240564040a.ism/manifest?hdnea=st=1470890921~exp=1470890951~acl=/*~hmac=0497a262cc4d7766289c026b70c76b3640857bd1601 960a26ceddde79ffc7df7 (403 Client Error: )

Any idea?
Thanks in advance!

BusterAvis
08-11-2016, 04:19 PM
Alright, I finally got AdobeHDS.php to work properly with the NBC Olympics site for a test file I did of one of the Judo replays (which was close to 3 hours long). I'll try beach volleyball next. Thanks to ehurdler (2nd post in this thread) and everyone else on here for the explanation and diagnostics of this process throughout this entire thread. I got it to work for the video file, the audio file, and the FFMPEG function to merge the video/audio together. It helped that I had FFMPEG experience before.

I have two questions however:

1.) I use this code:

php AdobeHDS.php --quality 7000 --manifest "" --delete

With the word "delete" at the end, but the 7000 quality (1080p) version is saved as one file, which is good, but the bad thing is that all the 2,000 fragments are also still showing in my AdobeHDS folder as well. Isn't the --delete function in the code above supposed to delete the fragments once the full large (8 GB) file has completely been merged/downloaded from all the fragements? It's a pain to have to go back into the folder and scroll with the mouse to highlight all of them to delete them. I know that's picky, but I would love to eliminate having to do this, if possible. Thanks.

Also ....

2.) Can we use the same code function above to download two separate NBC Olympics programs at the same time (in two separate command prompt windows of course) ???

I would love to set up a batch in which I'm downloading multiple NBC Olympics files (even more than two) at the same time, while it's running in the other room, or overnight. Is that recommended? I know it would slow it down, but who cares if it's overnight and then I wake up in the morning and all of them are right there.

Please feel free to let me know your thoughts in what you recommend for both of these questions.

Thanks again.

joyfuls
08-12-2016, 02:17 AM
I tried to download the following livestreamer
http://olympics.cbc.ca/video/vod/table-tennis-aug-women-semifinal-matches.html

The manifest link is
http://dvr-s.rio2016.cbc.ca/dvr/adaf3fb7-7029-43fe-9f4f-be240564040a/adaf3fb7-7029-43fe-9f4f-be240564040a.ism/manifest?hdnea=st=1470890921~exp=1470890951~acl=/*~hmac=0497a262cc4d7766289c026b70c76b3640857bd1601 960a26ceddde79ffc7df7

there was nothing like (format=m3u8-aapl-v3,audioTrack=english)
and got an error
error: Unable to open URL: http://dvr-s.rio2016.cbc.ca/dvr/adaf3fb7-7029-43fe-9f4f-be240564040a/adaf3fb7-7029-43fe-9f4f-be240564040a.ism/manifest?hdnea=st=1470890921~exp=1470890951~acl=/*~hmac=0497a262cc4d7766289c026b70c76b3640857bd1601 960a26ceddde79ffc7df7 (403 Client Error: )

Any idea?
Thanks in advance!

The link expires super fast, so you have to be quick. Try inserting (format=m3u8-aapl-v3,audioTrack=english) onto your URL.

Like this

http://dvr-s.rio2016.cbc.ca/dvr/adaf3fb7-7029-43fe-9f4f-be240564040a/adaf3fb7-7029-43fe-9f4f-be240564040a.ism/manifest(format=m3u8-aapl-v3,audioTrack=english)?hdnea=st=1470890921~exp=147 0890951~acl=/*~hmac=0497a262cc4d7766289c026b70c76b3640857bd1601 960a26ceddde79ffc7df7

BusterAvis
08-13-2016, 02:51 AM
Is there anyway to get AdobeHDS.php to download the fragments any faster?
Any procedures at all?
I'm assuming it has a lot to do with the speed of our Internet, not to mention the processing speed of the PC, etc.

But there's gotta be a way.
Even if it just speeds it up by 20%.

Right now it appears I'm able to download 30 video fragments per minute.
That means if the video is 1,200 fragments, it is going to take 40 minutes.

Mezar
08-16-2016, 10:32 AM
I might be on to something.
I found something from a YouTube video:
https://www.youtube.com/watch?v=6DXZHYRqM5A

When trying to grab the manifest code from this NBC Olympics link referenced above:
http://stream.nbcolympics.com/womens-soccer-match-2

I downloaded Grab Any Media for AdobeHDS helper from that YouTube link.

Hallo!
I'm trying to record two streams from Rio Summer Olympics:
http://stream.nbcolympics.com/beach-volleyball-womens-quarterfinal-2
&
http://stream.nbcolympics.com/beach-volleyball-round-16-match-5

I'm, using Grab Any Media 5 with AdobeHDSHeleper and Hola vpn (I live in Europe).

Unfortunately I have Access Deined!
https://dl.dropboxusercontent.com/u/1840602/screen.png

Can anybody help me?

adele
08-16-2016, 12:59 PM
Hi, I I am trying to download beach volleyball and water polo matches from NBC. What programs are available for mac to record streams?

JustPassing
08-17-2016, 03:38 PM
Actually I solved it. Use livestreamer



credits to this reddit thread. (https://www.reddit.com/r/Piracy/comments/4w31xw/downloading_videos_off_of_cbc_sports_cbc_olympics/)

Now my question is does anyone know how to start the download from a certain timestamp?

Hi, can you help me out. I've followed the guide in that reddit post but I am getting an error. I'm getting
error: Unable to open URL: "URL" (403 Client Error Forbidden)

What did you do to get around this? I'd like to specify that I input the command code well under the 30 second time limit. Thanks!

BusterAvis
08-17-2016, 05:38 PM
ATTENTION: - NBC Olympics

Excellent YouTube video on how to use AdobeHDS.php
This works TERRIFIC on the NBC Olympics content.
Keep in mind, you have to do a 3 step process to get what you want from the NBC Olympics site.

1.) Download Video fragments into "one file" (thanks to AdobeHDS.php)
2.) Download Audio fragments into "one file" (thanks to AdobeHDS.php)
3.) Use FFMPEG to merge the new Video File & Audio File into one file, that way you have video & sound in the same file.

*FFMPEG merges it into sync.
The audio is perfectly timed just right with the video.

YouTube Link to learn how to use AdobeHDS.php:
https://www.youtube.com/watch?v=Ahq_Azppvj8


Supplement what you learn from that YouTube link with the excellent post from ehurdler on the first page of this thread:
http://stream-recorder.com/forum/trying-download-vod-cbc-sports-cbc-olympics-t22074.html

It will take a little while to learn how to do this, with practice.
Once you learn how, it becomes a fluid process that is quite enjoyable but tedious obviously.

1.) I can honestly download a 3 hour NBC Olympic Video file (from all the fragments with AdobeHDS.php) in about one hour, for a "1080p full high definition" quality (this is NBC's 7,000 quality version, 7,000 being the bit rate). 3 hour video is downloaded in one hour. That's 3 times faster than the length of the video.

2.) I can download the Audio file from all the fragments for a 3 hour NBC Olympics video in less than 5 minutes.

3.) I can then use FFMPEG to merge the Video & Audio file into one file in less than 5 minutes.

4.) I still have to delete all the 2,000+ fragments after all of this is done. This takes about 2 or 3 minutes to scroll through with your mouse, highlight them all, delete them, and then empty the recycling bin, etc.

*Total time involved for a 3 hour NBC Olympics video in 1080p = 75 minutes or so, for all 4 of these steps combined.

*IMPORTANT* - Please note, you must use Firefox (not Google Chrome), and you must download and enable HDS Link Detector in Firefox and have it enabled at all times when pulling up the NBC Olympics video that you want to capture. It will then pop up with the exact "Manifest link" that you need, and all you need to do is click that link, copy and paste it, and work from there in command prompt using the command prompt codes that ehurdler mentioned on the first page of this thread.

Happy hunting.

BusterAvis
08-17-2016, 06:20 PM
WOW, I just played the newly captured 1080p NBC Olympics content on my 4k TV for the first time, as opposed to just my computer monitor.

I have a 4k Samsung TV (with DirecTV), and plenty of HDMI & USB connections on the back side of the TV that are easily accessible.

I have a USB external portable hard drive device that I can store content on (i.e. downloaded content from my computer, etc.) and plug that into the USB 3.0 port on my 4k TV. It plays the files beautifully, and the pause, rewind, fast forward functions, etc. work very fluidly via my Samsung remote control on my TV using my USB hard drive storage device that I have plugged into the back side of my TV. It's almost like watching it on DirecTV itself in how fluid it goes. This defeats the purpose of burning these files onto a blank Blu-ray disc, which just takes up more time.

My Samsung 4k TV upscales 1080p content beautifully into 4k quality.
It's still not quite "Native" 4k, because it's an upscaled 4k, but it enhances the 1080p picture quality into the 4 times better resolution of 4k video vs. just native 1080p. It looks so much better than 1080p quality on my 1080p computer monitor (which isn't a 4k computer monitor, but I plan to get one soon).

The picture quality of these NBC Olympics files on my 4k TV is just stunning. It's almost as good as watching it in "Native" 4k (but not quite), and much better than 1080p since it's upscaling the picture quality with the Sasmung 4k upscaling engine in my TV. It seems that only 1080p upscales good to 4k on my TV. 720p content doesn't look upscaled or much different from my computer monitor, but with 1080p content to upscale to 4k instead of 720p to upscale, makes a world of difference.

These downloaded files have a better picture quality than watching it on my HD DVR on DirecTV, since DirecTV (and other satellite and cable providers) compress their picture quality. These files that we download from the NBC Olympics site are not compressed, or at least they don't seem that way. These are the best quality files, so get the 7,000 bit rate quality if you can. I did a test, and they are indeed full 1080p files from the NBC Olympics site, and if you have a 4k TV that upscales 1080p content to 4k, watch out.

Beach Volleyball looks crazy in upscaled 4k. :)

JustPassing
08-18-2016, 04:03 PM
Does anybody know which broadcaster offers the highest quality streams? It would seem my local broadcaster only offers up to 720p (and Canada as well, it would seem...). According to comments made here, NBC offers 1080p but with their requirement of you logging in to your TV provider in order to get access to the streams, that's out of the question.

I'm willing to get a VPN but need to know which country offers the best quality. If I remember correctly, the british broadcaster for the London Olympics was the only one that offered 5.1 sound for some of the events. Does anybody have any experience with the british broadcaster?

Do the methods mentionned here work? I'd like to know to guide my choice in purchasing a VPN. Thanks!

ketnoi247365
08-19-2016, 02:21 AM
C??m ??n b?*i viá??t cá»§a bá??n

maximf83
08-28-2016, 12:20 AM
Thanks to this thread i was able to make this work, my only question is there are often 3 audio tracks, english, spanish, and no commentary, how do i choose which audio track to download?

kdatavn
08-28-2016, 11:07 PM
?? NGHĨA T?ŠN MIỀN PHá»” BIá??N

Má»—i t??n miá»?n (http://kdata.vn/domains) gá??n vá»›i má»™t Ä‘u?´i (há?*u tố) mang ?? nghÄ©a ri??ng, m?´ tá?? phá?§n n?*o Ä‘á?·c Ä‘iá»?m, t?*nh chá??t cá»§a chá»§ sá»? há»?u l?* c?? nh??n, doanh nghiệp hoá?·c c??c tổ chức. Vá?*y ?? nghÄ©a cá»§a c??c Ä‘u?´i t??n miá»?n l?* g?¬?


.com
.com l?* Ä‘u?´i t??n miá»?n dá»… nhá?*n biá??t v?* quen thuá»™c nhá??t vá»›i má»?i ng?°á»?i d??ng internet. â€?COMâ€? l?* từ viá??t tá??t cá»§a từ â€?commercialâ€? mang ?? nghÄ©a th?°??ng má??i. Há?*u tố t??n miá»?n â€?.comâ€? l?* loá??i t??n miá»?n Ä‘?°á»?c c??c c?? nh??n v?* c?´ng ty chuá»™ng nhá??t thá?? giá»›i do sá»± dá»… nhá?*n biá??t v?* định h?¬nh trong t??m t?°á»?ng ng?°á»?i d??ng internet. V?¬ vá?*y, kh?´ng qu?? kh?? hiá»?u khi há?§u há??t c??c doanh nghiệp tr??n thá?? giá»›i Ä‘á»?u sá»? há»?u ?*t nhá??t má»™t t??n miá»?n c?? Ä‘u?´i â€?.comâ€?


.vn
.vn l?* k?? hiệu Ä‘á??i diện cho từ â€?Việt Namâ€?. Ä???y l?* Ä‘u?´i t??n miá»?n quốc gia Ä‘?°á»?c c?´ng nhá?*n v?* bá??o há»™ bá»?i ph??p luá?*t Việt Nam. Nhá»?ng t??n miá»?n â€?.vnâ€? sá?? n??ng cao uy t?*n v?* độ tin t?°á»?ng cá»§a c?? nh??n v?* tổ chức đối vá»›i ng?°á»?i d??ng internet, kh??ch h?*ng. Do Ä‘??, Ä‘u?´i t??n miá»?n n?*y c?©ng rá??t Ä‘?°á»?c c??c doanh nghiệp ?°a th?*ch v?* tin cá?©n sá»* dá»?ng, l?* Ä‘u?´i t??n miá»?n phổ th?´ng thứ hai tá??i Việt Nam sau Ä‘u?´i â€?.comâ€?.


.net
.net lá??i l?* má»™t Ä‘u?´i t??n miá»?n kh??c c?©ng kh?? dá»… nhá?*n biá??t tr??n m?´i tr?°á»?ng internet, â€?.netâ€? l?* k?? hiệu viá??t tá??t cá»§a từ â€?networkâ€?, mang nghÄ©a má??ng l?°á»›i. Nhá»?ng t??n miá»?n n?*y th?°á»?ng Ä‘?°á»?c c??c c?´ng ty cung cá??p dịch vá»? internet, c??c Ä‘??n vị cung cá??p dịch vá»? website hay c??c tổ chức kh??c c?? li??n quan tá»›i há?? tá?§ng internet. B??n cá??nh Ä‘??, â€?.netâ€? c??n l?* sá»± chá»?n lá»±a há»?p l?? thay thá?? cho â€?.comâ€? trong tr?°á»?ng há»?p t??n miá»?n â€?.comâ€? Ä‘?? bị Ä‘Ä?ng k?? bá»?i ng?°á»?i d??ng kh??c.


.org
.org l?* viá??t tá??t cá»§a từ â€?Organizationâ€?, tức l?* tổ chức. Ä?u?´i t??n miá»?n n?*y th?°á»?ng Ä‘?°á»?c sá»* dá»?ng bá»?i c??c tổ chức phi lá»?i nhuá?*n c?©ng nh?° c??c tổ chức li??n ká??t th?°??ng má??i.


.info
.info th?°á»?ng Ä‘?°á»?c d??ng cho nhá»?ng trang web Ä‘??ng vai tr?? cung cá??p tin tức, dá»? liệu, â€?t?*i nguy??nâ€? v?* c??c diá»…n Ä‘?*n b?*n thá??o. Ä???y c?©ng l?* há?*u tố t??n miá»?n phổ biá??n nhá??t sau c??c loá??i t??n miá»?n nh?° â€?.comâ€?, â€?.vnâ€?, â€?.netâ€? v?* â€?.orgâ€?.


.gov
.gov l?* từ viá??t tá??t cá»§a "governmentâ€?, nghÄ©a l?* "ch?*nh phá»§". C??c t??n miá»?n dá??ng n?*y chỉ Ä‘?°á»?c ph?©p d??ng trong c??c c?? quan, Ä‘??n vị cá»§a quốc gia, ch?*nh phá»§. C??c c?? nh??n v?* tá?*p thá»? kh?´ng li??n quan kh?´ng Ä‘?°á»?c ph?©p sá»* dá»?ng.


.edu
K?? hiệu n?*y viá??t tá??t từ "education" mang nghÄ©a gi??o dá»?c . Giống nh?° nh?° Ä‘u?´i t??n miá»?n â€?.govâ€?, t??n miá»?n â€?.eduâ€? l?* loá??i t??n miá»?n Ä‘á?·c biệt chỉ Ä‘?°á»?c ph?©p sá»* dá»?ng cho website cá»§a c??c tổ chức, Ä‘??n vị li??n quan tá»›i gi??o dá»?c – Ä‘?*o tá??o nh?° tr?°á»?ng há»?c, c?? cá»? bồi d?°á»?ng gi??o dá»?c, Bá»™ Gi??o Dá»?c – Ä??*o Tá??o.

Tr??n Ä‘??y l?* má»™t số ?? nghÄ©a cá»§a c??c Ä‘u?´i t??n miá»?n dá»… nhá?*n biá??t tr??n m?´i tr?°á»?ng internet. T??y thuá»™c v?*o lÄ©nh vá»±c kinh doanh, t?*nh chá??t hoá??t động cá»§a tổ chức m?* bá??n sá?? chá»?n Ä‘?°á»?c Ä‘u?´i t??n miá»?n há»?p cho website cá»§a m?¬nh. Th??m v?*o Ä‘??, t??n miá»?n vá»›i ?? nghÄ©a ri??ng, gá??n liá»?n vá»›i th?°??ng hiệu c?©ng l?* nh??n tố thiá??t yá??u Ä‘á»? định vị Ä‘?°á»?c h?¬nh á??nh, website cá»§a bá??n v?*o sá»± nhá?*n diện cá»§a kh??ch h?*ng. Cho n??n, h??y chá»?n cho m?¬nh t??n miá»?n á??n t?°á»?ng c?©ng nh?° Ä‘u?´i t??n miá»?n th?*ch há»?p.



KDATA l?* nh?* cung cá??p dịch vá»? m??y chá»§ v?* email ri??ng c?? uy t?*n v?* chá??t l?°á»?ng tá??i Việt Nam. Ä?á??n vá»›i KDATA Ä‘á»? chá»?n lá»?c cho m?¬nh nhá»?ng cá??u h?¬nh, dịch vá»? há»?p l?? nhá??t, tối ?°u nhá??t cho c?´ng việc kinh doanh. B??n cá??nh Ä‘?? l?* dịch vá»? kh??ch h?*ng chuy??n nghiệp, há»— trá»? tá?*n t?¬nh từ đội ng?© nh??n vi??n gi?*u kinh nghiệm cá»§a KDATA Ä‘á??m bá??o sá?? l?*m bá??n bá?±ng l??ng v?* mang Ä‘á??n sá»± ph??t triá»?n trong t?°??ng lai doanh nghiệp. Bá??n c?? muốn trá??i nghiệm nhá»?ng dịch vá»? tuyệt vá»?i Ä‘?? kh?´ng?



C??n do dá»± g?¬ ná»?a, li??n hệ ngay Ä‘á»? nhá?*n nhá»?ng ?°u Ä‘??i há??p dá?«n .
âš? Website: http://kdata.vn/ hoá?·c Facebook : https://www.facebook.com/kdata.vps.hosting.server/
âš? Hotline TP.HCM/Zalo: 0945 592 311 (D?©ng)
âš? Hotline HN/Zalo: 0165 972 0342 (Huyá»?n)
âš? Email: kinhdoanh@kdata.vn

aliakrep
08-29-2016, 04:55 AM
where Is Admin ?
Fuck This Spam