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

v1.0.0

Published

n8n node for Jiemeng AI video generation using Volcengine Doubao Seedance model. Generate videos from images and text prompts.

Downloads

53

Readme

n8n-nodes-jiemeng

n8n.io - Workflow Automation

An n8n community node for AI video generation using Volcengine's Doubao Seedance model. Transform images into dynamic videos with text prompts.

🎯 Features

  • Image to Video: Generate videos from static images using AI
  • Text Prompts: Guide video generation with descriptive text
  • Volcengine Integration: Powered by Doubao Seedance 1.0 Lite model
  • Structured Output: Returns video URL and metadata in JSON format
  • Error Handling: Comprehensive error messages and suggestions

📦 Installation

Option 1: Install via npm (Recommended)

npm install n8n-nodes-jiemeng

Option 2: Manual Installation

  1. Navigate to your n8n installation directory
  2. Install the package:
    npm install n8n-nodes-jiemeng
  3. Restart n8n

Option 3: Community Nodes (n8n Cloud/Self-hosted)

  1. Go to SettingsCommunity Nodes
  2. Click Install a community node
  3. Enter: n8n-nodes-jiemeng
  4. Click Install

🚀 Quick Start

1. Prerequisites

2. Configure Credentials

  1. In n8n, create new Jiemeng API credentials
  2. Enter your Volcengine API Key
  3. Save the credentials

3. Use the Node

  1. Add Jiemeng node to your workflow
  2. Configure:
    • Resource: Video Generation
    • Operation: Image to Video
    • Image URL: Public accessible image URL
    • Prompt: Descriptive text for video generation
  3. Connect your credentials
  4. Execute the workflow

📋 Node Configuration

Input Parameters

| Parameter | Type | Required | Description | | --------- | ------ | -------- | ------------------------------------------ | | Image URL | String | Yes | Public URL of the source image | | Prompt | String | Yes | Text description to guide video generation |

Output Format

{
	"success": true,
	"taskId": "cgt-xxx",
	"status": "succeeded",
	"videoUrl": "https://generated-video-url.mp4",
	"model": "doubao-seedance-1-0-lite-i2v-250428",
	"usage": {
		"completion_tokens": 110110,
		"total_tokens": 110110
	},
	"createdAt": 1751547452,
	"updatedAt": 1751547472
}

Key Output Fields

  • videoUrl: Main output - Direct link to generated video
  • success: Boolean indicating operation success
  • taskId: Unique identifier for the generation task
  • status: Task completion status
  • usage: Token consumption information

🛠️ Troubleshooting

Common Errors

ModelNotOpen Error

Error: Your account has not activated the model doubao-seedance-1-0-lite-i2v

Solution:

  1. Visit Volcengine Model Management
  2. Find "Seedance" under "Visual Models"
  3. Enable the video generation service
  4. Ensure sufficient account balance

Unauthorized Error

Error: Unauthorized

Solution:

  1. Verify API Key is correct
  2. Check API Key permissions
  3. Ensure API Key hasn't expired

📚 Resources

📄 License

MIT License