Linux command to concatenate audio files and output them to ogg
Solution 1
Here's my suggestion: Use mplayer and oggenc connected with a named pipe.
Use
mplayer
to decode the audio. It can play back a wide variety of audio (and video) formats, and it also can play multiple files.Use
oggenc
to encode the audio to Ogg Vorbis.To eliminate the need for a temporary file, use a named pipe to transfer the data between encoder and decoder.
Putting that into a script:
#!/bin/sh
# Usage: ./combine2ogg destination.ogg source1.wma source2.wma ...
# Requires: mplayer, oggenc
destination="$1"
shift
readpipe="$destination.tmpr"
writepipe="$destination.tmpw"
mkfifo "$readpipe"
mkfifo "$writepipe"
cat "$writepipe" > "$readpipe" &
mplayer -really-quiet -slave -nolirc -vc null -vo null -ao "pcm:fast:file=$writepipe" "$@" &
oggenc --quiet -o "$destination" "$readpipe"
rm -f "$readpipe"
rm -f "$writepipe"
Explained:
- Take the destination file name from the first command line parameter.
- Remove the first command line parameter, leaving only the source file names.
- Create a name for a pipe for oggenc to read from.
- Create a name for a pipe for mplayer to write to
- Create the pipes.
- Use cat to continuously dump the writepipe to the readpipe (this helps avoid issues where mplayer may terminate, but prevents oggenc from thinking it's done when this happens)
- Decode the audio from the source files using mplayer. Options
-really-quiet -slave -nolirc
are there to disable messages and to make it not read the keyboard or the remote. Options-vc null -vo null
are there to disable video encoding and output. The-ao
option directs it to output the audio in WAV format to the named write pipe. - While the previous command is running, simultaneously encode from the named read pipe into Ogg using oggenc.
- Remove the named pipes.
Stuff to left to improve: Terminating the script early if one of the commands fails (use set -e
), but still properly cleaning up the fifo (trap the necessary signals).
Solution 2
SoX can handle a large number of audio formats, depending on what libraries it's compiled against, and can concatenate files with a simple command line
sox file1.wav file2.mp3 file3.flac outfile.ogg
I believe this only works if the source audio files all have the same number of channels, but I've not tested this.
As far as I know, SoX has zero support for .wma files, so converting at least those files with something like ffmpeg first is probably unavoidable.
ffmpeg -i infile.wma outfile.wav
Solution 3
I would use ffmpeg. To convert wma to ogg vorbis try:
ffmpeg -i sample.wma -acodec vorbis -aq 100 sample.ogg
or mp3:
ffmpeg -i input.wma -acodec libmp3lame output.mp3
you'll need lame installed for the mp3 convert. sudo apt-get install lame libmp3lame0
Cat, then convert doen't seem to work well, although you can find lots of references on the web saying you can do something like cat *.wma | ffmpeg -i - -acodec ...
- this doesn't work on my machine - only the first file gets processed. There is a 'copy' codec for ffmpeg, but doesn't make much difference.
Doing the convert with ffmpeg first, then cat *.ogg > output.ogg worked for me.
Solution 4
To concatenate and transcode audio files, this is the workflow you want to follow:
- Decode input audio files to WAV/PCM data,
- Concatenate WAV,
- Encode WAV to output audio codec file.
Processing in these steps performs the concatenation on the WAV data, which is the easiest to deal with and least lossy. And since you want to transcode anyway, you'll have to decode to WAV somewhere in the process; might as well take advantage of it.
Here are the steps I recommend. We'll use ffmpeg
for decoding, sox
for concatenation, and oggenc
for encoding. You could substitute other tools for any step -- mencoder
and others work fine as a decoder, and any tool that encodes Ogg can be used as the encoder -- although I think you'll be hard-pressed to find a better tool than sox
for the concatenation.
find *.wma -exec ffmpeg -i {} outfile.{}.wav \;
(this runsffmpeg -i infile.wma outfile.infile.wma
on each WMA file in the current directory)sox outfile* all.wav
(noteoutfile
is the same prefix we gave the output files in step 1)oggenc all.wav all.ogg
you probably want some quality settings here, but this will give decent quality defaults. I did not get results I liked withffmpeg
, but you may prefer it, so I've included an example with ffmpeg below.
Note that the sox
command won't work properly unless all the WAV files are the same format -- if some are 22kHz and some are 44.1kHz, for example, you need to identify them to sox
via commandline switches, and specify which format you want the output in. I don't know any commandline tools as capable as sox
for the concatenation step. You could possibly output to a raw PCM format in step 1 and use cat
for step 2, but that would only work if they're in the same format, and you'd need to be extremely specific to both your decoder and encoder as to what format they should expect.
Encoding with ffmpeg: Lots of posts around the 'net complain that ffmpeg's builtin Vorbis encoder isn't very good. If your version is built with libvorbis support, use -acodec libvorbis
instead. Sample commandline:
ffmpeg -i all.wav -acodec libvorbis -ac 2 -ab 128k all.ogg
Solution 5
Won't work for .ogg files, but mp3wrap can concatenate multiple .mp3 files into a single file. So from the command line, you could do something like this
for FILE in *.wma; do ffmpeg -i "$FILE" "`basename "$FILE" .wma`.mp3"; done
mp3wrap bigmp3_MP3WRAP.mp3 *.mp3
This will use ffmpeg to convert all your .wma files into .mp3, and then merge all the .mp3 files into a single file.
Related videos on Youtube

Comments
-
hasen 8 months
What command-line tools do I need in order to concatenate several audio files and output them as one ogg (and/or mp3)?
If you can provide the complete command to concatenate and output to ogg, that would be awesome.
Edit: Input files (in my case, currently) are in
wma
format, but ideally it should be flexible enough to support a wide range of popular formats.Edit2: Just to clarify, I don't want to merge all
wma
s in a certain directory, I just want to concatenate 2 or 3 files into one.Thanks for the proposed solutions, but they all seem to require creating temporary files, if possible at all, I'd like to avoid that.
-
John T over 13 yearswhat input formats do you need support for?
-
Ryan C. Thompson over 13 yearsIn principle, you can tweak all these commands to pipe output between each other. But practically, it's a pain to get it working, and a pain to debug when it fails. There are practical ways to do temp files. My preferred method is to use
mktemp -d /tmp/descriptive_name.XXXXXX
to create a temporary directory with an informative name, then process all my temp files in there, then rm -r the temp dir afterward. -
quack quixote over 13 yearsjust to clarify, anything that works for all wma's in a directory, by specifying
*.wma
in a commandline, will certainly work for a smaller list like1.wma 2.wma 3.wma 4.wma
(leaving out 5.wma, 6.wma, & 7.wma), simply by listing them out like that (instead of using*.wma
).
-
-
hasen over 13 yearsok, what about concatenation?
-
DaveParillo over 13 yearssorry about that! Read my additions.
-
quack quixote over 13 yearsAFAIK sox only works like that if all files have the same channels, sample rate, & bit depth; otherwise you have to specify for all. i didn't realize it would decode encoded formats too, but i guess i haven't been keeping up with it.
-
hasen over 13 yearsThe only "slight" problem is there's a click sound between files
-
quack quixote over 13 years@hasen j: if you want perfect, use Audacity or another wav-editor. if you can track down the source of the click, you could file a bugreport on the offender.