1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-09-06 10:59:36 +02:00

[twitter:card] Use _html_search_regex

This commit is contained in:
Yen Chi Hsuan 2015-10-18 18:08:24 +08:00
parent 575036b405
commit 77a54b6a65

View File

@ -7,7 +7,6 @@
from ..compat import compat_urllib_request
from ..utils import (
float_or_none,
unescapeHTML,
xpath_text,
remove_end,
)
@ -57,9 +56,8 @@ def _real_extract(self, url):
request.add_header('User-Agent', user_agent)
webpage = self._download_webpage(request, video_id)
config = self._parse_json(
unescapeHTML(self._search_regex(
r'data-player-config="([^"]+)"', webpage, 'data player config')),
config = self._parse_json(self._html_search_regex(
r'data-player-config="([^"]+)"', webpage, 'data player config'),
video_id)
if 'playlist' not in config:
if 'vmapUrl' in config: