
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
n8n-nodes-kih-youtube-transcript
Advanced tools
n8n community node to fetch YouTube video transcripts using KI-H API
This is an n8n community node that allows you to fetch transcripts from YouTube videos using the KI-H API.
The easiest way to install this node is through the n8n UI:
n8n-nodes-kih-youtube-transcript
cd ~/.n8n
npm install n8n-nodes-kih-youtube-transcript
Then restart n8n.
Navigate to your n8n nodes directory:
cd ~/.n8n/nodes
Clone or download this repository:
git clone https://github.com/ki-h/n8n-nodes-kih-youtube-transcript
Install dependencies:
cd n8n-nodes-kih-youtube-transcript
npm install
Build the node:
npm run build
Restart n8n
The KIH YouTube Transcript node provides the following functionality:
Fetches the transcript/subtitles from a YouTube video.
https://www.youtube.com/watch?v=VIDEO_ID
https://youtu.be/VIDEO_ID
https://www.youtube.com/embed/VIDEO_ID
Output Format:
Language: Language code for the transcript (e.g., 'en', 'de', 'fr')
Depending on the selected output format:
Full Data format:
{
"transcript": [
{
"text": "Hello world",
"start": 0,
"duration": 2.5
}
],
"fullText": "Hello world ...",
"videoId": "VIDEO_ID",
"url": "https://...",
"totalItems": 42
}
Text Only format:
{
"text": "Hello world ...",
"videoId": "VIDEO_ID",
"url": "https://..."
}
Formatted format:
{
"formattedText": "[0:00] Hello world\n[0:05] ...",
"videoId": "VIDEO_ID",
"url": "https://..."
}
The node will handle common errors such as:
When "Continue On Fail" is enabled, errors will be returned in the output instead of stopping the workflow.
# Install dependencies
npm install
# Build the node
npm run build
# Development mode (watch for changes)
npm run dev
# Run linter
npm run lint
# Clean build files
npm run clean
This node uses the KI-H YouTube Transcript API service hosted at https://api.ki-h.net/api/youtube-transcript
.
For issues and feature requests, please use the GitHub issues page.
To publish this package to npm:
npm login
npm publish
FAQs
n8n community node to fetch YouTube video transcripts using KI-H API
The npm package n8n-nodes-kih-youtube-transcript receives a total of 0 weekly downloads. As such, n8n-nodes-kih-youtube-transcript popularity was classified as not popular.
We found that n8n-nodes-kih-youtube-transcript demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.