mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[sztvhu] Fix the title extraction
This commit is contained in:
parent
e772692ffd
commit
9d74e308f7
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ def _real_extract(self, url):
|
|||
video_file = self._search_regex(
|
||||
r'file: "...:(.*?)",', webpage, 'video file')
|
||||
title = self._html_search_regex(
|
||||
r'<meta name="title" content="([^"]*) - [^-]*"',
|
||||
r'<meta name="title" content="([^"]*?) - [^-]*? - [^-]*?"',
|
||||
webpage, 'video title')
|
||||
description = self._html_search_regex(
|
||||
r'<meta name="description" content="([^"]*)"/>',
|
||||
|
|
Loading…
Reference in a new issue