Public Access
Add inactivity safeguard and speaker diagnostics
PR and Push Build/Test / build-and-test (push) Failing after 8m31s
PR and Push Build/Test / build-and-test (push) Failing after 8m31s
This commit is contained in:
@@ -131,6 +131,27 @@ public sealed class RecordingOptions
|
||||
public TimeSpan OpenMeetingNoteDelay { get; set; } = TimeSpan.FromSeconds(1);
|
||||
|
||||
public string TemporaryRecordingsFolder { get; set; } = @"%LOCALAPPDATA%\MeetingAssistant\Recordings";
|
||||
|
||||
public RecordingInactivitySafeguardOptions InactivitySafeguard { get; set; } = new();
|
||||
}
|
||||
|
||||
public sealed class RecordingInactivitySafeguardOptions
|
||||
{
|
||||
public bool Enabled { get; set; } = true;
|
||||
|
||||
public TimeSpan FirstPromptAfter { get; set; } = TimeSpan.FromMinutes(2);
|
||||
|
||||
public TimeSpan[] ReminderPromptAfter { get; set; } =
|
||||
[
|
||||
TimeSpan.FromMinutes(5),
|
||||
TimeSpan.FromMinutes(10)
|
||||
];
|
||||
|
||||
public TimeSpan AutoStopAfter { get; set; } = TimeSpan.FromMinutes(30);
|
||||
|
||||
public TimeSpan InferredEndPadding { get; set; } = TimeSpan.FromMinutes(1);
|
||||
|
||||
public TimeSpan CheckInterval { get; set; } = TimeSpan.FromSeconds(15);
|
||||
}
|
||||
|
||||
public sealed class WhisperLocalOptions
|
||||
|
||||
Reference in New Issue
Block a user