]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/nonktube.py
1 from __future__
import unicode_literals
3 from .nuevo
import NuevoBaseIE
6 class NonkTubeIE(NuevoBaseIE
):
7 _VALID_URL
= r
'https?://(?:www\.)?nonktube\.com/(?:(?:video|embed)/|media/nuevo/embed\.php\?.*?\bid=)(?P<id>\d+)'
9 'url': 'https://www.nonktube.com/video/118636/sensual-wife-uncensored-fucked-in-hairy-pussy-and-facialized',
13 'title': 'Sensual Wife Uncensored Fucked In Hairy Pussy And Facialized',
18 'skip_download': True,
21 'url': 'https://www.nonktube.com/embed/118636',
22 'only_matching': True,
25 def _real_extract(self
, url
):
26 video_id
= self
._match
_id
(url
)
28 webpage
= self
._download
_webpage
(url
, video_id
)
30 title
= self
._og
_search
_title
(webpage
)
31 info
= self
._parse
_html
5_media
_entries
(url
, webpage
, video_id
)[0]