Unitalk
Back to Discovery
VideoCaptions

Youtube transcripts

bymaila
Video-To-Text
Youtube
Convert Youtube video links into transcribed text, enabling users to ask questions about the video, create chapters, and summarize its content.

Tool Parameters

Transcribe a section of a video
ParameterType
_requestBody
OBJECT

JSON Schema

JSON CODE
[
  {
    "description": "Transcribe a section of a video",
    "name": "transcribeVideo",
    "parameters": {
      "properties": {
        "_requestBody": {
          "type": "object",
          "properties": {
            "videoId": {
              "type": "string",
              "description": "YouTube video ID to be transcribed"
            },
            "segment": {
              "type": "integer",
              "description": "Segment number to transcribe, with each segment holding a maximum of 2k words."
            },
            "includeTimestamp": {
              "type": "boolean",
              "description": "Specifies whether to include timestamps in the transcription"
            }
          }
        }
      },
      "type": "object"
    }
  }
]