View Full Version : merging .wmv?
o770
24th January 2006, 20:57
How do I do it?
Could AviSynth be used for that?
Thanks!
jel
25th January 2006, 06:31
o770,
could you please explain in more detail what you mean by 'merge'?
if you simply want to join two seperate .wmv files, couldnt you use the DOS COPY command in a DOS window to join them into one file:
copy /b file1.wmv+file2.wmv+file3.wmv joined.wmv
i would guess that this would only work if the joined files share same settings.
beyond trying directshowsource + merge with avisynth, i have no idea how to use avisynth to join two .wmv files.
hth
j
o770
25th January 2006, 13:31
You're right, jel. The movie's been cut.
I wouldn't guess the DOS copy command could join them correctly!
Pls help me out with the correct script so I can try both ways. Would any of the following suffice?
AlignedSplice(DirectShowSource("F:\Ced_dv1.wmv", fps=25),DirectShowSource("F:\Ced_dv2.wmv", fps=25),DirectShowSource("F:\Ced_dv3.wmv", fps=25))
Video1 = DirectShowSource("F:\Ced_dv1.wmv", fps=25)
Video2 = DirectShowSource("F:\Ced_dv2.wmv", fps=25)
Video3 = DirectShowSource("F:\Ced_dv3.wmv", fps=25)
video = AlignedSplice(Video1,Video2,Ced_dv3.wmv)
As for the Merge (http://www.avisynth.org/Merge) filter, I understand it could only join two files. Is that right?
Thanks for your time!
killingspree
25th January 2006, 13:41
You're right, jel. The movie's been cut.
I wouldn't guess the DOS copy command could join them correctly!
why not give it a try?? won't take long ;)
Pls help me out with the correct script so I can try both ways. Would any of the following suffice?
again - give it a try
As for the Merge (http://www.avisynth.org/Merge) filter, I understand it could only join two files. Is that right?
merge doesn't join, but merges the luma and chroma values of the two clips into one - something entirely different and not what you want...
kr
steVe
Digga
25th January 2006, 13:44
there's also wmvappend :
http://nic.dnsalias.com/wmvappend.zip
o770
26th January 2006, 15:02
The first script in my previous message worked out greatly. Thanks for the replies!
vBulletin® v3.8.4, Copyright ©2000-2009, Jelsoft Enterprises Ltd.