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
Maintainers
Readme
n8n-nodes-jiemeng

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-jiemengOption 2: Manual Installation
- Navigate to your n8n installation directory
- Install the package:
npm install n8n-nodes-jiemeng - Restart n8n
Option 3: Community Nodes (n8n Cloud/Self-hosted)
- Go to Settings → Community Nodes
- Click Install a community node
- Enter:
n8n-nodes-jiemeng - Click Install
🚀 Quick Start
1. Prerequisites
- Volcengine Account: Sign up at Volcengine Console
- Model Access: Enable Seedance video generation model in Model Management
- API Key: Create an API key in API Key Management
2. Configure Credentials
- In n8n, create new Jiemeng API credentials
- Enter your Volcengine API Key
- Save the credentials
3. Use the Node
- Add Jiemeng node to your workflow
- Configure:
- Resource: Video Generation
- Operation: Image to Video
- Image URL: Public accessible image URL
- Prompt: Descriptive text for video generation
- Connect your credentials
- 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 videosuccess: Boolean indicating operation successtaskId: Unique identifier for the generation taskstatus: Task completion statususage: Token consumption information
🛠️ Troubleshooting
Common Errors
ModelNotOpen Error
Error: Your account has not activated the model doubao-seedance-1-0-lite-i2vSolution:
- Visit Volcengine Model Management
- Find "Seedance" under "Visual Models"
- Enable the video generation service
- Ensure sufficient account balance
Unauthorized Error
Error: UnauthorizedSolution:
- Verify API Key is correct
- Check API Key permissions
- Ensure API Key hasn't expired
📚 Resources
📄 License
MIT License
