diff options
author | Jesús <heckyel@hyperbola.info> | 2021-10-20 11:45:20 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-10-20 11:45:20 -0500 |
commit | c7afb25e19a91493db6069d1db9f7d1bc8491dc1 (patch) | |
tree | d4f4d0a125e191585af49dcfb189d2f1ba9acf17 /yt_dlp/postprocessor/embedthumbnail.py | |
parent | 000d2844fd93d8c35fc74d22588291e7c7d742fa (diff) | |
parent | d3c93ec2b7f5bcb872b0afb169efaa2f1abdf6e2 (diff) | |
download | hypervideo-pre-c7afb25e19a91493db6069d1db9f7d1bc8491dc1.tar.lz hypervideo-pre-c7afb25e19a91493db6069d1db9f7d1bc8491dc1.tar.xz hypervideo-pre-c7afb25e19a91493db6069d1db9f7d1bc8491dc1.zip |
updated from upstream | 20/10/2021 at 11:45
Diffstat (limited to 'yt_dlp/postprocessor/embedthumbnail.py')
-rw-r--r-- | yt_dlp/postprocessor/embedthumbnail.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/yt_dlp/postprocessor/embedthumbnail.py b/yt_dlp/postprocessor/embedthumbnail.py index 3139a6338..918d3e788 100644 --- a/yt_dlp/postprocessor/embedthumbnail.py +++ b/yt_dlp/postprocessor/embedthumbnail.py @@ -26,9 +26,9 @@ from ..utils import ( encodeArgument, encodeFilename, error_to_compat_str, + Popen, PostProcessingError, prepend_extension, - process_communicate_or_kill, shell_quote, ) @@ -183,8 +183,8 @@ class EmbedThumbnailPP(FFmpegPostProcessor): self._report_run('atomicparsley', filename) 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) + p = Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + stdout, stderr = p.communicate_or_kill() if p.returncode != 0: msg = stderr.decode('utf-8', 'replace').strip() raise EmbedThumbnailPPError(msg) |