feat: initial implementation of image capture

This commit is contained in:
2025-10-25 17:20:17 +02:00
parent 8d35f76b56
commit d46aa6af45
5 changed files with 27 additions and 10 deletions

View File

@@ -17,7 +17,7 @@ from src.snapshot import Snapshot
class RecorderClient(QObject):
DATA_CHUNK_SIZE = 4096
DATA_CHUNK_SIZE = 65536
data_received: pyqtSignal = pyqtSignal(Snapshot)
def __init__(self, host: str, port: int) -> None: