Skip to Content
Create a Transcription Vocabulary
post

Create a new Transcription Vocabulary.

Request body params
name
string

The user-supplied name of the Transcription Vocabulary.

phrases
array

Phrases, individual words, or proper names to include in the Transcription Vocabulary. When the Transcription Vocabulary is attached to a live stream's generated_subtitles, the probability of successful speech recognition for these words or phrases is boosted.

passthrough
string

Arbitrary user-supplied metadata set for the Transcription Vocabulary. Max 255 characters.

post
201
/video/v1/transcription-vocabularies
Request
(application/json)
{
  "name": "Mux API Vocabulary",
  "phrases": [
    "Mux",
    "Live Stream",
    "Playback ID",
    "video encoding"
  ]
}
Response
(application/json)
{
  "data": {
    "id": "VDm3npt2eaEDvz9emzun8Q",
    "name": "Mux API Vocabulary",
    "phrases": [
      "Mux",
      "Live Stream",
      "Playback ID",
      "video encoding"
    ],
    "created_at": "1609869152",
    "updated_at": "1609869152"
  }
}