Tagged Questions
3
votes
4answers
5k views
How do I convert a wav file to mp3 format using sox?
When I run sox directly from the command line as ;
sox -r 8000 -c 1 <wavfilename> <mp3filename>
I get the following error message:
sox: Unknown output file format for
'747a.mp3': ...
2
votes
2answers
680 views
Get length of .wav from sox output
I need to get the length of a .wav file.
Using:
sox output.wav -n stat
Gives:
Samples read: 449718
Length (seconds): 28.107375
Scaled by: 2147483647.0
Maximum amplitude: ...
0
votes
0answers
113 views
Mixing a FLV audio stream with a WAV background track, and converting to MP3 with SoX and FFmpeg
I'm building a Flash-based recording application for a contracted web site. It streams the recorded voice (via SWF) to a Red5 server, then uses a combination of FFmpeg and SoX to compile the vocal ...
0
votes
2answers
392 views
Converting from 16-bit WAV to GSM using SOX
I'm currently working on some telephony integration with Asterisk and a PHP web interface. I want to give the user an option to upload their own custom greeting in a wav file, and then once it's on ...
0
votes
0answers
27 views
Changing tempos with sox
I have a .wav file that I want to incrementally change the tempo of from 60bpm to 100bpm. For example 60,61,62,63,...100bpm. I know how to use the tempo command in sox, but what I am not sure of is ...