How to convert WAV to MP3 without adding silence at the beginning

6,365

Solution 1

An MP3 stream contains info for generating a set of samples where each sample corresponds to a sample in the original LPCM data (like from the WAV file), but a side-effect of encoding is that there is some extra "junk" added to each end, and a side-effect of decoding is that there is even more junk added to the beginning. The decoder will know how much it adds and will skip those samples, but the encoder-added junk isn't entirely predictable (different encoders add different amounts), so the decoder can't skip those samples unless it is somehow informed of what to skip. Some encoders, like LAME, will add such "gapless playback" or "delay and padding" info (in an encoder-specific format, because there's no standard for it) into the file's VBR Info (VBRI) or Xing header, which is sort-of standard even on CBR files, and which contains other info that is sometimes helpful to the player. This header is actually a frame of silence (usually 1152 samples) with some specially formatted info embedded in between the frame's header and the start of its null audio data. Most decoders/players recognize the frame as special and skip those samples, but some don't, so there's another potential point of failure. so I would look toward making sure you use a compatible encoder/decoder combo to get correct-length, junk-trimmed files as output.

Your second question...did you notice the LAME command-line app's "--decode" option? :) This should solve your problem if you're using LAME as the encoder. The output length should match the input.

Solution 2

I want to add this FAQ and a superuser thread to the discussion:

Share:
6,365
Niklas
Author by

Niklas

Updated on September 18, 2022

Comments

  • Niklas
    Niklas almost 2 years

    Here's what I need to do: Convert a 30.0 sec WAV to a 30.0 MP3.

    I've tried doing this using LAME however no matter what I try LAME always adds a short moment of silence to the output mp3. Using LAME my 30.0 sec WAV becomes a 30.1 sec MP3. That's lame.

    Does anyone know of a way to convert WAV to MP3 using the Windows command line?

    For example by running "program.exe in.wav out.mp3" from CMD?

    It is critical that NO silence is added to the resulting MP3 file. I can't stress that enough.

    • Admin
      Admin about 8 years
      tl;dr it's not possible due to the specifics of the MP3 format itself, which requires the use of frames with a constant length, and which requires a half-frame preamble. You may loop the audio seamlessly through various tricks, yet you simply can't produce a valid, standards-compliant MP3 from arbitrary source without that silence.
  • JohannesM
    JohannesM over 12 years
    Have you tried sox.sourceforge.net?
  • Niklas
    Niklas over 12 years
    I tried to try it but it doesn't come with MP3 support from the available precompiled binaries and I'm not skilled enough to compile it myself. I noticed sox have support for the libraries "libmad" and "libtwolame" for making MP3 (in addition to lame) so I would love to try it. Do you know where I can download a sox version with MP3 support precompiled?
  • JohannesM
    JohannesM over 12 years
    I'm sorry, unfortunately no.