"Dick Baker" <(E-Mail Removed)> wrote in message
news:Xns9A4BC718EB40Fkx97@140.99.99.130...
>I didn't make this clear in first note: I realize that wmvappend.exe
>is not
> built into WinXP -- I tracked it down and downloaded it. When run,
> it
> gives the syntax hits described above. But does that mean
>
> wmvappend -1-3.wmv -1.wmv -2.wmv -3.wmv
> or
> wmvappend -o 1-3wmv -i1 1.wmv -i2 2.wmv -i3 3.wmv
> or
> some other variation (the two above don't work).
> --
> --------------------------------------------
> Dick Baker
> (contact via http://goon.org/newcontact.php)
The program combines only 2 files on each run of the program. Stop
trying to combine all 3 files. You will have to combine 2 at a time,
then use that combined file as an input and add a 3rd file, use that
output combined file and add a 4th file, and so on. If you have more
than 2 files to combine, you have to combine the first 2, and then
combine the output of the prior combine with 1 additional file (so you
keeping adding 1 file at a time).
wmvappend -o tmp1.wmv -i1 1.wmv -i2 2.wmv
wmvappend -o tmp2.wmv -i1 tmp1.wmv -i2 3.wmv
wmvappend -o tmp3.wmv -i1 tmp2.wmv -i2 4.wmv
wmvappend -o tmp4.wmv -i1 tmp3.wmv -i2 5.wmv
wmvappend -o tmp5.wmv -i1 tmp4.wmv -i2 6.wmv
wmvappend -o tmp6.wmv -i1 tmp5.wmv -i2 7.wmv
....
You could reduce this to 2 temp files by toggling between them:
wmvappend -o tmp1.wmv -i1 1.wmv -i2 2.wmv
wmvappend -o tmp2.wmv -i1 tmp1.wmv -i2 3.wmv
wmvappend -o tmp1.wmv -i1 tmp2.wmv -i2 4.wmv
wmvappend -o tmp2.wmv -i1 tmp1.wmv -i2 5.wmv
wmvappend -o tmp1.wmv -i1 tmp2.wmv -i2 6.wmv
wmvappend -o tmp2.wmv -i1 tmp1.wmv -i2 7.wmv
....