1
1
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-01-12 12:26:36 -05:00

[bilibili] Restrict cid regex (closes , closes )

This commit is contained in:
Sergey M․ 2018-06-14 22:40:30 +07:00
parent c797db4a2f
commit 61cb66830f
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D

View File

@ -114,7 +114,7 @@ class BiliBiliIE(InfoExtractor):
if 'anime/' not in url:
cid = self._search_regex(
r'cid(?:["\']:|=)(\d+)', webpage, 'cid',
r'\bcid(?:["\']:|=)(\d+)', webpage, 'cid',
default=None
) or compat_parse_qs(self._search_regex(
[r'EmbedPlayer\([^)]+,\s*"([^"]+)"\)',