gpt4 book ai didi

python - 如何将 python Popen 与 espeak 和 aplay 一起使用

转载 作者:太空宇宙 更新时间:2023-11-03 15:10:08 24 4
gpt4 key购买 nike

我正在打电话

espeak -ves -s130 'HEY' --stdout | aplay -D 'sysdefault'

通过 subprocess.Popen,用

espeak_process = Popen(["espeak", "-ves -s100 'HEY' --stdout"], stdout=subprocess.PIPE)
aplay_process = Popen(["aplay", "-D 'sysdefault'"], stdin=espeak_process.stdout, stdout=subprocess.PIPE)

但是没用

ALSA lib pcm.c:2217:(snd_pcm_open_noupdate) Unknown PCM  'sysdefault'
aplay: main:682: audio open error: No such file or directory

知道如何实现吗?谢谢

最佳答案

你的例子相当于在 shell 中输入:

$ espeak '-ves -s100 \'HEY\' --stdout'
$ aplay '-D \'sysdefault\''

这显然是错误的。每个列表条目都是传递给可执行文件的一个参数(argv 条目),您这边不需要转义/引用。所以你想使用:

["aplay", "-D", "sysdefault"]
["espeak", "-ves", "-s100", "HEY", "--stdout"],

另见 the documentation (强调我的):

args is required for all calls and should be a string, or a sequence of program arguments. Providing a sequence of arguments is generally preferred, as it allows the module to take care of any required escaping and quoting of arguments (e.g. to permit spaces in file names). If passing a single string, either shell must be True (see below) or else the string must simply name the program to be executed without specifying any arguments.

关于python - 如何将 python Popen 与 espeak 和 aplay 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27912586/

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