]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/nationalgeographic.py
1 from __future__
import unicode_literals
3 from .common
import InfoExtractor
10 class NationalGeographicVideoIE(InfoExtractor
):
11 IE_NAME
= 'natgeo:video'
12 _VALID_URL
= r
'https?://video\.nationalgeographic\.com/.*?'
16 'url': 'http://video.nationalgeographic.com/video/news/150210-news-crab-mating-vin?source=featuredvideo',
17 'md5': '730855d559abbad6b42c2be1fa584917',
19 'id': '0000014b-70a1-dd8c-af7f-f7b559330001',
21 'title': 'Mating Crabs Busted by Sharks',
22 'description': 'md5:16f25aeffdeba55aaa8ec37e093ad8b3',
23 'timestamp': 1423523799,
24 'upload_date': '20150209',
27 'add_ie': ['ThePlatform'],
30 'url': 'http://video.nationalgeographic.com/wild/when-sharks-attack/the-real-jaws',
31 'md5': '6a3105eb448c070503b3105fb9b320b5',
33 'id': 'ngc-I0IauNSWznb_UV008GxSbwY35BZvgi2e',
35 'title': 'The Real Jaws',
36 'description': 'md5:8d3e09d9d53a85cd397b4b21b2c77be6',
37 'timestamp': 1433772632,
38 'upload_date': '20150608',
41 'add_ie': ['ThePlatform'],
45 def _real_extract(self
, url
):
46 name
= url_basename(url
)
48 webpage
= self
._download
_webpage
(url
, name
)
49 guid
= self
._search
_regex
(
50 r
'id="(?:videoPlayer|player-container)"[^>]+data-guid="([^"]+)"',
54 '_type': 'url_transparent',
55 'ie_key': 'ThePlatform',
57 'http://link.theplatform.com/s/ngs/media/guid/2423130747/%s?mbr=true' % guid
,
58 {'force_smil_url': True}),