about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2011-09-07 22:06:09 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2011-09-07 22:06:09 +0200
commitfedf9f390210d0a06f323f0476681b607ee57b0f (patch)
treead4b3e935748533c61bf9b95678923c8db343b4b
parent0f862ea18cdfdc4489c0b1915d52bd2296c1ebc3 (diff)
downloadyoutube-dl-fedf9f390210d0a06f323f0476681b607ee57b0f.tar.gz
youtube-dl-fedf9f390210d0a06f323f0476681b607ee57b0f.tar.xz
youtube-dl-fedf9f390210d0a06f323f0476681b607ee57b0f.zip
Basic comedycentral (The Daily Show) support (Will work as soon as rtmpdump gets fixed)
-rwxr-xr-xyoutube-dl16
1 files changed, 14 insertions, 2 deletions
diff --git a/youtube-dl b/youtube-dl
index 71e7aa8d8..a1245a8b4 100755
--- a/youtube-dl
+++ b/youtube-dl
@@ -3051,6 +3051,9 @@ class ComedyCentralIE(InfoExtractor):
 	def report_config_download(self, episode_id):
 		self._downloader.to_screen(u'[comedycentral] %s: Downloading configuration' % episode_id)
 
+	def report_player_url(self, episode_id):
+		self._downloader.to_screen(u'[comedycentral] %s: Determining player URL' % episode_id)
+
 	def _simplify_title(self, title):
 		res = re.sub(ur'(?u)([^%s]+)' % simple_title_chars, ur'_', title)
 		res = res.strip(ur'_')
@@ -3076,10 +3079,19 @@ class ComedyCentralIE(InfoExtractor):
 			self._downloader.trouble(u'ERROR: unable to find Flash URL in webpage ' + url)
 			return
 		ACT_COUNT = 4
-		player_url = mMovieParams[0][0]
+		first_player_url = mMovieParams[0][0]
 		mediaNum = int(mMovieParams[0][2]) - ACT_COUNT
 		movieId = mMovieParams[0][1]
 
+		playerReq = urllib2.Request(first_player_url)
+		self.report_player_url(epTitle)
+		try:
+			playerResponse = urllib2.urlopen(playerReq)
+		except (urllib2.URLError, httplib.HTTPException, socket.error), err:
+			self._downloader.trouble(u'ERROR: unable to download player: %s' % unicode(err))
+			return
+		player_url = playerResponse.geturl()
+
 		for actNum in range(ACT_COUNT):
 			mediaId = movieId + str(mediaNum + actNum)
 			configUrl = ('http://www.comedycentral.com/global/feeds/entertainment/media/mediaGenEntertainment.jhtml?' +
@@ -3102,7 +3114,7 @@ class ComedyCentralIE(InfoExtractor):
 			format,video_url = turls[-1]
 
 			self._downloader.increment_downloads()
-			actTitle = epTitle + '-act' + str(actNum+1)
+			actTitle = 'act' + str(actNum+1)
 			info = {
 				'id': epTitle,
 				'url': video_url,