1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-10-04 17:04:22 -04:00

fix typos :ci skip dl

This commit is contained in:
pukkandan
2021-01-30 16:43:54 +05:30
parent cac96421d9
commit e3b771a898
8 changed files with 17 additions and 15 deletions

View File

@@ -61,7 +61,7 @@ class FFmpegPostProcessor(PostProcessor):
def check_version(self):
if not self.available:
raise FFmpegPostProcessorError('ffmpeg not found. Please install one.')
raise FFmpegPostProcessorError('ffmpeg not found. Please install')
required_version = '10-0' if self.basename == 'avconv' else '1.0'
if is_outdated_version(
@@ -165,7 +165,7 @@ class FFmpegPostProcessor(PostProcessor):
def get_audio_codec(self, path):
if not self.probe_available and not self.available:
raise PostProcessingError('ffprobe and ffmpeg not found. Please install one.')
raise PostProcessingError('ffprobe and ffmpeg not found. Please install')
try:
if self.probe_available:
cmd = [