niiyan/2005-03-28
BlockAverage V0.1 by Simon Walters †
- My VirtualDub and Avisynth Filter News
a simple filter that just averages the Y values of each 2x2 pixel block in a YV12 image – U and V values are left alone as they already common to each 2x2 block in a progressive YV12 image.
- Doom9's Forum 関連スレッド
- YV12のみ。
DeSpot Version 3.3.2 March 28, 2004 †
- 3.3.2における変更点
DeSpot - Conditional Temporal Despotting FilterMore correct clip cache range (now =2 in place of undefined) (Fizick)
AVSAmp †
- Doom9's Forum - AVSAmp
a small command line tool I made to figure out a number to use with Amplify(). Just give it the path of your .avs, and it will calculate the number you need in Amplify() for audio normalized to 100% (audio must be 16 bit). (Amplify()で使用するための数値を算出するために、私が作った小さなコマンドラインツール。ただ、あなたの.avsのパスを与えるだけで、それは、音声を100%にノーマライズするために、Amplify()においてあなたが必要とする数値を計算するでしょう(音声は16ビットでなければなりません)。)
- 使用例
avsamp J:\Capture\cap01.avs
Contrast enhance in dark area(暗部におけるコントラストの拡張) †
- Creating a Contrast Mask with The GIMPを、AviSynthを使って実現するためのスクリプト。
- スクリプト
a = AviSource() b = a. GrayScale().Levels(0,1,255,255,0)Blur(0.2,0.2) Layer(a,b,"add",10)