{
  "slug": "audio-metadata-stripper",
  "name": "gizza-ai/audio-metadata-stripper",
  "version": "0.1.0",
  "title": "Strip Audio Metadata Online — gizza.ai",
  "description": "Remove ID3 tags, comments, chapters, and cover art from MP3, FLAC, OGG, M4A, WAV, and other audio files in your browser. Stream-copy audio, no upload.",
  "tags": [
    "audio",
    "metadata",
    "id3",
    "privacy",
    "cover art",
    "tags",
    "mp3",
    "flac"
  ],
  "category": "audio",
  "urls": {
    "page": "https://gizza.ai/tools/audio-metadata-stripper/",
    "markdown": "https://gizza.ai/tools/audio-metadata-stripper/index.md",
    "descriptor": "https://gizza.ai/tools/audio-metadata-stripper/tool.json",
    "deep_link_example": "https://gizza.ai/tools/audio-metadata-stripper/?cover_art=remove&url=https://example.com/input"
  },
  "cli": "gizza tool audio-metadata-stripper 'url=https://example.com/input' 'cover_art=remove'",
  "tool": {
    "description": "Remove every embedded tag from an audio file — ID3v1/ID3v2, Vorbis comments, RIFF/ASF INFO, chapters and (by default) the cover-art image — without re-encoding, so the audio stays bit-identical and the container/codec are preserved. Provide either url (HTTP/HTTPS) or ref (id from a prior tool call). cover_art defaults to remove; set it to keep to retain the embedded picture while still stripping all text tags. Works on mp3, wav, ogg, flac and m4a.",
    "parameters": {
      "additionalProperties": false,
      "oneOf": [
        {
          "required": [
            "url"
          ]
        },
        {
          "required": [
            "ref"
          ]
        }
      ],
      "properties": {
        "cover_art": {
          "default": "remove",
          "description": "What to do with the embedded cover-art image: remove (default) drops it along with every text tag; keep preserves the picture while still stripping all text tags and chapters.",
          "enum": [
            "remove",
            "keep"
          ],
          "type": "string"
        },
        "ref": {
          "description": "Reference id from a prior tool call. Use either url or ref.",
          "type": "string"
        },
        "url": {
          "description": "Audio URL (HTTP/HTTPS). Use either url or ref.",
          "type": "string"
        }
      },
      "type": "object"
    }
  }
}