net.atchan.embed.audio

atchan.net

Documentation

main object

No description available.

Properties

alt string Required

Text description or transcript of the audio for accessibility. May be empty.

maxLength: 20000 bytesmaxGraphemes: 2000 graphemes
audio blob Required

The audio represented as bytes

maxSize: 26.2 MB
duration integer Optional

Client-declared length of the audio in whole seconds

minimum: 0
filename string Required

Name of the file as uploaded

maxLength: 2600 bytesmaxGraphemes: 260 graphemes
View raw schema
{
  "type": "object",
  "required": [
    "filename",
    "audio",
    "alt"
  ],
  "properties": {
    "alt": {
      "type": "string",
      "maxLength": 20000,
      "description": "Text description or transcript of the audio for accessibility. May be empty.",
      "maxGraphemes": 2000
    },
    "audio": {
      "type": "blob",
      "accept": [
        "audio/*"
      ],
      "maxSize": 26214400,
      "description": "The audio represented as bytes"
    },
    "duration": {
      "type": "integer",
      "minimum": 0,
      "description": "Client-declared length of the audio in whole seconds"
    },
    "filename": {
      "type": "string",
      "maxLength": 2600,
      "description": "Name of the file as uploaded",
      "maxGraphemes": 260
    }
  }
}

Lexicon Garden

@