|
|
@ -12,7 +12,7 @@ from ..utils import (
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class WatIE(InfoExtractor):
|
|
|
|
class WatIE(InfoExtractor):
|
|
|
|
_VALID_URL = r'http://www\.wat\.tv/video/(?P<display_id>.*)-(?P<short_id>.*?)_.*?\.html'
|
|
|
|
_VALID_URL = r'(?:wat:(?P<real_id>\d{8})|http://www\.wat\.tv/video/(?P<display_id>.*)-(?P<short_id>.*?)_.*?\.html)'
|
|
|
|
IE_NAME = 'wat.tv'
|
|
|
|
IE_NAME = 'wat.tv'
|
|
|
|
_TESTS = [
|
|
|
|
_TESTS = [
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -54,8 +54,10 @@ class WatIE(InfoExtractor):
|
|
|
|
def real_id_for_chapter(chapter):
|
|
|
|
def real_id_for_chapter(chapter):
|
|
|
|
return chapter['tc_start'].split('-')[0]
|
|
|
|
return chapter['tc_start'].split('-')[0]
|
|
|
|
mobj = re.match(self._VALID_URL, url)
|
|
|
|
mobj = re.match(self._VALID_URL, url)
|
|
|
|
short_id = mobj.group('short_id')
|
|
|
|
|
|
|
|
display_id = mobj.group('display_id')
|
|
|
|
display_id = mobj.group('display_id')
|
|
|
|
|
|
|
|
real_id = mobj.group('real_id')
|
|
|
|
|
|
|
|
if not real_id:
|
|
|
|
|
|
|
|
short_id = mobj.group('short_id')
|
|
|
|
webpage = self._download_webpage(url, display_id or short_id)
|
|
|
|
webpage = self._download_webpage(url, display_id or short_id)
|
|
|
|
real_id = self._search_regex(r'xtpage = ".*-(.*?)";', webpage, 'real id')
|
|
|
|
real_id = self._search_regex(r'xtpage = ".*-(.*?)";', webpage, 'real id')
|
|
|
|
|
|
|
|
|
|
|
|