1
0
mirror of https://github.com/l1ving/youtube-dl synced 2020-11-18 19:53:54 -08:00

[xboxclips] Fix a little change on title

This commit is contained in:
etmatrix 2019-11-10 16:32:41 +01:00
parent 9e46d1f8aa
commit 5ab3d68e73

View File

@ -32,7 +32,7 @@ class XboxClipsIE(InfoExtractor):
video_url = self._html_search_regex( video_url = self._html_search_regex(
r'>(?:Link|Download): <a[^>]+href="([^"]+)"', webpage, 'video URL') r'>(?:Link|Download): <a[^>]+href="([^"]+)"', webpage, 'video URL')
title = self._html_search_regex( title = self._html_search_regex(
r'<title>XboxClips \| ([^<]+)</title>', webpage, 'title') r'<title>XboxClips \- ([^<]+)</title>', webpage, 'title')
upload_date = unified_strdate(self._html_search_regex( upload_date = unified_strdate(self._html_search_regex(
r'>Recorded: ([^<]+)<', webpage, 'upload date', fatal=False)) r'>Recorded: ([^<]+)<', webpage, 'upload date', fatal=False))
filesize = parse_filesize(self._html_search_regex( filesize = parse_filesize(self._html_search_regex(