SongGuess
    Preparing search index...

    Type Alias StreamDirectUploadCreateParams

    type StreamDirectUploadCreateParams = {
        allowedOrigins?: string[];
        creator?: string;
        expiry?: string;
        maxDurationSeconds: number;
        meta?: Record<string, string>;
        requireSignedURLs?: boolean;
        scheduledDeletion?: string | null;
        thumbnailTimestampPct?: number;
        watermark?: StreamDirectUploadWatermark;
    }
    Index

    Properties

    allowedOrigins?: string[]

    Lists the origins allowed to display the video.

    creator?: string

    A user-defined identifier for the media creator.

    expiry?: string

    The date and time after upload when videos will not be accepted.

    maxDurationSeconds: number

    The maximum duration in seconds for a video upload.

    meta?: Record<string, string>

    A user modifiable key-value store used to reference other systems of record for managing videos.

    requireSignedURLs?: boolean

    Indicates whether the video can be accessed using the id. When set to true, a signed token must be generated with a signing key to view the video.

    scheduledDeletion?: string | null

    The date and time at which the video will be deleted. Include null to remove a scheduled deletion.

    thumbnailTimestampPct?: number

    The thumbnail timestamp percentage.

    The watermark profile to apply.