如何 运行 2 个脚本 python 同时?

How run 2 script python in same time?

我解释了我的需要:我希望 运行 ffmpeg 使用 python 脚本(没关系)但我需要知道脚本是通过连接在 GPIO 上的闪烁 LED 启动的我的 RPI,但我不知道为什么我可以启动我的脚本并启动 le blink(或只是一个 led)

你能帮帮我吗?请给我灯;)

import RPi.GPIO as GPIO
import time
import os

GPIO.setwarnings(False)
GPIO.setmode(GPIO.BCM)
GPIO.setup(4, GPIO.OUT)
GPIO.setup(22,GPIO.IN)

# fonction qui fait clignoter la led 
def blink(led):
        GPIO.output(led,True)
        time.sleep(0.5)
        GPIO.output(led,False)
        time.sleep(1)

# input of the switch will change the state of the LED
while 1:
        if ( GPIO.input(22) == True ):
                print "start broadcast"
                os.system("sudo /home/pi/videopi/webcam.sh")
                blink(4) << not ok like this !
                time.sleep(1)

假设您的 os 脚本成功运行(我会推荐 subprocess),您所描述的称为并发 - https://realpython.com/python-concurrency/

我会像这样构建您的代码:

import RPi.GPIO as GPIO
import time
import os
from threading import Thread 

GPIO.setwarnings(False)
GPIO.setmode(GPIO.BCM)
GPIO.setup(4, GPIO.OUT)
GPIO.setup(22,GPIO.IN)

# fonction qui fait clignoter la led 
def blink(led):
        while True:
            GPIO.output(led,True)
            time.sleep(0.5)
            GPIO.output(led,False)
            time.sleep(1)

# input of the switch will change the state of the LED
while True:
    if ( GPIO.input(22) == True ):
        blinking = Thread(target=blink, args=(4,)) # create thread
        blinking.start() # start blinking
        print("start broadcast")
        os.system("sudo /home/pi/videopi/webcam.sh")
        blinking.join() # stops blinking once webcam.sh completed
        print("broadcast complete")