summary refs log tree commit diff
diff options
context:
space:
mode:
authorRicardo Garcia <sarbalap+freshmeat@gmail.com>2009-09-13 10:46:04 +0200
committerRicardo Garcia <sarbalap+freshmeat@gmail.com>2010-10-31 11:24:52 +0100
commit30edbf89e484172698f1c71613628de481beb97c (patch)
treef5f19134d0798f22a31d7c283047cd607007ae97
parenteae2666cb43b254b88cf8cc71b654fc6312643da (diff)
downloadyoutube-dl-30edbf89e484172698f1c71613628de481beb97c.tar.gz
youtube-dl-30edbf89e484172698f1c71613628de481beb97c.tar.xz
youtube-dl-30edbf89e484172698f1c71613628de481beb97c.zip
Report final URL with -g and do not print URLs normally (fixes issue #49)
-rwxr-xr-xyoutube-dl11
1 files changed, 4 insertions, 7 deletions
diff --git a/youtube-dl b/youtube-dl
index 472a8e1cc..b1f271793 100755
--- a/youtube-dl
+++ b/youtube-dl
@@ -221,11 +221,13 @@ class FileDownloader(object):
 
 	@staticmethod
 	def verify_url(url):
-		"""Verify a URL is valid and data could be downloaded."""
+		"""Verify a URL is valid and data could be downloaded. Return real data URL."""
 		request = urllib2.Request(url, None, std_headers)
 		data = urllib2.urlopen(request)
 		data.read(1)
+		url = data.geturl()
 		data.close()
+		return url
 
 	def add_info_extractor(self, ie):
 		"""Add an InfoExtractor object to the end of the list."""
@@ -307,7 +309,7 @@ class FileDownloader(object):
 		# Do nothing else if in simulate mode
 		if self.params.get('simulate', False):
 			try:
-				self.verify_url(info_dict['url'])
+				info_dict['url'] = self.verify_url(info_dict['url'])
 			except (OSError, IOError, urllib2.URLError, httplib.HTTPException, socket.error), err:
 				raise UnavailableFormatError
 
@@ -583,10 +585,6 @@ class YoutubeIE(InfoExtractor):
 		"""Report attempt to extract video information."""
 		self._downloader.to_stdout(u'[youtube] %s: Extracting video information' % video_id)
 	
-	def report_video_url(self, video_id, video_real_url):
-		"""Report extracted video URL."""
-		self._downloader.to_stdout(u'[youtube] %s: URL: %s' % (video_id, video_real_url))
-	
 	def report_unavailable_format(self, video_id, format):
 		"""Report extracted video URL."""
 		self._downloader.to_stdout(u'[youtube] %s: Format %s not available' % (video_id, format))
@@ -712,7 +710,6 @@ class YoutubeIE(InfoExtractor):
 			video_real_url = 'http://www.youtube.com/get_video?video_id=%s&t=%s&eurl=&el=detailpage&ps=default&gl=US&hl=en' % (video_id, token)
 			if format_param is not None:
 				video_real_url = '%s&fmt=%s' % (video_real_url, format_param)
-			self.report_video_url(video_id, video_real_url)
 
 			# uploader
 			mobj = re.search(r'(?m)&author=([^&]+)(?:&|$)', video_info_webpage)