feat: Update camera configuration to support MP4 format with new settings
- Changed machine topic from "vibratory_conveyor" to "blower_separator" for camera1 - Updated exposure and gain settings for camera1 - Added new video recording settings: video_format, video_codec, video_quality, auto_start_recording_enabled, auto_recording_max_retries, auto_recording_retry_delay_seconds - Enhanced documentation to reflect current configuration and API alignment - Redesigned Camera Configuration UI to display read-only fields for system and auto-recording settings - Improved handling of video format settings in the API and frontend - Created CURRENT_CONFIGURATION.md for complete system configuration reference
This commit is contained in:
@@ -99,20 +99,19 @@ const CameraConfigForm = () => {
|
||||
```json
|
||||
{
|
||||
"name": "camera1",
|
||||
"machine_topic": "vibratory_conveyor",
|
||||
"machine_topic": "blower_separator",
|
||||
"storage_path": "/storage/camera1",
|
||||
"enabled": true,
|
||||
|
||||
// Basic settings
|
||||
"exposure_ms": 1.0,
|
||||
"gain": 3.5,
|
||||
"exposure_ms": 0.3,
|
||||
"gain": 4.0,
|
||||
"target_fps": 0,
|
||||
|
||||
// NEW: Video recording settings
|
||||
"enabled": true,
|
||||
"video_format": "mp4",
|
||||
"video_codec": "mp4v",
|
||||
"video_codec": "mp4v",
|
||||
"video_quality": 95,
|
||||
|
||||
"auto_start_recording_enabled": true,
|
||||
"auto_recording_max_retries": 3,
|
||||
"auto_recording_retry_delay_seconds": 2,
|
||||
|
||||
// ... other existing fields
|
||||
}
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user