I tried to copy three wma files through the method. file new.wma was created with the size as big as the three copied files. however, the message appeared "one file copied. when I played the file, only one file was played although the size of the file looked big. ----- Original Message ----- From: ruchir falodiya To: accessindia Cc: [email protected] Sent: Sunday, February 15, 2009 4:29 PM Subject: Re: [AI] concatenate 2 files using command promt.
greetings to all. recently, amar, an accessindian wanted to merge 2 mp3 files into 1 large file and since most of us deals with audio books and other mp3 stuff's, i thought this could be helpful to other accessindians too, so here is the trick to do that. Just follow these steps : 1. Put all files on any folder ( for example, test1 in c drive.) 2. Move to source directory using cd command ( open command promt by going to run and typing cmd. then type c: to go to root drive. then type cd test1 to change the current working directory to c:\test1.) 3. type copy /b *.mp3 c:\new.mp3 4. Enter and you will find newly concatenated .mp3 file on c drive with filename new.mp3 The /b modifier is the trick, with the asterisk playing a wild card to catch all binary files in a directory. To choose individual files, list the file names separated by the + symbol. Simply use the command copy /b file1.mp3 + file5.mp3 + file8.mp3 c:\new.mp3 for this for selecting from large dump of mp3. please note, that the output file can't be separated to individual mp3 from which it has been made. feel free to play around with this command because your imaginations is your boundaries and this doesn't changes anything in your source/original files. with warm regards, ruchir. -- As long as forever, I will stay by your side, I'll be your companion, Your friend and your guide!!! www.ruchir89.wordpress.com To unsubscribe send a message to [email protected] with the subject unsubscribe. To change your subscription to digest mode or make any other changes, please visit the list home page at http://accessindia.org.in/mailman/listinfo/accessindia_accessindia.org.in To unsubscribe send a message to [email protected] with the subject unsubscribe. To change your subscription to digest mode or make any other changes, please visit the list home page at http://accessindia.org.in/mailman/listinfo/accessindia_accessindia.org.in
