PDA

View Full Version : Applying a filter to portion of clip


The_Flash
4th July 2004, 22:56
How would I apply a filter to just the first few frames (about 200) of a clip? I need to do this several times, if someone could show me an example it would be great. The first script I have looks like below. Thanks.


mpeg2source("C:\DVD\D2VAVS\V01.D2V")
trim(136586,159787)
ConvertToYUY2(interlaced=true)

The_Flash
4th July 2004, 23:04
The script below seems to be correct. Figured it out right after posting.


mpeg2source("C:\DVD\D2VAVS\V01.D2V")
temp=trim(136586,159787)
temp.trim(0,200).blur(1.0)++temp.trim(201,0)
ConvertToYUY2(interlaced=true)

stickboy
4th July 2004, 23:38
You also can use ApplyRange.