我正在尝试使用pyautogui库在python3中模拟ctrl + c键盘事件。不幸的是,该库不会生成此事件。还有其他方法可以产生这个吗?
以下代码不起作用,
from pyautogui import hotkey
hotkey('ctrl', 'c')
我想为以下代码执行此任务。该代码可以在任意持续时间内录制现场音频,并且可以通过按“ Ctrl + c”在任何时间停止录制。我想生成此事件,以便添加一些其他功能。
import os
import sys
import time
import queue
import soundfile as f
import sounddevice as sd
def callback(indata, frames, time, status):
"""
This function is called for each audio block from the record function.
"""
if status:
print(status, file=sys.stderr)
q.put(indata.copy())
def record(filename):
try:
# Make sure the file is open before recording begins
with sf.SoundFile(filename, mode='x', samplerate=48000, channels=2, subtype="PCM_16") as file:
with sd.InputStream(samplerate=48000, channels=2, callback=callback):
print('START')
print('#' * 80)
"""
Here is the place I want to generate the event (Ctrl+c)
after n minutes
"""
print('press Ctrl+c to stop the recording')
while True:
file.write(q.get())
except KeyboardInterrupt:
print('The recording is over.')
if __name__ == "__main__":
q = queue.Queue()
record('filename.wav')
答案 0 :(得分:1)
这只是一个建议,可能并不好,因为我是python的初学者。
使用PyWin32调用Windows API GenerateConsoleCtrlEvent()
。您可以使用此API生成CTRL + C,因此如果您使用PyWin32
进行调用,它可能会解决您的问题。
更新:
这是我有史以来第一个python代码。您可以使用send_ctrl_c
函数将CTRL-C发送到另一个进程。我检查了一下,就可以了。
import win32api as api
import win32console as con
# takes another process id as argument. method sleeps for 2 seconds
def send_ctrl_c(pid) :
con.FreeConsole()
if con.AttachConsole(int(pid)) == None :
api.SetConsoleCtrlHandler(None, 1)
api.GenerateConsoleCtrlEvent(con.CTRL_C_EVENT, 0)
api.Sleep(2000)
con.FreeConsole()
api.SetConsoleCtrlHandler(None, 0)