npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-faceless-video

v0.1.6

Published

n8n community node to generate captioned, voiced 9:16/1:1/16:9 videos via the Faceless Video API

Readme

n8n-nodes-faceless-video

An n8n community node for the Faceless Video API — turn a script (a list of segments) into a captioned, voiced short video (9:16 / 1:1 / 16:9 MP4) in one node, ready to auto-post from your n8n workflows.

Installation · Credentials · Operations · Compatibility

Installation

Follow the community nodes installation guide, or in the n8n UI: Settings → Community Nodes → Install n8n-nodes-faceless-video.

Credentials

Create a Faceless Video API credential:

  • Base URL — where your Faceless Video API is hosted (e.g. https://your-app.onrender.com).
  • API Key — the x-api-key for your account.

Use the credential's Test button to verify the connection.

Operations

Video → Generate

Enqueue a render. Add one or more Segments (each has Text and an optional Image URL), pick a Voice and Aspect Ratio (9:16 / 1:1 / 16:9), and optionally set a Callback URL.

  • Wait for Completion (default on): the node polls until the render is done and returns the final url. Turn it off to return immediately with a job_id (status: "queued").

Video → Get Result

Fetch a job by Job ID. Returns { job_id, status, url?, error? } (status: queued | processing | done | failed).

Example workflow

Script → faceless video. A Manual Trigger feeds three script segments into the node; with Wait for Completion on, the node returns the finished MP4 url. Paste this into n8n (Workflows → Import from File / clipboard) and set the Faceless Video API credential:

{
  "name": "Script → Faceless Video",
  "nodes": [
    {
      "parameters": {},
      "name": "When clicking 'Execute workflow'",
      "type": "n8n-nodes-base.manualTrigger",
      "typeVersion": 1,
      "position": [240, 320]
    },
    {
      "parameters": {
        "operation": "generate",
        "segments": {
          "segment": [
            { "text": "Did you know honey never spoils?" },
            {
              "text": "Archaeologists found 3000-year-old honey in Egyptian tombs, still edible."
            },
            { "text": "Its low moisture and acidity stop bacteria cold." }
          ]
        },
        "voice": "alloy",
        "aspect": "9:16",
        "waitForCompletion": true
      },
      "name": "Faceless Video",
      "type": "n8n-nodes-faceless-video.facelessVideo",
      "typeVersion": 1,
      "position": [480, 320]
    }
  ],
  "connections": {
    "When clicking 'Execute workflow'": {
      "main": [[{ "node": "Faceless Video", "type": "main", "index": 0 }]]
    }
  }
}

The Faceless Video node outputs:

{
  "job_id": "…",
  "status": "done",
  "url": "https://your-app.onrender.com/files/<id>.mp4"
}

Add a download / upload node after it (e.g. HTTP Request, or a YouTube/TikTok node) to auto-post the result. To return immediately with a job_id instead of waiting, turn off Wait for Completion and poll later with Get Result.

Compatibility

Tested against n8n's current community-node API (n8nNodesApiVersion: 1). Requires a running Faceless Video API instance.

Resources

  • Faceless Video API — your self-hosted render service (set its URL as the credential's Base URL)
  • n8n community nodes docs