]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/ebaumsworld.py
3 from .common
import InfoExtractor
4 from ..utils
import determine_ext
7 class EbaumsWorldIE(InfoExtractor
):
8 _VALID_URL
= r
'https?://www\.ebaumsworld\.com/video/watch/(?P<id>\d+)'
11 u
'url': u
'http://www.ebaumsworld.com/video/watch/83367677/',
12 u
'file': u
'83367677.mp4',
14 u
'title': u
'A Giant Python Opens The Door',
15 u
'description': u
'This is how nightmares start...',
16 u
'uploader': u
'jihadpizza',
20 def _real_extract(self
, url
):
21 mobj
= re
.match(self
._VALID
_URL
, url
)
22 video_id
= mobj
.group('id')
23 config
= self
._download
_xml
(
24 'http://www.ebaumsworld.com/video/player/%s' % video_id
, video_id
)
25 video_url
= config
.find('file').text
29 'title': config
.find('title').text
,
31 'ext': determine_ext(video_url
),
32 'description': config
.find('description').text
,
33 'thumbnail': config
.find('image').text
,
34 'uploader': config
.find('username').text
,