Browse Source

[fix] add try block

main
silencht 6 months ago
committed by GitHub
parent
commit
86367f8c9b
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 5
      src/televuer/televuer.py

5
src/televuer/televuer.py

@ -100,7 +100,12 @@ class TeleVuer:
self.process.start()
def vuer_run(self):
try:
self.vuer.run()
except KeyboardInterrupt:
pass
except Exception as e:
print(f"Vuer encountered an error: {e}")
async def on_cam_move(self, event, session, fps=60):
try:

Loading…
Cancel
Save