aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/extractor/tvnet.py
diff options
context:
space:
mode:
Diffstat (limited to 'hypervideo_dl/extractor/tvnet.py')
-rw-r--r--hypervideo_dl/extractor/tvnet.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/hypervideo_dl/extractor/tvnet.py b/hypervideo_dl/extractor/tvnet.py
index 4222ff9..aa1e9d9 100644
--- a/hypervideo_dl/extractor/tvnet.py
+++ b/hypervideo_dl/extractor/tvnet.py
@@ -111,9 +111,7 @@ class TVNetIE(InfoExtractor):
continue
stream_urls.add(stream_url)
formats.extend(self._extract_m3u8_formats(
- stream_url, video_id, 'mp4',
- entry_protocol='m3u8' if is_live else 'm3u8_native',
- m3u8_id='hls', fatal=False))
+ stream_url, video_id, 'mp4', live=is_live, m3u8_id='hls', fatal=False))
self._sort_formats(formats)
# better support for radio streams
@@ -130,9 +128,6 @@ class TVNetIE(InfoExtractor):
r'data-image=(["\'])(?P<url>(?:https?:)?//.+?)\1', webpage,
'thumbnail', default=None, group='url'))
- if is_live:
- title = self._live_title(title)
-
view_count = int_or_none(self._search_regex(
r'(?s)<div[^>]+\bclass=["\'].*?view-count[^>]+>.*?(\d+).*?</div>',
webpage, 'view count', default=None))