Hello Steipal,
How can I configure "Fade" filter at particular TC? Do I need to provide source frame were I have to use filter? Is it possible to provide full TC?
Please suggest.
Thanks
Vijay
How to Use "Fade" filter
Re: How to Use "Fade" filter
Currently, there is no way of supplying fade tc inn/out. You gonna have to do that by creating a custom avi-synth script. Something like this:,
"
m_clip = Trim(m_clip, 0, 2500) #Trim video to 100 sec @ 25 fps
m_clip = FadeOut(m_clip, 25) #25 frames fade starting from frame 2475 to 2500.
Return m_clip
"
-steipal
"
m_clip = Trim(m_clip, 0, 2500) #Trim video to 100 sec @ 25 fps
m_clip = FadeOut(m_clip, 25) #25 frames fade starting from frame 2475 to 2500.
Return m_clip
"
-steipal