about summary refs log tree commit diff
diff options
context:
space:
mode:
authorChristopher Neugebauer <chrisjrn@gmail.com>2012-11-27 21:49:27 +1100
committerChristopher Neugebauer <chrisjrn@gmail.com>2012-11-27 21:49:27 +1100
commit36a9c0b5ffa857baeb8a97651ec223bd4b0d1a6d (patch)
tree44ad59d505e66321c6d7769f6c47d8694812c876
parentd479e34043e95c5590d3bfa0d9dda0dc34da76c5 (diff)
downloadyoutube-dl-36a9c0b5ffa857baeb8a97651ec223bd4b0d1a6d.tar.gz
youtube-dl-36a9c0b5ffa857baeb8a97651ec223bd4b0d1a6d.tar.xz
youtube-dl-36a9c0b5ffa857baeb8a97651ec223bd4b0d1a6d.zip
Points the ComedyCentral extractor at a CDN which works with more RTMPDump versions.
-rw-r--r--youtube_dl/InfoExtractors.py14
1 files changed, 13 insertions, 1 deletions
diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py
index 35ba6cc5c..fbdc14e7e 100644
--- a/youtube_dl/InfoExtractors.py
+++ b/youtube_dl/InfoExtractors.py
@@ -2361,6 +2361,18 @@ class ComedyCentralIE(InfoExtractor):
 			# For now, just pick the highest bitrate
 			format,video_url = turls[-1]
 
+			# Patch to download from alternative CDN, which does not 
+                        # break on current RTMPDump builds
+            
+
+			print "HELLO, WORLD!", video_url
+			broken_cdn = "rtmpe://viacomccstrmfs.fplive.net/viacomccstrm/gsp.comedystor/"
+			better_cdn = "rtmpe://cp10740.edgefcs.net/ondemand/mtvnorigin/gsp.comedystor/"
+            
+			if video_url.startswith(broken_cdn):
+                            video_url = video_url.replace(broken_cdn, better_cdn)
+                    
+
 			effTitle = showId + u'-' + epTitle
 			info = {
 				'id': shortMediaId,
@@ -2372,7 +2384,7 @@ class ComedyCentralIE(InfoExtractor):
 				'format': format,
 				'thumbnail': None,
 				'description': officialTitle,
-				'player_url': playerUrl
+				'player_url': None #playerUrl
 			}
 
 			results.append(info)