Any coders here? I have a dev question...

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Pornwolf
    Drunk and Unruly
    • Jan 2002
    • 22712

    #1

    Any coders here? I have a dev question...

    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?
    I've trusted my sites to them for over a decade...

    Webair, bitches.
  • borked
    Totally Borked
    • Feb 2005
    • 6284

    #2
    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

    Working...