Hello.
I searched all day long to find a way to make a small video with an extension of the same video but blurred as a background.
Can I add that effect in Sony Vegas 13 ?
PS : my first language isn't english and google didn't help me to solve that problem.
Thanks.![]()
+ Reply to Thread
Results 1 to 6 of 6
-
-
I am sure you can with any NLE.
Basically you put the video on two layers, then magnify the video on the bottom layer all the way to the end of the frames and apply some fast blur. -
Yeah, here's an AVISynth script to do just that (or something quite like it):
Code:FrgdVid=last BkgdVid=BilinearResize(FrgdVid, FrgdVid.width, FrgdVid.height, FrgdVid.width/4,FrgdVid.height/4,FrgdVid.width/2,FrgdVid.height/2) BkgdVid=ConvertToRGB(BkgdVid) BkgdVid=GeneralConvolution(BkgdVid,0, "16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16", 256, False) BkgdVid=ConvertToYUY2(BkgdVid) FrgdVid=BicubicResize(FrgdVid, BkgdVid.width/2, BkgdVid.height/2) CompositeVid=Overlay(BkgdVid,FrgdVid,BkgdVid.width/4, BkgdVid.height/4) Return (CompositeVid)
Code:FrgdVid=last BkgdVid=BilinearResize(FrgdVid, FrgdVid.width, FrgdVid.height, FrgdVid.width/4,FrgdVid.height/4,FrgdVid.width/2,FrgdVid.height/2) BkgdVid=Blur(BkgdVid,1.58) FrgdVid=BicubicResize(FrgdVid, BkgdVid.width/2, BkgdVid.height/2) Overlay(BkgdVid,FrgdVid,BkgdVid.width/4, BkgdVid.height/4)
Scott
Mine does a resize down of the foreground video rather than no resize+crop (or no resize of FG but non-equal crop with the zoomed BG)Last edited by Cornucopia; 7th Nov 2014 at 01:01.
-
WarpedResize. It's part of SimpleResize available here:
http://avisynth.nl/index.php/External_filters#Resizers