Questions tagged [lame]

LAME is a high quality MPEG Audio Layer III (MP3) encoder licensed under the LGPL. The name LAME is a recursive acronym for "LAME Ain't an MP3 Encoder". Use this tag for questions on LAME encoder. Also add mp3 tag.

LAME is a high quality MPEG Audio Layer III (MP3) encoder licensed under the LGPL. The name LAME is a recursive acronym for "LAME Ain't an MP3 Encoder". Use this tag for questions on LAME encoder. Also add tag.

More information at

  1. Lame project page - https://lame.sourceforge.io/
  2. Lame wikipedia page - https://en.wikipedia.org/wiki/LAME
281 questions
0
votes
1 answer

Lame running on java: err console log

I'm running lame to convert a WAV sound in MP3, executing as console application: ProcessBuilder pb = new ProcessBuilder(new String[]{"lame", "in.wav", "out.mp3", "-b", "128"}); Process p = pb.start(); try { p.waitFor(); } catch…
Victor
  • 8,309
  • 14
  • 80
  • 129
0
votes
2 answers

Lame encoder command in php shell_exec doesn't work via http server

I have a problem with running lame encoder via shell_exec script in php. And the broke my problem to just this script and noticed that the script works if I run it via php command in terminal, but doesn't work if I open it in a browser. I have…
Tadej Magajna
  • 2,765
  • 1
  • 25
  • 41
-1
votes
1 answer

shell Automator script to re-encode MP3 using LAME and overwriting original files

I'm looking to run through a parent folder that has many sub folders of MP3 files and re-encode at a lower sample and bit rate. I'm doing this in Automator on my Mac using a Run Shell Script workflow and making it a Finder action. Currenlty I can…
awvickers
  • 39
  • 7
-1
votes
1 answer

How do I use an Ubuntu packgage with software running insde docker?

I have a node.JS app with a MYSQL database inside a docker container to make it scale easily but I've ran into an issue. I am using a packgage called node-lame. It uses the lame software in order to edit mp3 files inside my app. The problem is that…
Janez Kranjski
  • 115
  • 2
  • 10
-1
votes
1 answer

Is there a size constraint to consider to make sure that the LAME tag is valid?

I want to manipulate the MP3 Xing/Info/LAME tags. I found some documentation which has various definitions, but it does not really mention that one piece of information: how do you determine that the tag is indeed valid? I'm asking because I created…
Alexis Wilke
  • 19,179
  • 10
  • 84
  • 156
-1
votes
1 answer

lame mp3 change bitrate cpp

I need to change mp3 bitrate, I'm using lame for cpp project under Windows and Linux. I think I need to convert mp3 to wav and then wav to mp3 with desired bitrate. For wav to mp3 I already have the code (using lame) it works. For mp3 to wav there…
user2018761
  • 306
  • 5
  • 14
-1
votes
1 answer

Decode to raw and reencode to mp3

I have the following mp3 file http://peterspace.de/speek.wav now I call this script lame -b 128 --resample 44 speek.wav speek_resampled.mp3 lame --mp3input --resample 44 --decode -t speek_resampled.mp3 lame -r -s 44 speek_resampled.wav…
wutzebaer
  • 14,365
  • 19
  • 99
  • 170
-1
votes
1 answer

mp3 encoder parameters and settings

I tried to encode an mp3 sound in android device so I used lame encoder, it was successful but there are some settings and parameters for encoding like sample rate, bitrate and etc, I searched to find what they are and what choices is possible but I…
-2
votes
1 answer

Converting raw audio into mp3 with Lame

I'm uploading the file in Fire Storage as an Float32Array, but in order to play it, I have to have it converted either before storing it to firebase to mp3, wav or ogg or after i get the download url. I chose the 1 option, using Lame. let mp3Encoder…
codgrl
  • 11
  • 3
-2
votes
1 answer

How to generate mp3 audiobook out of text files in mac

I have a folder with text files, each text file being a chapter of a book I want to turn into a mp3 audiobook. How do I do this on Mac?
Miroslav Kuťák
  • 1,875
  • 1
  • 18
  • 24
-3
votes
2 answers

mp3 and wav files play choppy / too fast after ftp transfer

So I use lame to convert my files and they play fine on the machine. I used to scp them to another server and they would still play fine. I started doing ftp, but un0converted wav files and the converted mp3 both sound very choppy once I transfer…
muhzak
  • 52
  • 6
1 2 3
18
19