PeerTube · Schema

VideoCaption

VideoDecentralizedFederationOpen SourceActivityPubSelf-HostedStreaming

Properties

Name Type Description
language object
automaticallyGenerated boolean
captionPath string Deprecated in PeerTube v8.0, use fileUrl instead
fileUrl string **PeerTube >= 7.1**
m3u8Url string
updatedAt string
View JSON Schema on GitHub

JSON Schema

VideoCaption.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/peertube/main/json-schema/VideoCaption.json",
  "title": "VideoCaption",
  "properties": {
    "language": {
      "$ref": "#/components/schemas/VideoConstantString-Language"
    },
    "automaticallyGenerated": {
      "type": "boolean"
    },
    "captionPath": {
      "type": "string",
      "deprecated": true,
      "description": "Deprecated in PeerTube v8.0, use fileUrl instead"
    },
    "fileUrl": {
      "description": "**PeerTube >= 7.1**",
      "type": "string"
    },
    "m3u8Url": {
      "type": "string"
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}