You are not logged in.
Could joining to mp3's end on end be as simple as
cat track1.mp3 track2.mp3 > tracka.mp3
Would this work? Or am I simply looking at this case to kiss
Thought I would ask because my 2 files are about 40mb so it could take a while?
Last edited by gazj (2009-01-23 22:22:38)
Offline
It is a simple cat, and it should be really, really quick.
Offline
I wish life were so easy for mp4. It works, but the time stamps get all screwy.
Go ahead and mark this thread as [SOLVED] if your done with it.
Offline
wow i'm surprised it's that easy. there's no data in the beginning of the file that needs to be moved?
Offline
Offline
wow i'm surprised it's that easy. there's no data in the beginning of the file that needs to be moved?
Yes, surprisingly easy. Haven't tested it for speed yet, but could be a very good way to compile full albums into 1 file
Archi686 User | Old Screenshots | Old .Configs
Vi veri universum vivus vici.
Offline
wow i'm surprised it's that easy. there's no data in the beginning of the file that needs to be moved?
No, but you do lose the tags and such. This also works for mpeg2 video, but A/V sync issues creep in fairly frequently.
Offline
loudtiger wrote:wow i'm surprised it's that easy. there's no data in the beginning of the file that needs to be moved?
Yes, surprisingly easy. Haven't tested it for speed yet, but could be a very good way to compile full albums into 1 file
It joined my two files in seconds!!
Offline
haxit wrote:loudtiger wrote:wow i'm surprised it's that easy. there's no data in the beginning of the file that needs to be moved?
Yes, surprisingly easy. Haven't tested it for speed yet, but could be a very good way to compile full albums into 1 file
It joined my two files in seconds!!
Woah. I got to try this!
Archi686 User | Old Screenshots | Old .Configs
Vi veri universum vivus vici.
Offline
you should not do this.. the resulting file might play fine, but its broken nonetheless... for obvious reasons:
every mp3 file starts with a header.. using cat to combine them will create a header in the middle of the new file.. I would be very surprised if you wont come into trouble at some time. (mobile devices anyone?)
He hoped and prayed that there wasn't an afterlife. Then he realized there was a contradiction involved here and merely hoped that there wasn't an afterlife.
Douglas Adams
Offline
you should not do this.. the resulting file might play fine, but its broken nonetheless... for obvious reasons:
every mp3 file starts with a header.. using cat to combine them will create a header in the middle of the new file.. I would be very surprised if you wont come into trouble at some time. (mobile devices anyone?)
That's what happens to mp4 files. It concats them fine, but only the first track will play because the time stamp still exists.
Offline
Just do a pacman -S mp3wrap, and use the right tool for the job.
ZzZz...
Offline
mp3splt(notice the missing 'i') is a perfect tool for those tasks . Just read the manual .
extra/mp3splt 2.1c-2 [0.04 MB]
Comandline tool for splitting mp3 and ogg files without decoding
English is not my native language .
Offline
With a simple cat you might have tags in the middle of your mp3 ...
try
strings mon.mp3
and you will see the tags.
so I think that mp3splt or mp3wrap are better solution.
Offline