# Strip Audio Metadata

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.

## Run it

- **CLI:** `gizza tool audio-metadata-stripper 'url=https://example.com/input' 'cover_art=remove'`
- **Web:** https://gizza.ai/tools/audio-metadata-stripper/
- **Agents:** machine-readable descriptor (parameters JSON Schema) at https://gizza.ai/tools/audio-metadata-stripper/tool.json

## Inputs

- `cover_art` — Cover art _(field)_
- `audio` — Audio file _(file; accept: audio/*)_

## Output

- Clean audio (audio)

## Query parameters

Open the tool pre-filled and auto-run via URL:

- `cover_art` — Cover art
- `url` — fetch the input file from a public URL (CORS-permitting)

Example: `https://gizza.ai/tools/audio-metadata-stripper/?cover_art=remove&url=https://example.com/input`

---

## Remove Audio Tags Without Re-Encoding

Drop privacy-sensitive tags from MP3, FLAC, OGG, M4A, WAV, and other audio files
directly in your browser. The tool asks ffmpeg to stream-copy the audio, remove
global and stream metadata, drop chapters, and remove embedded cover art by default.
Nothing is uploaded to a server.

## Worked Example

Choose `song.mp3`, leave **Cover art** set to `remove`, and download the cleaned
MP3. The audio frames are copied through unchanged while ID3 tags, comments,
chapter markers, encoder metadata, and the album-art stream are removed. If you
want to keep the picture but remove text tags, set **Cover art** to `keep`.

Command-line equivalent:

`gizza tool audio-metadata-stripper 'url=https://example.com/song.mp3' 'cover_art=remove' --out song-clean.mp3`

## Limits and Edge Cases

- The browser page processes the file locally with ffmpeg.wasm; very large audio
  files may exceed memory limits.
- The tool removes metadata but does not edit or rewrite specific fields. Use a
  tag editor if you want to change artist/album/title values.
- Stream-copy preserves the existing codec/container. If the input container is
  unusual or damaged, ffmpeg may reject it rather than re-encode it.

## FAQ

<details>
<summary>Will this change the sound quality?</summary>

No. The ffmpeg plan uses stream copy (`-c copy`), so the encoded audio packets are
copied into a clean container instead of being decoded and encoded again.

</details>

<details>
<summary>Does it remove album artwork?</summary>

Yes by default. Set **Cover art** to `keep` if you want the embedded picture to
remain while text tags and chapters are stripped.

</details>

<details>
<summary>Which metadata is removed?</summary>

The tool drops container and stream tags such as ID3, Vorbis comments, RIFF/ASF
INFO fields, chapter markers, and ffmpeg muxer metadata where the container allows
it.

</details>

<details>
<summary>Is my audio uploaded?</summary>

No. The standalone page runs ffmpeg in WebAssembly inside your browser tab. The
CLI/chat tool resolves its own provided URL or attachment reference, but the page
does not upload your file to gizza.ai.

</details>

## Related tools

- [Convert an Audio File](https://gizza.ai/tools/audio-convert/): Convert any audio file to MP3, WAV, OGG, FLAC or M4A right in your browser — pick a bitrate for lossy formats. Runs locally, nothing is uploaded, free.
- [Compress an Audio File](https://gizza.ai/tools/audio-compress/): Shrink MP3, WAV, M4A or any audio file right in your browser — pick a target bitrate (96 kbps default) and format. Nothing is uploaded, free.
- [Extract Audio from a Video](https://gizza.ai/tools/extract-audio-from-video/): Pull the audio track out of any video as MP3 or WAV, right in your browser — pick a format and bitrate. Runs locally with ffmpeg, nothing is uploaded, free.
- [Trim an Audio File](https://gizza.ai/tools/trim-audio/): Trim any audio file in your browser — keep or remove a start–end range, add edge fades, save as MP3, WAV, FLAC or M4A. Runs locally, nothing is uploaded.
- [Convert a Voice Note](https://gizza.ai/tools/voice-note-converter/): Convert WhatsApp, Telegram, Signal and other Opus/Ogg voice notes to MP3 or WAV, or encode audio back to Opus voice notes in your browser.
