diff options
author | pukkandan <pukkandan@gmail.com> | 2021-01-14 13:59:38 +0530 |
---|---|---|
committer | pukkandan <pukkandan@gmail.com> | 2021-01-14 14:03:05 +0530 |
commit | 806b05cf7ae67cb635a4c741da0cdb85d1f9c23e (patch) | |
tree | 28112a6ffd8fd41b3de77495916370f52ccfd803 | |
parent | d83cb5312c19711ce77b66ad942269947a0fd94c (diff) | |
download | hypervideo-pre-806b05cf7ae67cb635a4c741da0cdb85d1f9c23e.tar.lz hypervideo-pre-806b05cf7ae67cb635a4c741da0cdb85d1f9c23e.tar.xz hypervideo-pre-806b05cf7ae67cb635a4c741da0cdb85d1f9c23e.zip |
Fix write_debug in EmbedThumbnail
Closes #17
-rw-r--r-- | youtube_dlc/postprocessor/embedthumbnail.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dlc/postprocessor/embedthumbnail.py b/youtube_dlc/postprocessor/embedthumbnail.py index 8e78ede00..762ea38d8 100644 --- a/youtube_dlc/postprocessor/embedthumbnail.py +++ b/youtube_dlc/postprocessor/embedthumbnail.py @@ -124,7 +124,7 @@ class EmbedThumbnailPP(FFmpegPostProcessor): self.to_screen('Adding thumbnail to "%s"' % filename) - self.verbose_message('AtomicParsley command line: %s' % shell_quote(cmd)) + self.write_debug('AtomicParsley command line: %s' % shell_quote(cmd)) p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) stdout, stderr = process_communicate_or_kill(p) |