mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-01-07 17:16:08 +00:00
[togglesg] Fixes
This commit is contained in:
parent
ee0f0393cf
commit
ed370ff0e6
|
@ -18,7 +18,7 @@ from ..compat import compat_urllib_request
|
|||
|
||||
class ToggleSgIE(InfoExtractor):
|
||||
IE_NAME = 'togglesg'
|
||||
_VALID_URL = r'https?://video\.toggle\.sg/(?:(en|zh))/(?:(series|clips|movies))/.+?/(?P<id>[0-9]+)'
|
||||
_VALID_URL = r'https?://video\.toggle\.sg/(?:en|zh)/(?:series|clips|movies)/.+?/(?P<id>[0-9]+)'
|
||||
_TESTS = [{
|
||||
'url': 'http://video.toggle.sg/en/series/lion-moms-tif/trailers/lion-moms-premier/343115',
|
||||
'info_dict': {
|
||||
|
@ -90,9 +90,9 @@ class ToggleSgIE(InfoExtractor):
|
|||
webpage = self._download_webpage(url, video_id, note='Downloading video page')
|
||||
|
||||
api_user = self._search_regex(
|
||||
r'apiUser:\s*"([^"]+)"', webpage, 'apiUser', default=self._API_USER, fatal=False)
|
||||
r'apiUser:\s*"([^"]+)"', webpage, 'apiUser', default=self._API_USER)
|
||||
api_pass = self._search_regex(
|
||||
r'apiPass:\s*"([^"]+)"', webpage, 'apiPass', default=self._API_PASS, fatal=False)
|
||||
r'apiPass:\s*"([^"]+)"', webpage, 'apiPass', default=self._API_PASS)
|
||||
|
||||
params = {
|
||||
'initObj': {
|
||||
|
|
Loading…
Reference in a new issue