Package Information
Released: 7/30/2025
Downloads: 1 weekly / 5 monthly
Latest Version: 0.1.0
Author: briva
Available Nodes
Documentation
n8n-nodes-argil
This is an n8n community node. It lets you use Argil AI in your n8n workflows.
Argil is a platform for creating engaging AI-generated videos.
n8n is a fair-code licensed workflow automation platform.
Installation
Follow the installation guide in the n8n community nodes documentation.
Quick Installation
- Go to Settings > Community Nodes
- Select Install
- Enter
n8n-nodes-argilin Enter npm package name - Agree to the risks of using community nodes
- Select Install
Manual Installation
To install the node manually:
npm install n8n-nodes-argil
Operations
Video Resource
- Create: Create a new engaging video with AI avatars
Credentials
You'll need an Argil API key to use this node. You can get one by:
- Creating an account at Argil
- Going to your account settings
- Generating an API key
Usage
Create a Video
- Add the Argil node to your workflow
- Select the Create operation
- Choose an avatar from the dropdown
- Add your transcript lines (write short to medium sentences for better results)
- Configure optional settings:
- Video Name: Name for your video
- Aspect Ratio: 16:9 (Landscape) or 9:16 (Portrait)
- Auto Captions: Enable automatic subtitles
- Auto B-rolls: Add dynamic B-roll videos
- Background Music: Select from available music assets
Example Workflow
Here's a simple example of creating a video:
{
"nodes": [
{
"parameters": {
"resource": "video",
"operation": "create",
"avatarId": "your-avatar-id",
"transcript": {
"lines": [
{
"content": "Welcome to our product demo!"
},
{
"content": "Today we'll show you how to use our amazing features."
}
]
},
"name": "Product Demo Video",
"additionalOptions": {
"aspectRatio": "16:9",
"subtitles": true,
"autoBrolls": true,
"autoBrollsIntensity": "MEDIUM"
}
},
"name": "Argil",
"type": "n8n-nodes-argil.argil",
"position": [250, 300]
}
]
}
Resources
Development
To develop and test this node locally:
# Clone the repository
git clone https://github.com/your-username/n8n-nodes-argil.git
# Install dependencies
npm install
# Build the node
npm run build
# Link the node to n8n
npm link
# In your n8n installation folder
npm link n8n-nodes-argil
# Start n8n
n8n start
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.