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-vidierapi

v1.0.0

Published

n8n community node for VidierApi - Professional video generation

Readme

n8n-nodes-vidierapi

VidierApi Logo

This is an n8n community node that lets you use VidierApi in your workflows.

VidierApi is a professional video generation engine that allows you to create videos programmatically using simple JSON specifications.

n8n is a fair-code licensed workflow automation platform.

Installation

Follow the installation guide in the n8n community nodes documentation.

Community Node Installation

  1. Go to Settings > Community Nodes
  2. Select Install
  3. Enter n8n-nodes-vidierapi in Enter npm package name
  4. Agree to the risks and select Install

After installing the node, you can use it like any other node in n8n.

Credentials

This node requires VidierApi API credentials. You need:

  • API URL: The base URL of your VidierApi instance (e.g., https://api.vidierapi.com or http://localhost:3002)
  • API Key (optional): Your API key for authentication

Operations

Create Video

Start a new video render job and receive a job ID immediately.

Configuration Modes:

  • Simple (Form): Fill out a simple form with:
    • Video format presets (YouTube, TikTok, Instagram)
    • Image URL
    • Audio URL (optional)
    • Text overlay (optional)
    • Ken Burns effect
  • Advanced (JSON): Provide complete JSON specification
  • From Template: Start from a predefined template

Create Video Complete

Create a video and automatically wait for completion with built-in polling.

Features:

  • Automatic status polling every N seconds
  • Configurable timeout
  • Return formats:
    • Binary Data: Download video as binary (can be sent to Google Drive, AWS S3, etc.)
    • Public URL: Generate a shareable link
    • Both: Get both binary data and URL

Get Status

Check the current status of a render job.

Returns: queued, processing, completed, failed, or cancelled

Download Video

Download a completed video.

Return formats:

  • Binary data (for further processing/upload)
  • Public URL (for sharing)

Cancel Job

Cancel a queued or processing render job.

List Templates

Get all available video templates from your VidierApi instance.

Get Examples

Get example video specifications to use as starting points.

Example Workflows

Simple Video Creation

[Manual Trigger]
    ↓
[VidierApi - Create Video Complete]
    - Mode: Simple
    - Format: TikTok (9:16)
    - Image: {{$json.imageUrl}}
    - Text: {{$json.title}}
    ↓
[Google Drive - Upload]

Batch Processing

[Webhook Trigger]
    ↓
[Split In Batches]
    ↓
[VidierApi - Create Video Complete]
    - Mode: Advanced
    - JSON: {{$json.specification}}
    - Return: Binary
    ↓
[AWS S3 - Upload]

With Status Monitoring

[Schedule Trigger]
    ↓
[VidierApi - Create Video]
    ↓
[Wait 10 seconds]
    ↓
[VidierApi - Get Status]
    ↓
[IF completed]
    ↓
[VidierApi - Download Video]

Compatibility

Tested with n8n version 1.0+

Resources

Version history

1.0.0

  • Initial release
  • Support for all basic operations
  • Simple and advanced configuration modes
  • Create Video Complete with automatic polling
  • Binary data and public URL support

License

MIT