From f5c6da80140198ad8656e406d738f1cb984eed3c Mon Sep 17 00:00:00 2001 From: ziesorx Date: Fri, 26 Sep 2025 10:18:44 +0700 Subject: [PATCH] change: temp_file path --- core/streaming/readers.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/streaming/readers.py b/core/streaming/readers.py index 35a7213..44fee34 100644 --- a/core/streaming/readers.py +++ b/core/streaming/readers.py @@ -92,11 +92,11 @@ class FFmpegRTSPReader: def _start_ffmpeg_process(self): """Start FFmpeg subprocess with CUDA hardware acceleration writing to temp file.""" # Create temp file path for this camera - self.temp_file = f"/tmp/claude/camera_{self.camera_id.replace(' ', '_')}.raw" - os.makedirs("/tmp/claude", exist_ok=True) + self.temp_file = f"/tmp/frame/camera_{self.camera_id.replace(' ', '_')}.raw" + os.makedirs("/tmp/frame", exist_ok=True) # Use PPM format with single file (will use file locking for concurrency) - self.temp_file = f"/tmp/claude/camera_{self.camera_id.replace(' ', '_')}.ppm" + self.temp_file = f"/tmp/frame/camera_{self.camera_id.replace(' ', '_')}.ppm" cmd = [ 'ffmpeg',