Audio/video stream recording forums

Attention Visitor:
You may have to register or log in before you can post:
  • Click the register link to sign up.
  • Registered members please fill in the form below and click the "Log in" button.
To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Audio/video stream recording forums > Media file management > Repairing, splitting and merging media files
Register FAQ Members List Calendar Mark Forums Read

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 09-18-2009, 04:34 AM
Stream Recorder
 
Posts: n/a
Default

How to join multiple MP3 files?


You can join MP3 files using freeware MP3DirectCut, Audacity as well as with many other programs.

You can also join multiple mp3 files from a command line using the copy command:
Code:
copy /b *.mp3 c:\new.mp3
The above mentioned command allows to join all MP3 files from the source directory and save them as c:\new.mp3.
The /b parameter ensures that the files are copied in binary format.
The wildcard * in "*.mp3" defines that all mp3s will be joined alphanumerically by the command.
You can add a drive and folder structure to the command if needed. You can also limit the files by adding letters or numbers to the command, e.g. "track*.mp3" to join all mp3 starting with "track".
And you can specify the names of the files in the command:
Code:
copy /b track1.mp3 + space.mp3+ track2.mp3  c:\new.mp3
Make sure that all mp3s have the same bit-rate.

This method won’t work on an iЗod without first stripping ID3 tags from mp3 files. Otherwise depending on the software/firmware reading the file you may or may not have problems playing back the mp3 file.


You can extent this method onto subfolders. Using Notepad create a .bat file with the following content:
Code:
for /f "delims==" %A in ('dir /ad /b') do copy /b "%A\*.mp3" "%A.mp3"
If you launch this batch file in the folder, it will create several MP3 files joining files for every subfolder.

For example, if you have the following folders:
Code:
c:\audiobooks\book1\cd1
c:\audiobooks\book1\cd2
c:\audiobooks\book1\cd3
launching the command from c:\audiobooks\book1 will allow you to create cd1.mp3, cd2.mp3 and cd3.mp3.
cd1.mp3 will be the result of joining *.mp3 files from c:\audiobooks\book1\cd1 .
Reply With Quote
 
Tags: , , , , , , , , ,



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -6. The time now is 04:58 AM.


Powered by All-streaming-media.com; 2006-2011
vB forum hacked with Zoints add-ons