diff options
author | pukkandan <pukkandan@gmail.com> | 2021-01-10 19:14:54 +0530 |
---|---|---|
committer | pukkandan <pukkandan@gmail.com> | 2021-01-10 22:22:24 +0530 |
commit | f446cc66675629d3e043800d9ce74d3327f9fdfa (patch) | |
tree | 80c00c707c1404d088c1d5ded88248f69567243c /youtube_dlc/postprocessor/embedthumbnail.py | |
parent | ebdd9275c3e65b558125381a00fd77b0a8c2ce73 (diff) |
Create `to_screen` and similar functions in postprocessor/common
`to_screen`, `report_warning`, `report_error`, `write_debug`, `get_param`
This is a first step in standardizing these function. This has to be done eventually for extractors and downloaders too
Diffstat (limited to 'youtube_dlc/postprocessor/embedthumbnail.py')
-rw-r--r-- | youtube_dlc/postprocessor/embedthumbnail.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/youtube_dlc/postprocessor/embedthumbnail.py b/youtube_dlc/postprocessor/embedthumbnail.py index 3055a8c28..8e78ede00 100644 --- a/youtube_dlc/postprocessor/embedthumbnail.py +++ b/youtube_dlc/postprocessor/embedthumbnail.py @@ -41,8 +41,7 @@ class EmbedThumbnailPP(FFmpegPostProcessor): thumbnail_filename = info['thumbnails'][-1]['filename'] if not os.path.exists(encodeFilename(thumbnail_filename)): - self._downloader.report_warning( - 'Skipping embedding the thumbnail because the file is missing.') + self.report_warning('Skipping embedding the thumbnail because the file is missing.') return [], info def is_webp(path): @@ -125,8 +124,7 @@ class EmbedThumbnailPP(FFmpegPostProcessor): self.to_screen('Adding thumbnail to "%s"' % filename) - if self._downloader.params.get('verbose', False): - self._downloader.to_screen('[debug] AtomicParsley command line: %s' % shell_quote(cmd)) + self.verbose_message('AtomicParsley command line: %s' % shell_quote(cmd)) p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) stdout, stderr = process_communicate_or_kill(p) @@ -140,7 +138,7 @@ class EmbedThumbnailPP(FFmpegPostProcessor): # for formats that don't support thumbnails (like 3gp) AtomicParsley # won't create to the temporary file if b'No changes' in stdout: - self._downloader.report_warning('The file format doesn\'t support embedding a thumbnail') + self.report_warning('The file format doesn\'t support embedding a thumbnail') else: os.remove(encodeFilename(filename)) os.rename(encodeFilename(temp_filename), encodeFilename(filename)) |