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

    Interface RecordingOptions

    Options for recording configuration.

    These options control recording behavior and post-processing features.

    const intelligenceOptions: RecordingOptions = {
    autoCompose: true,
    transcribe: true,
    postMeetingSummary: true,
    useContext: true,
    emotionAnalysis: true,
    };
    interface RecordingOptions {
        autoCompose?: boolean;
        emotionAnalysis?: boolean;
        postMeetingSummary?: boolean;
        transcribe?: boolean;
        useContext?: boolean;
    }
    Index

    Properties

    autoCompose?: boolean

    Auto-compose individual tracks into a single video file after recording.

    false for simple recording, true for intelligence mode
    
    emotionAnalysis?: boolean

    Enable emotion/sentiment analysis during recording. When enabled, the recording bot will analyze participant emotions and engagement.

    false
    
    postMeetingSummary?: boolean

    Generate an AI-powered meeting summary after recording ends. Requires transcribe to be true.

    false for simple recording, true for intelligence mode
    
    transcribe?: boolean

    Enable real-time transcription during recording.

    false for simple recording, true for intelligence mode
    
    useContext?: boolean

    Push transcriptions to AI for query access during the meeting. Requires transcribe to be true.

    false for simple recording, true for intelligence mode