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',