diff options
Diffstat (limited to 'yt_dlp/extractor/playvid.py')
-rw-r--r-- | yt_dlp/extractor/playvid.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/yt_dlp/extractor/playvid.py b/yt_dlp/extractor/playvid.py index 4aef186ea..e1c406b6c 100644 --- a/yt_dlp/extractor/playvid.py +++ b/yt_dlp/extractor/playvid.py @@ -85,8 +85,7 @@ class PlayvidIE(InfoExtractor): # Extract title - should be in the flashvars; if not, look elsewhere if video_title is None: - video_title = self._html_search_regex( - r'<title>(.*?)</title', webpage, 'title') + video_title = self._html_extract_title(webpage) return { 'id': video_id, |