gpt4 book ai didi

python 如何停止无限循环并继续其余代码?

转载 作者:太空宇宙 更新时间:2023-11-04 00:34:42 25 4
gpt4 key购买 nike

问题是我不能在不停止整个程序的情况下退出 while 循环。

当我在我的 Raspberry Pi 上执行代码时,相机开始录制,但是当我想结束视频并按 Ctrl+c 时,整个程序停止而不是在 while 循环后继续。我以为信号处理程序会捕捉到键盘中断,但事实并非如此。

我的代码:

import picamera
import signal
from time import sleep
from subprocess import call

def signal_handler(signal, frame):
global interrupted
interrupted = True

signal.signal(signal.SIGINT, signal_handler)

interrupted = False

# Setup the camera
with picamera.PiCamera() as camera:
camera.resolution = (1640, 922)
camera.framerate = 30

# Start recording
camera.start_recording("pythonVideo.h264")

while True:
sleep(0.5)
print("still recording")

if interrupted:
print("Ctrl+C pressed")
camera.stop_recording()
break

# Stop recording
#camera.stop_recording()

# The camera is now closed.

print("We are going to convert the video.")
# Define the command we want to execute.
command = "MP4Box -add pythonVideo.h264 convertedVideo.mp4 -fps 30"
#Execute command.
call([command], shell=True)
# Video converted.
print("Video converted.")

我尝试过的:

bflag = True
while bflag ==True:
sleep(0.5)
print("still recording")

if interrupted:
print("Ctrl+C pressed")
camera.stop_recording()
bflag = False

错误:

pi@raspberrypi:~/Documents/useThisFolder $ python cookieVideo.py 
still recording
still recording
still recording
still recording
still recording
^Cstill recording
Ctrl+C pressed
Traceback (most recent call last):
File "cookieVideo.py", line 29, in <module>
camera.stop_recording()
File "/usr/lib/python2.7/dist-packages/picamera/camera.py", line 1193, in stop_recording
'port %d' % splitter_port)
picamera.exc.PiCameraNotRecording: There is no recording in progress on port 1

最佳答案

这样就可以了:

while True:
try:
sleep(0.5)
print("still recording")
except KeyboardInterrupt:
print("Ctrl+C pressed")
camera.stop_recording()
break

关于python 如何停止无限循环并继续其余代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44554308/

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