Typhoon859@GMail.com wrote:Actually, I just did it but what happens is, it negates some of the other effects suing that method.
Yup. You're pasting new effects over them, so that's only logical. There
may be a Paste Special option to allow you to just add the new properties... but I don't remember (I don't use it very often, and I'm not sitting in front of my editing box).
As for AviSynth.... the link JaddziaDax gave (several times) makes perfect sense to me, but then at the same time I'm fairly well versed in it so it had
better make sense to me. I have my doubts I can make it any clearer, but I can try.
AviSynth is, in effect, a video processing scripting language. You take a text file, write a list of commands in it, and save it with the extension .avs. If you've installed the AviSynth plugin for Premiere (which the AMVApp does for you), Premiere will read that file as if it were a video file just like a .avi (assuming you've given it valid commands within that file).
But, it's probably easier to show how it works in a practical example, since reading descriptions doesn't seem to be your thing. If you have AviSynth installed (the AMVApp installs it), try this.
Find a video file on your hard drive that you can play with Windows Media Player. I'd recommend an AMV, since they're usually encoded such that this will work well. Go to the directory where it is located, and open up Notepad. In notepad, enter the following (minus quotes of course and replacing FILENAME with the FULL filename of the video file, i.e. ThisIsAnAMV.avi):
DirectShowSource("FILENAME")
Now, in Notepad, go to File->Save as and save the file in the same directory as the video file as "testscript.avs", and change the 'Save As Type' setting from the default "Text Document" to "All Files". You should now have the file testscript.avs sitting in the directory where your video file is.
Next, open Premiere and create a new project like you would if you were making a new video. Now, import a new file- and choose the testscript.avs file. You'll probably have to tell Premiere to look at all filetypes, since I don't think it will list .avs files as natively being a video file (Premiere 6.5, which I use, I know doesn't- but I don't know if CS3 does or not).
Unless I've left something out, you should now have the video file that you linked to in the script (FILENAME) in Premiere, and you can put it on the timeline and work with it just as if you'd imported the FILENAME video file.
OK, so you may well be thinking, "How the hell is this useful, I could just have imported the file directly...." Well, for what we've just done, you're right. But, you can do a hell of a lot more than just open a file with it. Once you have a file in the AVS script, you can do all sorts of different things with it- including the sharpening you asked about initially. But, let's start by demonstrating something much more obvious and simply done.
Go back to Notepad, and open testscript.avs up again. It's just a normal text file and any text editor can open it, but Notepad is the most common stand-alone way to edit them since it doesn't try and put lots of other crap into the file like WordPad or Word tend to. After the existing line, copy and paste in the following lines:
ConvertToRGB32()
Invert("RBG")
Make sure they are each on their own line. Now, save the file in the same manner as you did initially, only call it "inverted.avs" Next, go back to Premiere and import inverted.avs. Notice anything different? The script should now have inverted the file the same as if you're applied the Invert effect in Premiere.
All the other things you do in AviSynth are done the same way- by entering the commands for the different effects into the script file and then using the script file in Premiere, VirtualDub, etc. as if it were a regular video file. To sharpen all the clips in your video, you would create .avs scripts for each of the files that you that applies one of AviSynth's sharpening filters. Those filters have a hell of a lot more options to set though, so for that you will have to read a bit on them. There's a decent bit that has been discussed on these forums about sharpening filters, so search a bit on it- you'll almost certainly find at least a few examples to try out. But hopefully at least this has shown you what AviSynth can do (at a very basic level) and how you go about getting it to do those things.
I've typed all of this up from memory (except for looking up and checking the syntax for the Invert command...), so hopefully I've not screwed up anywhere....
