diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-01-10 22:30:47 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-01-10 22:30:47 +0700 |
commit | 67fc365b86dccac4b52c5eb7a3f1e659ef945dc9 (patch) | |
tree | b86bdb0de858ebf7455f830d203172131f54ee46 /youtube_dl/extractor/comedycentral.py | |
parent | 20faad74b6416b137d4400853d7a871a256d731e (diff) |
[mtv,cc] Use hls by default (closes #11641)
Diffstat (limited to 'youtube_dl/extractor/comedycentral.py')
-rw-r--r-- | youtube_dl/extractor/comedycentral.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/comedycentral.py b/youtube_dl/extractor/comedycentral.py index 8bd589774..816e0bfb6 100644 --- a/youtube_dl/extractor/comedycentral.py +++ b/youtube_dl/extractor/comedycentral.py @@ -57,7 +57,7 @@ class ComedyCentralFullEpisodesIE(MTVServicesInfoExtractor): feed = self._download_json(video_zone['feed'], playlist_id) mgid = feed['result']['data']['id'] - videos_info = self._get_videos_info(mgid, use_hls=True) + videos_info = self._get_videos_info(mgid) return videos_info |