mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-30 22:25:19 +00:00 
			
		
		
		
	Remove test parameter from _download_with_rtmpdump
This commit is contained in:
		| @@ -267,7 +267,7 @@ class FileDownloader(object): | |||||||
|             self.to_screen(u'\r%s[download] 100%% of %s in %s' % |             self.to_screen(u'\r%s[download] 100%% of %s in %s' % | ||||||
|                 (clear_line, data_len_str, self.format_seconds(tot_time))) |                 (clear_line, data_len_str, self.format_seconds(tot_time))) | ||||||
|  |  | ||||||
|     def _download_with_rtmpdump(self, filename, url, player_url, page_url, play_path, tc_url, test): |     def _download_with_rtmpdump(self, filename, url, player_url, page_url, play_path, tc_url): | ||||||
|         self.report_destination(filename) |         self.report_destination(filename) | ||||||
|         tmpfilename = self.temp_name(filename) |         tmpfilename = self.temp_name(filename) | ||||||
|  |  | ||||||
| @@ -291,7 +291,7 @@ class FileDownloader(object): | |||||||
|             basic_args += ['--playpath', play_path] |             basic_args += ['--playpath', play_path] | ||||||
|         if tc_url is not None: |         if tc_url is not None: | ||||||
|             basic_args += ['--tcUrl', url] |             basic_args += ['--tcUrl', url] | ||||||
|         if test: |         if self.params.get('test', False): | ||||||
|             basic_args += ['--stop', '1'] |             basic_args += ['--stop', '1'] | ||||||
|         args = basic_args + [[], ['--resume', '--skip', '1']][self.params.get('continuedl', False)] |         args = basic_args + [[], ['--resume', '--skip', '1']][self.params.get('continuedl', False)] | ||||||
|         if self.params.get('verbose', False): |         if self.params.get('verbose', False): | ||||||
| @@ -410,8 +410,7 @@ class FileDownloader(object): | |||||||
|                                                 info_dict.get('player_url', None), |                                                 info_dict.get('player_url', None), | ||||||
|                                                 info_dict.get('page_url', None), |                                                 info_dict.get('page_url', None), | ||||||
|                                                 info_dict.get('play_path', None), |                                                 info_dict.get('play_path', None), | ||||||
|                                                 info_dict.get('tc_url', None), |                                                 info_dict.get('tc_url', None)) | ||||||
|                                                 self.params.get('test', False)) |  | ||||||
|  |  | ||||||
|         # Attempt to download using mplayer |         # Attempt to download using mplayer | ||||||
|         if url.startswith('mms') or url.startswith('rtsp'): |         if url.startswith('mms') or url.startswith('rtsp'): | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 rzhxeo
					rzhxeo