Avisynth in After Effects
- badmartialarts
- Bad Martial Artist
- Joined: Sat Oct 25, 2003 5:31 am
- Location: In ur Kitchen Stadium, eatin ur peppurz
After Effects isn't buying the trick. You're gonna have to bite the bullet and make lossless .avi files.
Life's short.
eBayhard.
eBayhard.
- Jnzk
- Artsy Bastid
- Joined: Tue Jan 28, 2003 5:30 pm
- Location: Finland
Works fine for me with AE 6.5. Here's what you need to do, step by step:
1. Make sure you have the latest AviSynth version. (2.5.5)
2. Get the latest DGMPGDec package (1.4.5) and extract it to a directory of its own.
3. Go to your Program Files/AviSynth/Plugins directory and delete any MPEG2 decoder filters you have there. (dgdecode.dll, mpeg2dec3.dll etc.)
4. Go to Doom9 downloads page and find a package called VFAPI under Support Utils. Download it and extract it to a folder. In that folder there should now be a file called vifpset.bat. Run it to register the dll.
5. Run DGIndex that came with DGMPGDec and create your .d2v file normally.
6. Create your AVS script in Notepad and remember to load the decoding filter.
7. Run VFAPIConv that came with VFAPI. Drag and drop your AVS file on the program window. Click OK, then Convert. After the conversion you should have a small fake AVI file in the same directory as your AVS file.
8. Import the fake AVI to your favourite editing program.
1. Make sure you have the latest AviSynth version. (2.5.5)
2. Get the latest DGMPGDec package (1.4.5) and extract it to a directory of its own.
3. Go to your Program Files/AviSynth/Plugins directory and delete any MPEG2 decoder filters you have there. (dgdecode.dll, mpeg2dec3.dll etc.)
4. Go to Doom9 downloads page and find a package called VFAPI under Support Utils. Download it and extract it to a folder. In that folder there should now be a file called vifpset.bat. Run it to register the dll.
5. Run DGIndex that came with DGMPGDec and create your .d2v file normally.
6. Create your AVS script in Notepad and remember to load the decoding filter.
Code: Select all
LoadPlugin("C:\Program Files\DGMPGDec 1.4.5\DGDecode.dll")
MPEG2Source("C:\bibleblack.d2v")
- <strike>Remember that VFAPI upsamples to RGB by default in interlaced mode. If your script outputs progressive footage (e.g. you do IVTC with Telecide + Decimate), put "_P" just before the extension in the filename. This forces progressive upsampling. So for example bibleblack_P.avs.
7. Run VFAPIConv that came with VFAPI. Drag and drop your AVS file on the program window. Click OK, then Convert. After the conversion you should have a small fake AVI file in the same directory as your AVS file.
8. Import the fake AVI to your favourite editing program.
- Jnzk
- Artsy Bastid
- Joined: Tue Jan 28, 2003 5:30 pm
- Location: Finland
Please ignore that. Apparently it only works when you're using .d2vs directly. AVS scripts are converted to RGB24 in progressive mode by default.Remember that VFAPI upsamples to RGB by default in interlaced mode. If your script outputs progressive footage (e.g. you do IVTC with Telecide + Decimate), put "_P" just before the extension in the filename. This forces progressive upsampling. So for example bibleblack_P.avs.
- Warheart
- Joined: Wed Sep 17, 2003 11:58 am
- Status: Immersed
- Location: In Fiction
- Contact:
-
- Joined: Wed Nov 10, 2004 11:30 pm
Help
Hey, im starting to make AMV's but the program cardwell(i think thats his name) talked about....i got to the part with the colored picture and the beeep sound....but when it comes to actually uploading different files into that program im lost....it keeps saying error: canot open that file when i use the right format and everything....if theirs anyone experienced enough that can show/tell me plz talk to me
- sagarajack
- Joined: Sun Oct 17, 2004 11:34 am
is there any other benefit by using avs other than saving space? i do all my project in RGB32, a lil alpha helps the effect i think. i usually have 160gb of space for projects, it's enough for most of the time except for CS skill vids.
i never worked with avs, so go back to my first question, what are its benefits? do i loose some of the effect properties by using it?
i never worked with avs, so go back to my first question, what are its benefits? do i loose some of the effect properties by using it?
- Scintilla
- (for EXTREME)
- Joined: Mon Mar 31, 2003 8:47 pm
- Status: Quo
- Location: New Jersey
- Contact:
Yes, you can modify your preprocessing filter chain without having to re-encode any files (as long as you're not changing anything that would affect properties such as resolution and frame rate).sagarajack wrote:is there any other benefit by using avs other than saving space?
You could edit with scripts with no preprocessing at all (except, say, IVTC and resizing) because it's faster that way, then just before exporting your video, add some preprocessing to make them better-looking and/or easier to compress.