[tweakers] Use _extract_xspf_playlist
[youtube-dl] / youtube_dl / extractor / tweakers.py
1 from __future__ import unicode_literals
2
3 from .common import InfoExtractor
4 from ..utils import (
5     xpath_text,
6     xpath_with_ns,
7     int_or_none,
8     float_or_none,
9 )
10
11
12 class TweakersIE(InfoExtractor):
13     _VALID_URL = r'https?://tweakers\.net/video/(?P<id>\d+)'
14     _TEST = {
15         'url': 'https://tweakers.net/video/9926/new-nintendo-3ds-xl-op-alle-fronten-beter.html',
16         'md5': '1b5afa817403bb5baa08359dca31e6df',
17         'info_dict': {
18             'id': '9926',
19             'ext': 'mp4',
20             'title': 'New Nintendo 3DS XL - Op alle fronten beter',
21             'description': 'md5:f97324cc71e86e11c853f0763820e3ba',
22             'thumbnail': 're:^https?://.*\.jpe?g$',
23             'duration': 386,
24         }
25     }
26
27     def _real_extract(self, url):
28         playlist_id = self._match_id(url)
29         entries = self._extract_xspf_playlist(
30             'https://tweakers.net/video/s1playlist/%s/playlist.xspf' % playlist_id, playlist_id)
31         return self.playlist_result(entries, playlist_id)