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

    Interface StreamingSettingsDialogProps

    Props for the StreamingSettingsDialog component.

    A dialog for configuring streaming options before starting. Supports cloud streaming and custom RTMP destinations.

    interface StreamingSettingsDialogProps {
        defaultCreateMp4?: boolean;
        defaultMode?: StreamingMode;
        labels?: Partial<StreamingSettingsLabels>;
        onClose: () => void;
        onStartStreaming: (options: StreamingOptions) => void;
        open: boolean;
        sx?: SxProps<Theme>;
    }
    Index

    Properties

    defaultCreateMp4?: boolean

    Initial value for create MP4 (default: true)

    defaultMode?: StreamingMode

    Initial value for streaming mode (default: 'single')

    labels?: Partial<StreamingSettingsLabels>

    Custom labels

    onClose: () => void

    Callback when dialog closes

    onStartStreaming: (options: StreamingOptions) => void

    Callback when streaming should start with options

    open: boolean

    Whether the dialog is open

    sx?: SxProps<Theme>

    MUI sx styling prop