Categories

Audio Metadata Editor

Edit or add metadata tags (artist, album, title, etc.)

Writes common tags (artist, album, title, genre, year, track, comment) into a new file without re-encoding audio. Keeps streams intact while updating only metadata.

Click to upload file or drag and drop file here

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

Key Facts

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

Overview

The Audio Metadata Editor allows you to edit or add metadata tags such as artist, album, title, genre, year, track number, and comments to audio files. It writes these tags into a new file without re-encoding the audio, preserving the original sound quality while updating only the metadata.

When to Use

  • When you need to correct inaccurate or missing metadata tags in audio files for better organization.
  • To add essential information like album or genre before archiving or sharing your music collection.
  • When preparing audio files for upload to platforms that rely on metadata for sorting and discovery.

How It Works

  • Upload your audio file in a supported format, such as MP3, WAV, or FLAC.
  • Enter the desired metadata tags, including artist, album, title, genre, year, track number, and comment.
  • Select the output format from options like MP3, AAC, M4A, OGG, Opus, FLAC, or WAV.
  • Download the new file with updated metadata; the audio stream remains unchanged.

Use Cases

Correcting misspelled artist names in downloaded songs to ensure accurate library sorting.
Adding album and year metadata to live recordings for consistent categorization.
Standardizing genre tags across a personal music collection to improve playlist creation.

Examples

1. Correcting Artist Name in a Song

Music Enthusiast
Background
A user has an MP3 file where the artist tag is incorrectly set as 'Unknown Artist' instead of the actual artist name.
Problem
The incorrect metadata causes the song to appear unorganized in music players and libraries.
How to Use
Upload the MP3 file, enter the correct artist name in the Artist field, select MP3 as the output format, and download the updated file.
Outcome
The new MP3 file has the accurate artist metadata, and the audio quality remains unchanged.

2. Adding Album Information to a Track

Background
A podcast episode audio file is missing album metadata, which is needed for proper grouping in podcast applications.
Problem
Without album info, the episode is not categorized with other episodes from the same series, leading to disorganization.
How to Use
Upload the audio file, set the Album field to the podcast series name, choose M4A as the output format, and download the file.
Outcome
The audio file now includes album metadata, enhancing organization in media players and apps.

Try with Samples

audio, file

Related Hubs

FAQ

What audio file formats can I upload?

You can upload audio files in any common format, as the tool processes metadata without re-encoding the audio.

Does editing metadata affect the audio quality?

No, the tool only updates metadata tags and does not re-encode the audio, preserving the original quality.

Can I edit multiple tags at once?

Yes, you can fill in multiple fields like artist, album, title, and others in a single operation.

What output formats are supported?

Supported output formats include MP3, AAC, M4A, OGG Vorbis, Opus, FLAC, and WAV.

Is there a file size limit?

Yes, the maximum file size is 200 MB per upload.

API Documentation

Request Endpoint

POST /en/api/tools/audio-metadata-editor

Request Parameters

Parameter Name Type Required Description
audioFile file (Upload required) Yes -
artist text No -
album text No -
title text No -
genre text No -
year text No -
track text No -
comment text No -
outputFormat select No -

File type parameters need to be uploaded first via POST /upload/audio-metadata-editor 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-metadata-editor": {
      "name": "audio-metadata-editor",
      "description": "Edit or add metadata tags (artist, album, title, etc.)",
      "baseUrl": "https://elysiatools.com/mcp/sse?toolId=audio-metadata-editor",
      "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]