Hiyve Components - v1.0.0
    Preparing search index...

    Interface RecordingOptions

    Recording options that can be configured before starting a recording.

    These options control what features are enabled during and after recording. All options are optional and have sensible defaults.

    const options: RecordingOptions = {
    autoCompose: true, // Automatically combine into single video
    transcribe: true, // Enable live transcription
    postMeetingSummary: true, // Generate AI summary after meeting
    };

    onStartRecording(options);
    interface RecordingOptions {
        autoCompose?: boolean;
        postMeetingSummary?: boolean;
        transcribe?: boolean;
    }
    Index

    Properties

    autoCompose?: boolean

    Auto-compose into single video after recording

    postMeetingSummary?: boolean

    Generate post-meeting summary

    transcribe?: boolean

    Enable transcription during recording