Warning

Nightly releases are generated automatically from the latest source code and are intended for experimental purposes only. These builds may contain incomplete or untested features, bugs, or security vulnerabilities, and as such, are not for production use. Users should be aware that nightly releases may cause unexpected behavior, data loss, or system instability. Use of these releases is at the user's own risk, and it is advised to have adequate backups before testing. The software is provided as is with no guarantees or support.

ContentType

Type Alias ContentType

ContentType: {
    home?: string;
    id: string;
    isExperimental?: boolean;
    label: string;
    mimeTypes?: string[];
    spec?: string;
    suffixes?: string[];
    version?: string;
}

Defines the information about a content type. A content type stores information about the format which could be transcoded by the backend transcoder service.

Type declaration

  • Optionalhome?: string

    Homepage for more information on a contentType.

    "http://www.web3d.org"
    
  • id: string

    The identifier of the contentType.

    "x3d-xml"
    
  • OptionalisExperimental?: boolean

    Information whether the contentType is experimental or not.

  • label: string

    The full name of a contentType.

    "X3D, XML Encoding"
    
  • OptionalmimeTypes?: string[]

    The mimeTypes of a contentType.

    ["model/x3d+xml", "model/x3d"]
    
  • Optionalspec?: string

    The specification of a contentType.

    "ISO/IEC IS 19775-1:2013"
    
  • Optionalsuffixes?: string[]

    Supported suffixes of a contentType.

    ["x3d", "x3dz", "x3z"]
    
  • Optionalversion?: string

    The version of the contentType.