Tagged Questions

SoX (Sound eXchange) is a computer program for audio manipulation

learn more… | top users | synonyms

3
votes
1answer
120 views

SoX running slow using a ProcessBuilder

I am running SoX using using a ProcessBuilder in java that trims WAV files into 30 second long WAV files. SoX is running because I can get the first 30 seconds of the file successfully trimmed and ...
3
votes
1answer
661 views

Generate a waveform image from an audio file

Building a python application that converts raw audio files into wave using sox on a linux system. I want it to be able to generate an image (PNG or Jpeg) of the audio waveform pattern but I am unable ...
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
63 views

What alternative syntaxes are there for expressing XML?

What human-readable and human-editable syntaxes exist that can be automatically converted to and from XML with no loss of expressivity. In other words, an updated version of this list. The three ...
2
votes
1answer
209 views

A Commercial MP3 Encoder/Decoder to use with Sox/Audacity

In recent days i've been looking into a way to mix together MP3 files at the point of upload to a website, which is hosted on a linux machine. So far, thanks to the community, i've learned that using ...
2
votes
1answer
222 views

Is there a best practice for concatenating MP3 Files, adjusting sample rates to match, while preserving original files?

Does anyone know if there is a "best practice" to concatenate mp3 files to create new files, while preserving the original files? I am working on a CentOS Linux machine, in command line. I will ...
2
votes
3answers
320 views

Any idea why I can execute command from Command Line but not From PHP exec()

OK, I have done some creative searches and am kind of hitting a road block. I am trying to use the linux program "sox." I am trying to call it from my PHP script. The script DOES work if I use ...
2
votes
2answers
674 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: ...
2
votes
1answer
1k views

sox FAIL util: Unable to load MAD decoder library (libmad) function “mad_stream_buffer”

I compiled libmad for sox. When I try to read an mp3 I get this message: sox FAIL util: Unable to load MAD decoder library (libmad) function "mad_stream_buffer". Did I compile the project ...
2
votes
2answers
109 views

How do I De-Ess a sound file with SoX?

I am using SoX to create slow but pitch corrected audio files. The resulting files sound pretty good, but often have a very hard "S" sound that I would like to filter out. Many desktop programs ...
2
votes
2answers
552 views

Does SOX restrict access to QA environments or just production?

Our dev team has 4 environments: Dev, Test, QA and Production and changes progress in that order across the environments. Our DBA has given "SOX" as the reason for denying team leads, developers and ...
1
vote
2answers
27 views

check duration of audio files on the command-line

I need to check the duration of a group of audio files. Is there a simple way to do this on the unix command-line? > duration * I have the amazing SoX app which has an option called stats that ...
1
vote
1answer
45 views

alternate two wav files into 1 single one using sox and bash

I'm using linux and bash I have two files filea.wav and fileb.wav which are both 1 second long. I would like to join 4000 of them so I will get 1 large file that is an hour long that has the two files ...
1
vote
1answer
58 views

Is libSoX thread-safe?

I am using libSox, the audio processing library in a multi-threaded application. Several threads may call the libsox functions simultaneously. I was wondering if libsox was thread-safe since I am ...
1
vote
1answer
254 views

Reducing/removing clipping in SoX when converting the sample rate

I'm using SoX to trim a set of wav files into 16kHz, 16bit, mono channel wav files (which will be subsets of one of the initial wav files). Most of the source wav files are already set to this ...
1
vote
1answer
58 views

How to process mp3s in a commercial application without paying outrageous license fees

I have an application that uses a version of sox compiled with lame for mp3 support. The application won't generate enough revenue to justify the $15000 a year minimum license fee for mp3 processing. ...
1
vote
2answers
474 views

Sox : merge two audio files with a pad

I'm using the sox tool and I would like to merge two audio files, let's say long.ogg and short.ogg to output a file output.ogg. This is very easy using $ sox -m long.ogg short.ogg output.ogg. Thing ...
1
vote
4answers
212 views

Can I use Git for source control and still be SOX compliant?

I'd like to consider migrating from Subversion to Git for my source control but my company is bound by SOX compliance. Has anyone successfully implemented Git in a SOX compliant environment and if so ...
1
vote
2answers
728 views

Mix Audio tracks with offset in SOX

From ASP.Net, I am using FFMPEG to convert flv files on a Flash Media Server to wavs that I need to mix into a single MP3 file. I originally attempted this entirely with FFMPEG but eventually gave up ...
1
vote
1answer
263 views

sox file.wav -r 10 file.dat

What does a sample of a audio file contain ? When I run the command "sox file.wav -r 10 file.dat", the output is something like ; Sample Rate 10 ; Channels 2 0 0.00085449219 ...
1
vote
3answers
183 views

ASP.NET deployment and regulatory compliance (SOX, et al)

I have a customer who is being dogged pretty hard by SOX auditors regarding the deployment practices of our ASP.NET applications. Care is taken to be sure to use appropriate file- and folder-level ...
0
votes
1answer
12 views

crossfading a group of audio files with sox splice

I am able to join and crossfade two audio files using SoX, like so: sox file1.wav file2.wav outfile.wav splice -q `soxi -D file1.wav`,0.5 where the soxi substitution is fetching the duration of ...
0
votes
0answers
18 views

SoX mixer effect

I reading SoX documentation here: http://sox.sourceforge.net/Docs/Documentation I need to mix several audio files, but I have not found an example in the documentation how to do it with API. Can you ...
0
votes
2answers
56 views

Basics of compiling binary with no dependencies using gnu toolchain

I'm trying to make an audio file I create slow down using SoX, and although I can easily compile the source files on the linux machine I use regularly, I need to transfer the binary to another linux ...
0
votes
0answers
111 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
0answers
48 views

Using sox to mix files with attenuation

I'm trying to use sox to mix audio files. I have a background music track which should play continuously, but reduce in volume when the other files come in. For example: Play background music. At 4 ...
0
votes
0answers
76 views

linking to libsox.a in xcode 3.2.6

I have successfully compiled sox for i386 (simulator). It produced libsox.a which I am trying to use in an xcode project. I simply add the libsox.a by doing Add->Existing Files. libsox.a then appears ...
0
votes
1answer
184 views

Using Java's ProcessBuilder to run SoX

I am running SoX from java using a ProcessBuilder to trim a wav file. I am sure I should be able to run SoX, cause in the other JUnit tests, I manage to successfully run the following commands: ...
0
votes
2answers
389 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
1answer
246 views

Sox and FFMPEG decode

Hello Please help with sox. My idea is to decode the audio portion through ffmpeg and then process it through the sox. Ie to decode only use FFMPEG. Here is what I have left: av_register_all(); ...
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 ...
0
votes
1answer
111 views

Running multiple NSTasks consecutively

I need to run multiple commands in sequence using NSTask and was wondering what would be a good way to tell if a task has finished so I can continue on to the next command. I'm using "sox" (which I am ...
0
votes
0answers
54 views

Sox and ladspa, effects

Do I need to effect in sox ladspa? Maybe some kind of effects work without ladspa? thanks in advance
0
votes
1answer
226 views

SOX Recording on OSX not Working?

I'm running into issues with sox (http://sox.sourceforge.net/) failing to record on OSX. I've tried hand compiling as well as installed via homebrew and get the same results. root# sudo ./sox ...
0
votes
1answer
217 views

sox fails to split files

According to the manpage (where it had been listed as an example) the following command should split input file to multiple audio files at points with 2 seconds of silence. Instead of that it creates ...
0
votes
0answers
219 views

SoX not mixing audio files

Hello everyone and sorry for my poor english in advance, i have SoX installed on server (CentOS) with mp3 support by host admin and i've got a PHP script calling the system function like this : ...
0
votes
3answers
279 views

building libsox for iOS question

I want to build libsox for iphone device but I havent got any luck doing so. I am just wondering if it is even possible to build this library for iphone....
0
votes
3answers
264 views

Do audio files converted to raw retain previous sampling rate?

OK. I'm trying to learn about audio and compression. I have a fundamental question that I haven't found the answer to yet scouring the internet. I know that there are self describing formats with ...
0
votes
1answer
426 views

linux conversion of caf file with iLBC codec 2 wav

Used http://www.ilbcfreeware.org/software.html - I only get static from the files that ilbc_test.exe creates. Does anyone have other suggestions? sox doesn't seem to be able to convert it as far as I ...
0
votes
2answers
107 views

SoX vs OpenAL performance/overhead

Both has bindings for C, both can play various formats. Which one is more superior? in terms of simplicity, performance, overhead and memory footprint. Also which one is better at handling multiple ...
0
votes
1answer
358 views

How do I get an audio file sample rate using sox?

I would like to get the sample-rate of a given audio file using sox. Couldn't find the commandline to do that.
0
votes
1answer
131 views

SOX LAME and php fire done signal?

Hi I am using SOX in the following manner with php: $thesong = 67; $theString = "1.wav 2.wav 2.wav 1.wav"; exec("./sox $theString $thesong.wav"); It seems to be be working very good, ...
0
votes
2answers
102 views

Sending multiple mp3's to SOX

Hi I am am wanting to send many different mp3's like an array to SOX for example sox 1.mp3 2.mp3 N.mp3 out.mp3 sox num1.mp3 num2.mp3 numN.mp3 out2.mp3 sox n1.mp3 n2.mp3 nN.mp3 out3.mp3 How could I ...
0
votes
2answers
357 views

Get sound level from device while recording in C++

I want to get sound level, so I can display it in my SDL application (the platform is Linux) when recording sound. How can I do that? I use FMOD API in my app, but for recording, I'm using SoX ...
0
votes
0answers
60 views

Sarbanes-Oxley compliant [closed]

How can I tell if my program falls under the rules of Sarbanes Oxley? Is there a website or links someone can give me?
0
votes
0answers
204 views

Using the default audio device with SoX from source

While file to file effect chains are working fine, I'm having difficulty using the default audio device when compiling SoX from source. For example, if I run the example3 included in the source code ...
0
votes
2answers
530 views

Audio conversion of CAF file

I am recording audio on the iPhone to a CAF file with kAudioFormatiLBC, the recording works fine. I want to be able to take a sample and also get it to convert to other formats after I have uploaded ...
0
votes
2answers
502 views

PHP exec - missing output

I am currently trying to get SoX working through PHP. It all works so far, but I don't get the output back. I've already read that one might route stderr also to the output with "2>&1" .. the ...
0
votes
2answers
466 views

How to I configure sox to work on mp4?

I am using ubuntu 8.10. I wanted to know what I need to do to get SOX to work on MP4 files.
0
votes
2answers
269 views

Runtime error about sox library in cocoa application

I am trying to sox library into my project and installed library using ./configure, make and make install and linked to the libsox.dylib into my project. I am not getting compiler error but getting ...

1 2