pub struct OldSyncConfig {
pub max_offset_seconds: f32,
pub correlation_threshold: f32,
pub dialogue_threshold: f32,
pub min_dialogue_length: f32,
}👎Deprecated: Use new SyncConfig with Whisper and VAD support
Expand description
Backward compatibility - Deprecated legacy SyncConfig structure.
Fields§
§max_offset_seconds: f32👎Deprecated: Use new SyncConfig with Whisper and VAD support
Maximum search offset in seconds for synchronization.
correlation_threshold: f32👎Deprecated: Use new SyncConfig with Whisper and VAD support
Minimum correlation threshold for accepting sync results.
dialogue_threshold: f32👎Deprecated: Use new SyncConfig with Whisper and VAD support
Dialogue detection threshold for identifying speech segments.
min_dialogue_length: f32👎Deprecated: Use new SyncConfig with Whisper and VAD support
Minimum dialogue segment length in seconds.
Auto Trait Implementations§
impl Freeze for OldSyncConfig
impl RefUnwindSafe for OldSyncConfig
impl Send for OldSyncConfig
impl Sync for OldSyncConfig
impl Unpin for OldSyncConfig
impl UnwindSafe for OldSyncConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more