Welcome Guest ( Log In | Register )

Tags
This content has not been tagged yet
> Tech Talk Rules
 
1. If you need help please use the Requests & Help forum to post your queries.

2. This forum is strictly for people wanting to share tech facts and tips.

3. HolyPlanets management makes no guarantees of the information posted in this forum by members.




   Digg this topic · Save to del.icio.us · Slashdot It · Post to Technorati · Post to Furl · Submit to Reddit · Share on Facebook · Fark It · Googlize This Post · Add to ma.gnolia · Tag to Wink · Add to MyWeb · Add to Netscape
Reply to this topicStart new topic

Join Mp3 From The Command Line


dino
post Nov 19 2008, 02:46 PM
Post #1
  


One Man Show
Group Icon

Group: Devils
Posts: 2143
Joined: 29-March 05
From: behind u
Member No.: 26114
Mood:restless

Pakistan




 
 
Lots of tools can join multiple mp3 files into one mp3 file that contains all the bits of the original files. Mp3 files but also files with the ogg extension can be concatenated easily because of the way the data is structured. The following command line argument will not work with many other file types like those created by Microsoft Office.

Only one line of code is needed to join multiple mp3 files:


QUOTE
Windows:

copy /b *.mp3 c:\new.mp3


Linux & Mac:

cat track1.mp3 track2.mp3 > compilation.mp3



That’s all there is needed. The /b parameter ensures that the files are copied in binary format. *.mp3 defines the source directory of the files. You can easily add a drive and folder structure in front. The wildcard * defines that all mp3 will be joined alphanumerically by the command. It is possible to limit the files by adding letters or numbers to the command, e.g. m*.mp3 to join all mp3 starting with the letter m.

The last part c:\mp3 defines the target directory for the newly created file as well as its name. A possibility to join files with different filenames is also available. Simply use the command copy /b file1.mp3 + aaa.mp3 + r3f.mp3 c:\new.mp3 for this. You may use wildcards as well for the process.
Go to the top of the page
 
+Quote Post
 
Wubber
post Nov 19 2008, 02:46 PM
Post #
  


I love Holyplanets!








 
 




Go to the top of the page
 
Quote Post
 
!!c001!!
post Nov 19 2008, 09:23 PM
Post #2
  


Born Without Brain
Group Icon

Group: Forum Staff
Posts: 1482
Joined: 26-November 06
From: Coolest Place In World
Member No.: 79316
Mood:confused

India


~HP tEcH DoC~


 
 
Interesting. I'll try this. This is the way actually the join command of HJsplit works. If you don't have HJsplit and multiple files with .001,.002 extension then you can use this command.
Go to the top of the page
 
+Quote Post
 

Reply to this topicStart new topic


1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:






Moderation Panel
 
 
Lo-Fi Version Time is now: 6th January 2009 - 01:56 PM