[played] Simplify (#3798)

This commit is contained in:
Philipp Hagemeister 2014-09-28 10:55:12 +02:00
parent f0b8e3607d
commit 38c4d41b74
1 changed files with 6 additions and 7 deletions

View File

@ -14,7 +14,7 @@ from ..utils import (
class PlayedIE(InfoExtractor): class PlayedIE(InfoExtractor):
IE_NAME = 'played.to' IE_NAME = 'played.to'
_VALID_URL = r'https?://played\.to/(?P<id>[a-zA-Z0-9_-]+)' _VALID_URL = r'https?://(?:www\.)?played\.to/(?P<id>[a-zA-Z0-9_-]+)'
_TEST = { _TEST = {
'url': 'http://played.to/j2f2sfiiukgt', 'url': 'http://played.to/j2f2sfiiukgt',
@ -27,15 +27,14 @@ class PlayedIE(InfoExtractor):
} }
def _real_extract(self, url): def _real_extract(self, url):
mobj = re.match(self._VALID_URL, url) video_id = self._match_id(url)
video_id = mobj.group('id')
orig_webpage = self._download_webpage(url, video_id) orig_webpage = self._download_webpage(url, video_id)
fields = re.findall(r'type="hidden" name="(.+?)"\s* value="?(.+?)">', orig_webpage) fields = re.findall(
r'type="hidden" name="([^"]+)"\s+value="([^"]+)">', orig_webpage)
data = dict(fields) data = dict(fields)
self.to_screen('%s: Waiting for timeout' % video_id) self._sleep(2, video_id)
time.sleep(2)
post = compat_urllib_parse.urlencode(data) post = compat_urllib_parse.urlencode(data)
headers = { headers = {
@ -54,4 +53,4 @@ class PlayedIE(InfoExtractor):
'id': video_id, 'id': video_id,
'title': title, 'title': title,
'url': video_url, 'url': video_url,
} }