]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/tweakers.py
1 from __future__
import unicode_literals
3 from .common
import InfoExtractor
6 class TweakersIE(InfoExtractor
):
7 _VALID_URL
= r
'https?://tweakers\.net/video/(?P<id>\d+)'
9 'url': 'https://tweakers.net/video/9926/new-nintendo-3ds-xl-op-alle-fronten-beter.html',
10 'md5': '3147e4ddad366f97476a93863e4557c8',
14 'title': 'New Nintendo 3DS XL - Op alle fronten beter',
15 'description': 'md5:f97324cc71e86e11c853f0763820e3ba',
16 'thumbnail': 're:^https?://.*\.jpe?g$',
21 def _real_extract(self
, url
):
22 playlist_id
= self
._match
_id
(url
)
23 entries
= self
._extract
_xspf
_playlist
(
24 'https://tweakers.net/video/s1playlist/%s/playlist.xspf' % playlist_id
, playlist_id
)
25 return self
.playlist_result(entries
, playlist_id
)