Hi,
I have been having some trouble using the dos copy command to join two wav files together. I have searched google and this site on how to do it right and have had some difficulties.
copy /B file1.wav+file2.wav filenew.wav is this the correct method? I have had trouble getting that to work. It tells me the system cannot find the file specified. Sorry I am so bad at using dos, I was hoping someone could tell me how I should input the files correctly. The wavs are called "eng pt 1" and "eng pt 2" and are located in C:\Cowboy Bebop
Thanks for any help.
+ Reply to Thread
Results 1 to 10 of 10
-
-
Can't remember whether the copy command will concatenate like you are trying, but just based on what you have, when you get into dos at the command prompt, do a "CD c:\cowboy bebop" which the prompt should show you are in the right directory; type Dir <enter> and you should see your files listed, then try your copy...there also may be a freeware wav editor that will do the trick without all of the above...did you look in the tools section on the left? https://www.videohelp.com/tools?s=18#18
maybe look at besplit"As you ramble on through life, brother, whatever be your goal - keep your eye upon the doughnut and not upon the hole." -
Thank you kindly Mastersmurfie! Hopefully that will work for me. I am still baffled as to why I can't copy anything in DOS... oh well!
-
#1- DOS often doesn't like spaces.
Use the form:Code:copy "c:\my directory\my file.wav"
Code:copy c:\my directory\my file.wav
(Notice the quotations)
#2- Try "copy /?" for help
It could be that the form needs to be in a different order:
Code:copy file1.wav + file2.wav filenew.wav /b
Code:copy /b file1.wav + file2.wav filenew.wav
HTH,
Scott -
If you insist on dos:
It's been a long time but I think there is a comma before the output file name.
copy /b f1in.xxx+f2in.xxx,fout.xxx
Similar Threads
-
Help joining wav and wmv files with Avisynth
By jjones3535a in forum EditingReplies: 2Last Post: 7th Jan 2009, 17:09 -
Any command line tools for splitting (and/or joining) video files?
By kkol123 in forum EditingReplies: 8Last Post: 4th Dec 2008, 18:35 -
Joining Mpeg2 files from the command line
By roden in forum Newbie / General discussionsReplies: 3Last Post: 9th Oct 2007, 09:02 -
cannot copy 22.5 Gbyte file with Win XP copy command
By maxtrack in forum Newbie / General discussionsReplies: 7Last Post: 2nd Aug 2007, 14:12 -
DOS Copy Concatenated Mpeg Files are Corrupt
By vulcan860 in forum EditingReplies: 9Last Post: 9th Jul 2007, 01:59