mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-03-10 10:33:11 +03:00
17 lines
553 B
TypeScript
17 lines
553 B
TypeScript
// Audio Transcription Section Component
|
|
// Global and camera-level audio transcription settings
|
|
|
|
import { createConfigSection } from "./BaseSection";
|
|
|
|
export const AudioTranscriptionSection = createConfigSection({
|
|
sectionPath: "audio_transcription",
|
|
defaultConfig: {
|
|
fieldOrder: ["enabled", "language", "device", "model_size", "live_enabled"],
|
|
hiddenFields: ["enabled_in_config"],
|
|
advancedFields: ["language", "device", "model_size"],
|
|
overrideFields: ["enabled", "live_enabled"],
|
|
},
|
|
});
|
|
|
|
export default AudioTranscriptionSection;
|