FadeIn2Ex
概要 †
FadeIn2の機能拡張版。色指定が可能。
作者 †
kiraru2002
関数 †
function FadeIn2Ex(clip clip, int "n", int "color", int "addframes") # "addframes" valid in ver.2.0 { color=default(color,$000000) n=default(n,round(clip.framerate)) n=(clip.framecount>n)?n:clip.framecount addframes=default(addframes,0) newclip=(addframes>0)?clip.Loop(addframes+1,clip.framecount-1,clip.framecount-1):clip newclip=(addframes>0)?clip.Loop(addframes+1,0,0):clip newclip=newclip.DelayAudio(addframes/newclip.framerate) newclip=(addframes>1)?newclip.trim(0,addframes-1).Amplify(0)+newclip.trim(addframes,0):newclip return Dissolve(newclip.BlankClip(n+2,color=color),newclip,n) }
書式 †
FadeIn2Ex(clip clip, int "n", int "color", int "addframes")
引数 †
- n
- フェード対象フレーム数
- color
- 色指定(16進数)
- addframes
- 追加するフレーム数
使用例 †
FadeIn2Ex(20,$ffffff,0)
最終更新日時: 2014-03-11 (火) 03:47:48 (3927d)