aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/extractor/dlive.py
diff options
context:
space:
mode:
Diffstat (limited to 'hypervideo_dl/extractor/dlive.py')
-rw-r--r--hypervideo_dl/extractor/dlive.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/hypervideo_dl/extractor/dlive.py b/hypervideo_dl/extractor/dlive.py
index 7410eb6..30fcf9f 100644
--- a/hypervideo_dl/extractor/dlive.py
+++ b/hypervideo_dl/extractor/dlive.py
@@ -1,5 +1,3 @@
-from __future__ import unicode_literals
-
import json
from .common import InfoExtractor
@@ -42,7 +40,6 @@ class DLiveVODIE(InfoExtractor):
title = broadcast['title']
formats = self._extract_m3u8_formats(
broadcast['playbackUrl'], vod_id, 'mp4', 'm3u8_native')
- self._sort_formats(formats)
return {
'id': vod_id,
'title': title,
@@ -81,7 +78,6 @@ class DLiveStreamIE(InfoExtractor):
formats = self._extract_m3u8_formats(
'https://live.prd.dlive.tv/hls/live/%s.m3u8' % username,
display_name, 'mp4')
- self._sort_formats(formats)
return {
'id': display_name,
'title': title,