Improve some id regexes

This commit is contained in:
stepshal 2016-09-14 23:03:26 +07:00 committed by Sergey M․
parent 1dec2c8a0e
commit 490b755769
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D
3 changed files with 3 additions and 3 deletions

View file

@ -429,7 +429,7 @@ class SchoolTVIE(InfoExtractor):
display_id = self._match_id(url)
webpage = self._download_webpage(url, display_id)
video_id = self._search_regex(
r'data-mid=(["\'])(?P<id>.+?)\1', webpage, 'video_id', group='id')
r'data-mid=(["\'])(?P<id>(?:(?!\1).)+)\1', webpage, 'video_id', group='id')
return {
'_type': 'url_transparent',
'ie_key': 'NPO',