about summary refs log tree commit diff
path: root/youtube_dl/extractor/comedycentral.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2017-01-05 22:35:12 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2017-01-05 22:36:07 +0100
commitdbaf6016467be635afd1660da3d90fb644a6058c (patch)
tree4a93a379a3ae3d28968896f861cd20429e1b5650 /youtube_dl/extractor/comedycentral.py
parenta9ee26021759f4f1a17d3c9482d85e68a45b2360 (diff)
downloadyoutube-dl-dbaf6016467be635afd1660da3d90fb644a6058c.tar.gz
youtube-dl-dbaf6016467be635afd1660da3d90fb644a6058c.tar.xz
youtube-dl-dbaf6016467be635afd1660da3d90fb644a6058c.zip
[comedycentral/mtv] Add support for HLS videos (fixes #11600)
Currently, the HTTP files of the RTMP urls are not present for the The Daily Show.
Use HLS instead for now.
Diffstat (limited to 'youtube_dl/extractor/comedycentral.py')
-rw-r--r--youtube_dl/extractor/comedycentral.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/comedycentral.py b/youtube_dl/extractor/comedycentral.py
index 512f072f6..8bd589774 100644
--- a/youtube_dl/extractor/comedycentral.py
+++ b/youtube_dl/extractor/comedycentral.py
@@ -57,7 +57,8 @@ class ComedyCentralFullEpisodesIE(MTVServicesInfoExtractor):
         feed = self._download_json(video_zone['feed'], playlist_id)
         mgid = feed['result']['data']['id']
 
-        videos_info = self._get_videos_info(mgid)
+        videos_info = self._get_videos_info(mgid, use_hls=True)
+
         return videos_info