{
  "slug": "audio-volume-adjust",
  "name": "gizza-ai/audio-volume-adjust",
  "version": "0.1.0",
  "title": "Change Audio Volume Online — gizza.ai",
  "description": "Boost or cut any audio file's volume right in your browser — by decibels or a factor, with a clipping-safe peak limiter. Nothing is uploaded, free.",
  "tags": [
    "audio",
    "volume",
    "boost",
    "louder",
    "gain",
    "db",
    "quieter",
    "amplify"
  ],
  "category": "audio",
  "urls": {
    "page": "https://gizza.ai/tools/audio-volume-adjust/",
    "markdown": "https://gizza.ai/tools/audio-volume-adjust/index.md",
    "descriptor": "https://gizza.ai/tools/audio-volume-adjust/tool.json",
    "deep_link_example": "https://gizza.ai/tools/audio-volume-adjust/?url=https://example.com/input&amount=6&unit=db&limiter=true&format=mp3"
  },
  "cli": "gizza tool audio-volume-adjust 'url=https://example.com/input' 'amount=6' 'unit=db' 'limiter=true' 'format=mp3'",
  "tool": {
    "description": "Increase or decrease an audio file's volume. Provide either url (HTTP/HTTPS) or ref (id from a prior tool call). amount is in decibels by default (6 boosts, -6 cuts; range ±60) or a linear factor with unit=factor (2 doubles, 0.5 halves; range (0,16]). A peak limiter (on by default) caps output at 0 dBFS so boosts don't clip. Output is re-encoded to mp3 (192 kbps), wav, ogg, flac or m4a.",
    "parameters": {
      "additionalProperties": false,
      "oneOf": [
        {
          "required": [
            "url"
          ]
        },
        {
          "required": [
            "ref"
          ]
        }
      ],
      "properties": {
        "amount": {
          "description": "How much to change the volume: with unit=db, decibels (6 boosts, -6 cuts, 0 not allowed); with unit=factor, a multiplier in (0, 16] (2 doubles, 0.5 halves).",
          "maximum": 60,
          "minimum": -60,
          "type": "number"
        },
        "format": {
          "default": "mp3",
          "description": "Output audio format. Default mp3 (192 kbps).",
          "enum": [
            "mp3",
            "wav",
            "ogg",
            "flac",
            "m4a"
          ],
          "type": "string"
        },
        "limiter": {
          "default": true,
          "description": "Cap peaks at 0 dBFS (alimiter) so boosts don't clip. Default on; disable for exact linear gain.",
          "type": "boolean"
        },
        "ref": {
          "description": "Reference id from a prior tool call. Use either url or ref.",
          "type": "string"
        },
        "unit": {
          "default": "db",
          "description": "How amount is interpreted: decibels (default) or a linear factor.",
          "enum": [
            "db",
            "factor"
          ],
          "type": "string"
        },
        "url": {
          "description": "Audio URL (HTTP/HTTPS). Use either url or ref.",
          "type": "string"
        }
      },
      "required": [
        "amount"
      ],
      "type": "object"
    }
  }
}