mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-30 22:25:19 +00:00 
			
		
		
		
	[downloader/external] Add missing import and PEP8
This commit is contained in:
		| @@ -6,7 +6,10 @@ import sys | |||||||
| import re | import re | ||||||
|  |  | ||||||
| from .common import FileDownloader | from .common import FileDownloader | ||||||
| from ..compat import compat_setenv | from ..compat import ( | ||||||
|  |     compat_setenv, | ||||||
|  |     compat_str, | ||||||
|  | ) | ||||||
| from ..postprocessor.ffmpeg import FFmpegPostProcessor, EXT_TO_OUT_FORMATS | from ..postprocessor.ffmpeg import FFmpegPostProcessor, EXT_TO_OUT_FORMATS | ||||||
| from ..utils import ( | from ..utils import ( | ||||||
|     cli_option, |     cli_option, | ||||||
| @@ -272,7 +275,7 @@ class FFmpegFD(ExternalFD): | |||||||
|         args += ['-i', url, '-c', 'copy'] |         args += ['-i', url, '-c', 'copy'] | ||||||
|  |  | ||||||
|         if self.params.get('test', False): |         if self.params.get('test', False): | ||||||
|             args += ['-fs', compat_str(self._TEST_FILE_SIZE)] # -fs limit_size (output), expressed in bytes |             args += ['-fs', compat_str(self._TEST_FILE_SIZE)] | ||||||
|  |  | ||||||
|         if protocol in ('m3u8', 'm3u8_native'): |         if protocol in ('m3u8', 'm3u8_native'): | ||||||
|             if self.params.get('hls_use_mpegts', False) or tmpfilename == '-': |             if self.params.get('hls_use_mpegts', False) or tmpfilename == '-': | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Sergey M․
					Sergey M․