# Meteor Edge Client - Application Configuration # Copy this file to one of the following locations: # - /etc/meteor-client/app-config.toml (system-wide) # - ~/.config/meteor-client/app-config.toml (user-specific) # - meteor-app-config.toml (local directory) [camera] # Camera input source # Options: # "device" - Use physical camera device # "/path/to/video.mp4" - Use video file as input source = "device" # Camera device ID (only used when source = "device") # 0 = default camera, 1 = second camera, etc. device_id = 0 # Target frame rate (frames per second) # Common values: 15, 24, 30, 60 fps = 30.0 # Frame resolution (optional) # If not specified, camera's default resolution will be used width = 640 height = 480 # Example configurations: # High-resolution camera: # source = "device" # device_id = 0 # fps = 30.0 # width = 1920 # height = 1080 # Video file input: # source = "/home/pi/test-video.mp4" # fps = 25.0 # Low-power configuration: # source = "device" # device_id = 0 # fps = 15.0 # width = 320 # height = 240