n8n Node Operations
The AudioSpliter n8n node supports the following operations.
Split Operations
Create Split Job
Create a new audio split job.
Parameters:
- Source URL (required) -- URL of the audio file
- Split Mode -- Duration or File Size
- Segment Duration -- Length in seconds (for duration mode)
- Max File Size -- Maximum bytes per segment (for file size mode)
- Output Format -- mp3, wav, flac, ogg, aac
- Webhook URL -- Optional callback URL
List Jobs
Retrieve a paginated list of jobs.
Parameters:
- Status Filter -- All, Queued, Processing, Completed, Failed
- Limit -- Number of results (1-100)
Get Job
Get details for a specific job.
Parameters:
- Job ID (required) -- The job identifier
Delete Job
Delete a job and its segments.
Parameters:
- Job ID (required) -- The job identifier
Example: Create and Wait
This operation pattern creates a job and waits for completion:
- AudioSpliter node -- Create Split Job
- Wait node -- Pause for 30 seconds
- AudioSpliter node -- Get Job (check status)
- IF node -- Check if
status === 'completed'- True: Continue to download
- False: Loop back to Wait
Alternatively, use the Trigger node for an event-driven approach.
Output Data
All operations return the raw API response as JSON, which you can reference in subsequent nodes using expressions like {{ $json.id }} or {{ $json.segments[0].downloadUrl }}.