Simple command line audio file concatenation task?
-
I have many folders each of which contains 125 or so brief wav files (1 - 4 seconds) with file names 001.wav, 002.wav ... n.wav. I want to create a long wav file for each folder that has the original files intercut with periods of silence equal to x times the length of the preceding individual source wav file. So, like, 001.wav + silence of length x times the length of 001.wav + 002.wav + silence of length x times the length of 002.wav + and so on. Can this be done elegantly with a command line utility such as sox without getting into shell scripting, about which I am ignorant? http://sox.sourceforge.net/sox.html seems to be able to generate wav files of silence of whatever duration desired, and its sub-utility soxi can get the length of a wav file, but I'm having trouble seeing how to combine the two to spit out what I want. If it cannot be done without shell scripting, any hints as to what the script would look like? Or are there other utilities I should consider?
-
Answer:
Because you want to do math on the duration and such, I think you need a script. This ought to do it if zsh is available:#!/usr/bin/env zshBITRATE=44100X=3for f in *.wav; do length=$(( $X * $(soxi -D $f) )) sf=${f%%.*}s.wav sox -n -r $BITRATE $sf trim 0.0 $lengthdonesox *.wav out.wavI used zsh because you need to do floating point math on the duration and floating point in bash requires using awk or bc which is kind of a pain.
bertran at Ask.Metafilter.Com Visit the source
Other answers
Edit: beaten handily by tonycpsu with a solution that's a bit less theoretical ;) I don't think this would be too hard to do with a basic for loop in a shell script. First, you'd have to generate the silence to go between each file - something like this: for wav in *.wav do length=`soxi -D $wav` * 8 (or whatever) sox -n -r 44100 -c 2 $wav-silence.wav trim 0.0 $length done Then, you'd have to use sox to play everything together (hopefully the nomenclature I specified in the loop above will make stuff like 002-silence.wav which would play after 002.wav, but I'm not sure). sox *.wav output.wav Something tells me this second part won't be that simple. I haven't tested any of this (and am almost certain it won't work exactly as written, but should get you started); just used google to get an idea of what sox and soxi are capable of. http://activearchives.org/wiki/Padding_an_audio_file_with_silence_using_sox particularly might help if what I wrote above does not.
destructive cactus
Related Q & A:
- How to remove path of my command line?Best solution by Super User
- How to delete a particular line from a file?Best solution by Stack Overflow
- How to delete a line from a .txt file in node.js?Best solution by c-sharpcorner.com
- In Visual Studio 2012 or 2013, how can I register a DLL file on Windows 7 64-bit computer using a Custom Action command?Best solution by Stack Overflow
- How to change brightness on Linux desktop through the command line?Best solution by Super User
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.