Categories

Audio Mix

Mix multiple audio tracks together with adjustable volumes

Click to upload files or drag and drop files here

Maximum file size: 200MB Maximum files: 10
Supported formats: audio/*

Key Facts

Category
Media
Input Types
file, text, select
Output Type
file
Sample Coverage
4
API Ready
Yes

Overview

The Audio Mix tool combines multiple audio tracks into a single file, allowing you to adjust the volume of each track for a balanced mix. It supports various output formats and settings for professional or personal audio projects.

When to Use

  • When blending voice recordings with background music or sound effects.
  • To normalize volume levels across different audio segments before finalizing a mix.
  • For converting mixed audio to formats like MP3, AAC, or WAV for compatibility.

How It Works

  • Upload two to ten audio files in supported formats.
  • Specify volume levels for each track using comma-separated values (e.g., 1.0,0.5,0.8).
  • Select output format, sample rate, and audio channels as needed.
  • Process the mix and download the combined audio file.

Use Cases

Podcast production: mixing host and guest voices with intro music.
Video editing: combining dialogue, sound effects, and background scores.
Music creation: layering instrument tracks for demos or practice mixes.

Examples

1. Balancing Podcast Audio

Podcast Producer
Background
A podcast episode has separate tracks for the host, guest, and background music.
Problem
The background music is too loud, making it hard to hear the voices clearly.
How to Use
Upload the three audio files, set volumes to 1.0 for voices and 0.3 for music, and select MP3 as the output format.
Example Config
Volumes: 1.0,1.0,0.3
Outcome
A balanced mix where voices are prominent and music is subtle, ready for publishing.

2. Creating a Film Soundtrack Mix

Video Editor
Background
Need to combine dialogue, sound effects, and a musical score for a short film scene.
Problem
Ensuring all audio elements are audible without distortion or overlap.
How to Use
Upload the audio tracks, adjust volumes based on priority (e.g., dialogue at 1.0, effects at 0.7, music at 0.5), and export as WAV with 48 kHz sample rate.
Example Config
Output format: WAV, Sample rate: 48 kHz, Channels: Stereo
Outcome
A high-quality audio mix that enhances the film's narrative and is ready for synchronization.

Try with Samples

audio, file

Related Hubs

FAQ

What audio formats can I upload?

The tool accepts common audio formats like MP3, WAV, AAC, and others, as indicated by the file input.

How do I control the volume of each track?

Enter comma-separated volume values in the 'Volumes' field, where 1.0 represents the original volume.

How many audio files can I mix at once?

You can mix between 2 and 10 audio files simultaneously.

What output formats are supported?

You can choose from MP3, AAC, M4A, OGG, Opus, FLAC, and WAV.

Is there a file size limit?

Each audio file must be under 200 MB, as per the file limit.

API Documentation

Request Endpoint

POST /en/api/tools/audio-mix

Request Parameters

Parameter Name Type Required Description
audioFiles file (Upload required) Yes -
volumes text No -
outputFormat select No -
sampleRate select No -
channels select No -

File type parameters need to be uploaded first via POST /upload/audio-mix to get filePath, then pass filePath to the corresponding file field.

Response Format

{
  "filePath": "/public/processing/randomid.ext",
  "fileName": "output.ext",
  "contentType": "application/octet-stream",
  "size": 1024,
  "metadata": {
    "key": "value"
  },
  "error": "Error message (optional)",
  "message": "Notification message (optional)"
}
File: File

AI MCP Documentation

Add this tool to your MCP server configuration:

{
  "mcpServers": {
    "elysiatools-audio-mix": {
      "name": "audio-mix",
      "description": "Mix multiple audio tracks together with adjustable volumes",
      "baseUrl": "https://elysiatools.com/mcp/sse?toolId=audio-mix",
      "command": "",
      "args": [],
      "env": {},
      "isActive": true,
      "type": "sse"
    }
  }
}

You can chain multiple tools, e.g.: `https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`, max 20 tools.

Supports URL file links or Base64 encoding for file parameters.

If you encounter any issues, please contact us at [email protected]