From: Jaime Marquínez Ferrándiz Date: Fri, 30 May 2014 18:59:15 +0000 (+0200) Subject: [comedycentralshows] Transform the rtmp urls so that rtmpdump can download them ... X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=6db80ad2db7fbe08515f3ce3a88abf91e52bd85e;p=youtube-dl [comedycentralshows] Transform the rtmp urls so that rtmpdump can download them (fixes #3010) From 'rtmpe://viacomccstrmfs.fplive.net/viacomccstrm/gsp.comedystor/*' to 'rtmpe://viacommtvstrmfs.fplive.net:1935/viacommtvstrm/gsp.comedystor/*' --- diff --git a/youtube_dl/extractor/comedycentral.py b/youtube_dl/extractor/comedycentral.py index 6e3a316c6..ba4d73ab8 100644 --- a/youtube_dl/extractor/comedycentral.py +++ b/youtube_dl/extractor/comedycentral.py @@ -188,7 +188,7 @@ class ComedyCentralShowsIE(InfoExtractor): }) formats.append({ 'format_id': 'rtmp-%s' % format, - 'url': rtmp_video_url, + 'url': rtmp_video_url.replace('viacomccstrm', 'viacommtvstrm'), 'ext': self._video_extensions.get(format, 'mp4'), 'height': h, 'width': w,