extract_transcript
Generate LinkedIn post drafts by extracting and processing transcripts from YouTube videos. Simplify content creation with automated, editable drafts based on video content.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
youtubeUrl | Yes | YouTube video URL |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"youtubeUrl": {
"description": "YouTube video URL",
"format": "uri",
"type": "string"
}
},
"required": [
"youtubeUrl"
],
"type": "object"
}