🐛 fix(av1-transfer): remove hardcoded /bin/bash, use default sh

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
FlintyLemming
2026-02-28 11:13:28 +08:00
parent eaf6a41041
commit 4724fd243b

View File

@@ -136,7 +136,6 @@ def transcode_one_file(file_info, overall_bar, slot_bars, slot_queue, process_na
proc = subprocess.Popen( proc = subprocess.Popen(
f"exec -a {shlex.quote(process_name)} ffmpeg {shell_args}", f"exec -a {shlex.quote(process_name)} ffmpeg {shell_args}",
shell=True, shell=True,
executable="/bin/bash",
stdout=subprocess.PIPE, stdout=subprocess.PIPE,
stderr=subprocess.PIPE, stderr=subprocess.PIPE,
) )