mirror of
https://github.com/l1ving/youtube-dl
synced 2025-02-09 14:12:51 +08:00
[sevenplus] make season regex more flexibel and non-fatal
This commit is contained in:
parent
4db05564b4
commit
815f538c6c
@ -3,7 +3,6 @@ from __future__ import unicode_literals
|
|||||||
|
|
||||||
import re
|
import re
|
||||||
|
|
||||||
from .common import InfoExtractor
|
|
||||||
from .brightcove import BrightcoveNewIE
|
from .brightcove import BrightcoveNewIE
|
||||||
from ..utils import update_url_query
|
from ..utils import update_url_query
|
||||||
|
|
||||||
@ -82,6 +81,6 @@ class SevenPlusIE(BrightcoveNewIE):
|
|||||||
info[dst_key] = value
|
info[dst_key] = value
|
||||||
|
|
||||||
webpage = self._download_webpage(url, episode_id)
|
webpage = self._download_webpage(url, episode_id)
|
||||||
info['series'] = self._search_regex(r'<title>([^>|]+) | 7plus</title>', webpage, 'title')
|
info['series'] = self._search_regex(r'<title>(.+?) +\| +7 ?[pP]lus ?</title>', webpage, 'title', fatal=False)
|
||||||
|
|
||||||
return info
|
return info
|
||||||
|
Loading…
Reference in New Issue
Block a user