app.tempomusic.embed.video

lexicons.tempomusic.fan

Documentation

Video embed. One video per post.

main object

Video embed. One video per post.

Properties

alt string Required

Alt-text describing the video content for accessibility. Required.

maxLength: 10000 bytesmaxGraphemes: 1000 graphemes
captions array of ref#caption Optional

Optional caption tracks (WebVTT) keyed by BCP-47 language tag, for accessibility.

maxLength: 20 items
video blob Required

No description available.

maxSize: 100.0 MB
View raw schema
{
  "type": "object",
  "required": [
    "video",
    "alt"
  ],
  "properties": {
    "alt": {
      "type": "string",
      "maxLength": 10000,
      "description": "Alt-text describing the video content for accessibility. Required.",
      "maxGraphemes": 1000
    },
    "video": {
      "type": "blob",
      "accept": [
        "video/mp4",
        "video/webm"
      ],
      "maxSize": 100000000
    },
    "captions": {
      "type": "array",
      "items": {
        "ref": "#caption",
        "type": "ref"
      },
      "maxLength": 20,
      "description": "Optional caption tracks (WebVTT) keyed by BCP-47 language tag, for accessibility."
    },
    "aspectRatio": {
      "ref": "app.tempomusic.embed.defs#aspectRatio",
      "type": "ref"
    }
  },
  "description": "Video embed. One video per post."
}
caption object

No description available.

Properties

file blob Required

No description available.

maxSize: 20.0 KB
lang string language Required

A BCP-47 language tag (e.g., en, pt-BR).

View raw schema
{
  "type": "object",
  "required": [
    "lang",
    "file"
  ],
  "properties": {
    "file": {
      "type": "blob",
      "accept": [
        "text/vtt"
      ],
      "maxSize": 20000
    },
    "lang": {
      "type": "string",
      "format": "language"
    }
  }
}

Lexicon Garden

@