2026-01-21 16:30:13 +08:00
|
|
|
syntax = "proto3";
|
|
|
|
|
package cmvr.config;
|
|
|
|
|
|
|
|
|
|
message FFMpegMicroPhoneConfig{
|
|
|
|
|
string id = 1;
|
|
|
|
|
int32 channels = 2;
|
|
|
|
|
int32 sampleRate = 3;
|
|
|
|
|
int32 volume = 4;
|
2026-02-04 10:17:01 +08:00
|
|
|
bool enable = 5;
|
2026-02-24 09:35:58 +08:00
|
|
|
string input_device = 6;
|
2026-01-21 16:30:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message MicroPhoneConfig{
|
|
|
|
|
repeated FFMpegMicroPhoneConfig ffmpeg_microphones = 1;
|
|
|
|
|
}
|