Encoding MP3 and adding VBR or Xing headers (with lame or another method)
Posted
by J. Pablo Fernández
on Stack Overflow
See other posts from Stack Overflow
or by J. Pablo Fernández
Published on 2010-01-05T08:23:58Z
Indexed on
2010/03/31
16:33 UTC
Read the original article
Hit count: 323
I'm writing a program that converts wavs to mp3s, so far, by using lame. It's generating a command line more or less like this:
"c:\Program Files (x86)\Lame for Audacity\lame.exe" --preset fast medium in.wav out.mp3
The problem I'm having is that no VBR or Xing headers are written to the MP3. How can I make lame.exe write those headers? Should I use another program to write those headers (platform is Windows, .Net 3.5)? Should I use another program for MP3 encoding?
© Stack Overflow or respective owner