Categories

Audio Room Simulator

Simulate the acoustics of different room sizes

Applies sophisticated algorithms to simulate the acoustic characteristics of various room sizes, from small closets to large concert halls. Adjusts early reflections, reverb time, and frequency response.

Click to upload file or drag and drop file here

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

Choose a preset room size or use custom settings for full control

0.1 0.5 1

Relative room dimensions. Smaller values = tight spaces, larger values = spacious environments.

Time for reverb to decay by 60dB. Shorter = dry rooms, longer = live rooms.

0.1 0.5 1

Absorption of high frequencies. Lower = bright rooms, higher = damped rooms.

0 0.7 1

Strength of initial room reflections. Higher = more defined space.

API Documentation

Request Endpoint

POST /en/api/tools/audio-room-simulator

Request Parameters

Parameter Name Type Required Description
audioFile file (Upload required) Yes -
preset select No Choose a preset room size or use custom settings for full control
roomSize range No Relative room dimensions. Smaller values = tight spaces, larger values = spacious environments.
decayTime number No Time for reverb to decay by 60dB. Shorter = dry rooms, longer = live rooms.
damping range No Absorption of high frequencies. Lower = bright rooms, higher = damped rooms.
earlyReflections range No Strength of initial room reflections. Higher = more defined space.
outputFormat select No -

File type parameters need to be uploaded first via POST /upload/audio-room-simulator 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-room-simulator": {
      "name": "audio-room-simulator",
      "description": "Simulate the acoustics of different room sizes",
      "baseUrl": "https://elysiatools.com/mcp/sse?toolId=audio-room-simulator",
      "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]