On 08/07/2009 05:53 AM, [email protected] wrote:
Hi,
is there a tool available via Gentoo portage/emerge, whith which
I can concatenate/join mp3-files without decoding them completely
before or by only decoding the miliseconds before and after the
joining point ?
You can simply cat them together:
cat 1.mp3 2.mp3 > joined.mp3
This will result in joined.mp3 being a bit-perfect concatenation of
1.mp3 and 2.mp3.
You can also do this with *.ogg (Ogg Vorbis audio) files. The file
format of mp3 and ogg and designed to make this possible.