Laufzeitfehler: „v4l2loopback“ Backend: std::Ausnahme

Laufzeitfehler: „v4l2loopback“ Backend: std::Ausnahme

Ich erhalte den oben genannten Fehler, wenn ich versuche, den folgenden Code auszuführen:

import pyvirtualcam
import numpy as np

with pyvirtualcam.Camera(width=1280, height=720, fps=20) as cam:
    print(f'Using virtual camera: {cam.device}')
    frame = np.zeros((cam.height, cam.width, 3), np.uint8)  # RGB
    while True:
        frame[:] = cam.frames_sent % 255  # grayscale animation
        cam.send(frame)
        cam.sleep_until_next_frame()

Ich führe dies auf Raspberry Pi aus (Kernelversion: 5.10 und Version der Raspberrypi-Kernel-Header ist 1:1.20210527-1).

Fehler:

  Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/pi/.local/lib/python3.7/site-packages/pyvirtualcam/camera.py", line 219, in __init__
    raise RuntimeError('\n'.join(errors))
  RuntimeError: 'v4l2loopback' backend: std::exception

Gelöst:

v4l2loopback stürzte aus irgendeinem Grund ab, was dieses Problem verursachte. Die folgenden Zeilen am Anfang des Codes behoben das Problem.

 import os

 if "raspberrypi" in str(os.uname()):
            os.system("sudo modprobe -r v4l2loopback")
            os.system("sudo modprobe v4l2loopback")

verwandte Informationen