mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[youku] Use _match_id
This commit is contained in:
parent
c203be3fb4
commit
9383e66f94
@ -1,7 +1,6 @@
|
||||
# coding: utf-8
|
||||
from __future__ import unicode_literals
|
||||
|
||||
import re
|
||||
import base64
|
||||
|
||||
from .common import InfoExtractor
|
||||
@ -154,8 +153,7 @@ def get_format_name(self, fm):
|
||||
return _dict[fm]
|
||||
|
||||
def _real_extract(self, url):
|
||||
mobj = re.match(self._VALID_URL, url)
|
||||
video_id = mobj.group('id')
|
||||
video_id = self._match_id(url)
|
||||
|
||||
# request basic data
|
||||
data1_url = 'http://v.youku.com/player/getPlayList/VideoIDS/%s' % video_id
|
||||
|
Loading…
Reference in New Issue
Block a user