AudioToMidiNow Use the audio-to-MIDI converter

VOICE TO MIDI: WHAT THE FILE CARRIES

Voice to MIDI: Does It Keep Your Lyrics or Your Voice?

A pitch-based voice-to-MIDI converter turns the notes it detects in a sung line into MIDI note events—the melody, not the singer’s voice or lyric words. A Standard MIDI File can carry lyric text as a separate metadata event, but this site’s converter does not generate lyric text.

That distinction answers two different questions: what the file format can store, and what a particular converter writes. AudioToMidiNow makes a note draft from a clear, single-pitch-at-a-time source; it does not make a voice recording, a speech transcript, or a finished karaoke lyric file.

What this converter writes from a vocal line

I inspected this site’s published /script.js on September 28, 2026. The analysis groups stable pitch frames into note objects; its MIDI writer emits note-on and note-off events for those objects, with their pitch, start, duration, and a velocity value derived from the analyzed level. It writes a tempo event and an end-of-track marker too. The inspected writer has no lyric-event output and does not embed the source audio.

This is a code-path inspection, not a vocal accuracy test. The pitches a real recording produces still need to be checked against that recording.

Can a MIDI file contain lyrics?

Yes, a Standard MIDI File may include lyric text in a Lyric Meta Event. That event stores characters for notation or karaoke use; it does not store the singer’s recorded voice. The MIDI Association’s MIDI-file overview explains that the file describes events for a playback sound engine rather than capturing actual sound, and its Lyric Meta Event definition describes lyrics as a separate text event.

So “MIDI can contain lyric text” does not mean “this audio-to-MIDI conversion transcribes lyrics.” In this site’s inspected output path, note events are written; lyric text is not. If you need the words, retain the audio and use a separate lyric or speech transcription workflow. If you need the voice itself, keep the original audio recording.

A small example: notes are not syllables

Imagine a singer holds one pitch and then sings a higher pitch on the next beat. If a pitch detector follows those two notes, the MIDI draft can describe two note events and their timing. It does not label the first event “hello,” reproduce the singer’s consonants, or sound like that person by itself. This is a schematic example, not a test result from a new vocal recording.

A playback instrument supplies the sound you hear when those note events are played. Changing that instrument can change the playback tone without changing the underlying note sequence; the original voice remains in the audio file, not in those note events.

Check which result you actually need

  1. Want the sung tune as editable notes? Try a short, isolated vocal melody and inspect the note events against the recording.
  2. Want the words? MIDI note transcription is not lyric recognition. Keep or separately transcribe the words, then add lyric text in software that supports MIDI lyric events if that is useful.
  3. Want the singer’s sound? Keep the audio recording. A MIDI note file is not a substitute for the voice or its tone.
  4. Want an entire vocal arrangement? This converter follows a single pitch at a time; overlapping harmony or accompaniment is not a separate, reliably identified vocal track.

For a broader explanation of the site’s non-AI pitch-detection path, see the non-AI audio-to-MIDI answer. For general source and cleanup advice, use the MP3-to-MIDI guide; after export, the MIDI file check helps you inspect the note draft.