youtube_to_linkedin_post
Convert YouTube videos into LinkedIn posts by generating editable content drafts based on video transcripts. Customize tone, audience, and summary style to align with your professional profile.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| audience | No | Target audience | general |
| hashtags | No | Relevant hashtags (optional) | |
| includeCallToAction | No | Whether to include a call to action | |
| summaryTone | No | Tone of the summary | professional |
| tone | No | Tone of the LinkedIn post | first-person |
| youtubeUrl | Yes | YouTube video URL |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"audience": {
"default": "general",
"description": "Target audience",
"enum": [
"general",
"technical",
"business",
"academic"
],
"type": "string"
},
"hashtags": {
"description": "Relevant hashtags (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"includeCallToAction": {
"default": true,
"description": "Whether to include a call to action",
"type": "boolean"
},
"summaryTone": {
"default": "professional",
"description": "Tone of the summary",
"enum": [
"educational",
"inspirational",
"professional",
"conversational"
],
"type": "string"
},
"tone": {
"default": "first-person",
"description": "Tone of the LinkedIn post",
"enum": [
"first-person",
"third-person",
"thought-leader"
],
"type": "string"
},
"youtubeUrl": {
"description": "YouTube video URL",
"format": "uri",
"type": "string"
}
},
"required": [
"youtubeUrl"
],
"type": "object"
}