diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2017-01-05 22:35:12 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2017-01-05 22:36:07 +0100 |
commit | dbaf6016467be635afd1660da3d90fb644a6058c (patch) | |
tree | 4a93a379a3ae3d28968896f861cd20429e1b5650 /youtube_dl/extractor/comedycentral.py | |
parent | a9ee26021759f4f1a17d3c9482d85e68a45b2360 (diff) |
[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.py | 3 |
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 |