Tagged Questions

3
votes
1answer
682 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 ...
2
votes
1answer
233 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
2answers
116 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 ...
1
vote
2answers
40 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
305 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
2answers
540 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
2answers
812 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
277 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 ...
0
votes
1answer
24 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
33 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
1answer
274 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
1answer
244 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
3answers
299 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
454 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
110 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
409 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
2answers
365 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
216 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
1answer
118 views

How can I make sure sox doesn't perform automatic dithering without knowing the version?

I'm using sox to resample audio before introducing it to our speech detection system, but I've hit a snag with version 14.3 of sox adding automatic dithering by default to the resampling operation, ...
-2
votes
0answers
17 views

command-line utility to record from microphone [migrated]

I am looking for command-line utility that monitors the microphone, and if you start to speak, writes the file. Recording period should be adjusted. Solution is: sox -t alsa default recording.wav ...