I have two long videos and I'd like to have them together into one single file.
Is there any line that could help me to bring them together into VDMod for Exporting?
This is the first time I enter into this section of the Forum, so pardon me if the question is a little Noobish. I'm very interested into pre/post processing with Avisynth, so if anyone can answer to this question it would be great if he/she could add some Links to Guides and/or Scrypts help/list.
Fusing
- [Mike of the Desert]
- Joined: Fri Jul 25, 2003 5:56 am
- Status: Lonely
- Location: Earth -> Europe -> Italy -> Rome -> Cerveteri -> Sasso -> Home -> Mike's Room
- Contact:
- [Mike of the Desert]
- Joined: Fri Jul 25, 2003 5:56 am
- Status: Lonely
- Location: Earth -> Europe -> Italy -> Rome -> Cerveteri -> Sasso -> Home -> Mike's Room
- Contact:
- mirkosp
- The Absolute Mudman
- Joined: Mon Apr 24, 2006 6:24 am
- Status: (」・ワ・)」(⊃・ワ・)⊃
- Location: Gallarate (VA), Italy
- Contact:
- [Mike of the Desert]
- Joined: Fri Jul 25, 2003 5:56 am
- Status: Lonely
- Location: Earth -> Europe -> Italy -> Rome -> Cerveteri -> Sasso -> Home -> Mike's Room
- Contact:
Uhuhu. I knew about that page, thanks a lot anyway.mirkosp wrote:There you go.
So.. If that's all (My curiosity was also about that) I have one "big" question..
The "Normal" Mk2 Guide is avaiable for a complete download (Being able to read it Offline), how about this one? I didn't find any "Download" link for this Beta One, and I'd love it, since I think there's no comparation with the "old one" (This one is frakin' user friendly )
- mirkosp
- The Absolute Mudman
- Joined: Mon Apr 24, 2006 6:24 am
- Status: (」・ワ・)」(⊃・ワ・)⊃
- Location: Gallarate (VA), Italy
- Contact:
- Qyot27
- Surreptitious fluffy bunny
- Joined: Fri Aug 30, 2002 12:08 pm
- Status: Creepin' between the bullfrogs
- Location: St. Pete, FL
- Contact:
A good number of filters and functions for AviSynth are actually distributed with the program.
Start->Programs->AviSynth 2.5->AviSynth Documentation
as well as on the AviSynth.org Wiki:
http://avisynth.org/mediawiki/Internal_filters
And if I read the first post properly, you're talking about appending one file to another. The way to do that in AviSynth is:
The double pluses make sure the audio stays synched between clips. If you were to use a single + then that wouldn't be guaranteed. In all honesty, + and ++ are shorthand symbols for the functions UnalignedSplice and AlignedSplice.
Start->Programs->AviSynth 2.5->AviSynth Documentation
as well as on the AviSynth.org Wiki:
http://avisynth.org/mediawiki/Internal_filters
And if I read the first post properly, you're talking about appending one file to another. The way to do that in AviSynth is:
Code: Select all
AVISource("file1.avi") ++ AVISource("file2.avi")