aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/extractor/fivetv.py
diff options
context:
space:
mode:
Diffstat (limited to 'hypervideo_dl/extractor/fivetv.py')
-rw-r--r--hypervideo_dl/extractor/fivetv.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/hypervideo_dl/extractor/fivetv.py b/hypervideo_dl/extractor/fivetv.py
index be81fcc..d6bebd1 100644
--- a/hypervideo_dl/extractor/fivetv.py
+++ b/hypervideo_dl/extractor/fivetv.py
@@ -75,8 +75,7 @@ class FiveTVIE(InfoExtractor):
r'<a[^>]+?href="([^"]+)"[^>]+?class="videoplayer"'],
webpage, 'video url')
- title = self._og_search_title(webpage, default=None) or self._search_regex(
- r'<title>([^<]+)</title>', webpage, 'title')
+ title = self._og_search_title(webpage, default=None) or self._html_extract_title(webpage)
duration = int_or_none(self._og_search_property(
'video:duration', webpage, 'duration', default=None))