mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-22 18:22:21 +00:00
[teamcoco] Update video id regex
This commit is contained in:
parent
696d49815e
commit
f83dda12ad
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ class TeamcocoIE(InfoExtractor):
|
||||||
video_id = mobj.group("video_id")
|
video_id = mobj.group("video_id")
|
||||||
if not video_id:
|
if not video_id:
|
||||||
video_id = self._html_search_regex(
|
video_id = self._html_search_regex(
|
||||||
r'<article class="video" data-id="(\d+?)"',
|
r'data-node-id="(\d+?)"',
|
||||||
webpage, 'video id')
|
webpage, 'video id')
|
||||||
|
|
||||||
data_url = 'http://teamcoco.com/cvp/2.0/%s.xml' % video_id
|
data_url = 'http://teamcoco.com/cvp/2.0/%s.xml' % video_id
|
||||||
|
|
Loading…
Reference in a new issue