gpt4 book ai didi

python - 处理 Windows 中的子进程崩溃

转载 作者:IT老高 更新时间:2023-10-28 21:02:47 27 4
gpt4 key购买 nike

我正在从 Windows 命令提示符运行 python 脚本。它调用下面的函数,使用 LAME 将 MP3 文件转换为波形文件。 .

def convert_mp3_to_wav(input_filename, output_filename):
"""
converts the incoming mp3 file to wave file
"""
if not os.path.exists(input_filename):
raise AudioProcessingException, "file %s does not exist" % input_filename

command = ["lame", "--silent", "--decode", input_filename, output_filename]

process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
(stdout, stderr) = process.communicate()

if process.returncode != 0 or not os.path.exists(output_filename):
raise AudioProcessingException, stdout

return output_filename

不幸的是,LAME 总是在某些 MP3 上崩溃(并且名副其实)。 Windows“您的程序已崩溃”对话框出现,它卡住了我的脚本。一旦我关闭 Windows 对话框,就会引发 AudioProcessingException。不必告诉 Windows 关闭,我只希望脚本引发异常,然后转到下一个 MP3。

有没有办法解决这个问题?最好通过修改脚本而不是在 Unix 上运行它。

我使用的是 Windows 7 和 Python 2.6

最佳答案

在谷歌搜索之后,我偶然发现了这个 http://www.activestate.com/blog/2007/11/supressing-windows-error-report-messagebox-subprocess-and-ctypes

它需要一些修补,但下面的方法现在不会收到烦人的 Windows 消息 :)注意 subprocess.Popen 中的 creationflags=subprocess_flags

def convert_mp3_to_wav(input_filename, output_filename):

if sys.platform.startswith("win"):
# Don't display the Windows GPF dialog if the invoked program dies.
# See comp.os.ms-windows.programmer.win32
# How to suppress crash notification dialog?, Jan 14,2004 -
# Raymond Chen's response [1]

import ctypes
SEM_NOGPFAULTERRORBOX = 0x0002 # From MSDN
ctypes.windll.kernel32.SetErrorMode(SEM_NOGPFAULTERRORBOX);
subprocess_flags = 0x8000000 #win32con.CREATE_NO_WINDOW?
else:
subprocess_flags = 0



"""
converts the incoming mp3 file to wave file
"""
if not os.path.exists(input_filename):
raise AudioProcessingException, "file %s does not exist" % input_filename

#exec("lame {$tmpname}_o.mp3 -f {$tmpname}.mp3 && lame --decode {$tmpname}.mp3 {$tmpname}.wav");
command = ["lame", "--silent", "--decode", input_filename, output_filename]

process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, creationflags=subprocess_flags)
(stdout, stderr) = process.communicate()

if process.returncode != 0 or not os.path.exists(output_filename):
raise AudioProcessingException, stdout

return output_filename

关于python - 处理 Windows 中的子进程崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5069224/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com