Browse Source

Merge remote-tracking branch 'chrisjrn/master'

Philipp Hagemeister 12 years ago
parent
commit
fa59f4b6a9
1 changed files with 11 additions and 2 deletions
  1. 11 2
      youtube_dl/InfoExtractors.py

+ 11 - 2
youtube_dl/InfoExtractors.py

@@ -2331,10 +2331,19 @@ class ComedyCentralIE(InfoExtractor):
 			epTitle = mobj.group('episode')
 			epTitle = mobj.group('episode')
 
 
 		mMovieParams = re.findall('(?:<param name="movie" value="|var url = ")(http://media.mtvnservices.com/([^"]*episode.*?:.*?))"', html)
 		mMovieParams = re.findall('(?:<param name="movie" value="|var url = ")(http://media.mtvnservices.com/([^"]*episode.*?:.*?))"', html)
+
 		if len(mMovieParams) == 0:
 		if len(mMovieParams) == 0:
-			self._downloader.trouble(u'ERROR: unable to find Flash URL in webpage ' + url)
-			return
+			# The Colbert Report embeds the information in a without
+			# a URL prefix; so extract the alternate reference
+			# and then add the URL prefix manually.
 
 
+			altMovieParams = re.findall('data-mgid="([^"]*episode.*?:.*?)"', html)
+			if len(altMovieParams) == 0:
+				self._downloader.trouble(u'ERROR: unable to find Flash URL in webpage ' + url)
+				return
+			else:
+				mMovieParams = [("http://media.mtvnservices.com/" + altMovieParams[0], altMovieParams[0])]
+		
 		playerUrl_raw = mMovieParams[0][0]
 		playerUrl_raw = mMovieParams[0][0]
 		self.report_player_url(epTitle)
 		self.report_player_url(epTitle)
 		try:
 		try: