소스 검색

Points the ComedyCentral extractor at a CDN which works with more RTMPDump versions.

Christopher Neugebauer 12 년 전
부모
커밋
36a9c0b5ff
1개의 변경된 파일13개의 추가작업 그리고 1개의 파일을 삭제
  1. 13 1
      youtube_dl/InfoExtractors.py

+ 13 - 1
youtube_dl/InfoExtractors.py

@@ -2361,6 +2361,18 @@ class ComedyCentralIE(InfoExtractor):
 			# For now, just pick the highest bitrate
 			# For now, just pick the highest bitrate
 			format,video_url = turls[-1]
 			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
 			effTitle = showId + u'-' + epTitle
 			info = {
 			info = {
 				'id': shortMediaId,
 				'id': shortMediaId,
@@ -2372,7 +2384,7 @@ class ComedyCentralIE(InfoExtractor):
 				'format': format,
 				'format': format,
 				'thumbnail': None,
 				'thumbnail': None,
 				'description': officialTitle,
 				'description': officialTitle,
-				'player_url': playerUrl
+				'player_url': None #playerUrl
 			}
 			}
 
 
 			results.append(info)
 			results.append(info)