python多线程执行shell_如何在python中实现线程来运行两个bashshell命令?

我必须录制一个wav文件,同时还要用sox分析它。我正在使用fifo类型的文件进行此操作。在

所以在这里我需要同时启动两个线程,但即使我使用线程,我也无法实现我想要的。总是一个先执行,然后另一个执行。我希望它们平行,这样我就可以做一些事情了。在#this should be in one thread

def test_wav(self):

""" analyze the data """

bashCommand = "sox {} -n stat".format(self.__rawfile)

while self.__rec_thread.is_alive():

process = subprocess.Popen(bashCommand.split(),stdout=subprocess.PIPE,stderr=subprocess.PIPE)

wav_output = process.communicate()[1] #sox outputs the details in stderr

#do something and return

#this should be in another thread

def record_wav(self):

bashCommand = "arecord -d 10 -c 2 -r 48000 -f S32_LE > {}".format(self.__rawfile)

pid = subprocess.Popen(bashCommand.split())

pid.wait()

if pid.returncode != 0:

raise RecordException("Failed while recording with error {}".format(pid.returncode))

我尝试用下面的代码使它们成为线程,但是失败了(总是一个先执行,然后另一个执行。我希望他们是平行的,这样我可以做一些事情)。

已导入from threading import Thread

^{pr2}$

编辑:首先它执行记录(由于选项-d10,它至少需要10秒)功能,然后是测试wav函数。就像一个接一个地叫他们。在

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值