mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-15 18:34:22 +00:00
[xtube] Fix uploader regex
This commit is contained in:
parent
d34f98289b
commit
324b2c78fa
@ -40,7 +40,7 @@ class XTubeIE(InfoExtractor):
|
|||||||
r'<p class="title">([^<]+)', webpage, 'title')
|
r'<p class="title">([^<]+)', webpage, 'title')
|
||||||
video_uploader = self._html_search_regex(
|
video_uploader = self._html_search_regex(
|
||||||
[r"var\s+contentOwnerId\s*=\s*'([^']+)",
|
[r"var\s+contentOwnerId\s*=\s*'([^']+)",
|
||||||
r'By:\s*<a href="/community/profile\.php?user=([^"]+)'],
|
r'By:\s*<a href="/community/profile\.php\?user=([^"]+)'],
|
||||||
webpage, 'uploader', fatal=False)
|
webpage, 'uploader', fatal=False)
|
||||||
video_description = self._html_search_regex(
|
video_description = self._html_search_regex(
|
||||||
r'<p class="fieldsDesc">([^<]+)',
|
r'<p class="fieldsDesc">([^<]+)',
|
||||||
|
Loading…
Reference in New Issue
Block a user