Here's the scenario, I'm trying to have an on the fly mp3 to .wav converter built into a sever based app. What's a good paid or open source converter that can be plugged into it?
Any coders here? I have a dev question...
Collapse
X
-
I imagine you're talking about Linux environments??
MP32WAV
#!/bin/bash
# mp32wav
mpg123 -b 10000 -s "$1" | sox -t raw -r 44100 -s -w -c2 - "$2"
And the use is:
mp32wav file.mp3 file.wav
For coding work - hit me up on andy // borkedcoder // com
(consider figuring out the email as test #1)
All models are wrong, but some are useful. George E.P. Box. p202

Comment