diff --git a/youtube_dl/extractor/xboxclips.py b/youtube_dl/extractor/xboxclips.py index d9c277bc3..177a2f9b6 100644 --- a/youtube_dl/extractor/xboxclips.py +++ b/youtube_dl/extractor/xboxclips.py @@ -32,7 +32,7 @@ class XboxClipsIE(InfoExtractor): video_url = self._html_search_regex( r'>(?:Link|Download): ]+href="([^"]+)"', webpage, 'video URL') title = self._html_search_regex( - r'XboxClips \| ([^<]+)', webpage, 'title') + r'XboxClips \- ([^<]+)', webpage, 'title') upload_date = unified_strdate(self._html_search_regex( r'>Recorded: ([^<]+)<', webpage, 'upload date', fatal=False)) filesize = parse_filesize(self._html_search_regex(