Hi guys and gals:
I have seen alot of websites talking about the big rave of PIP ( picture in picture).. but that is not what i am trying to do. i downloaded a demo to Vidmex (www.vidmex.com).. and it does exaclty what i want it to do. Unfortunately i do not have the money to buy it yet.
I am looking for some software ( freeware) that would allow me to paste video in video..
Any thoughts?
Randy
+ Reply to Thread
Results 1 to 11 of 11
-
-
Avisynt, requires coding which i know NOthing about,, don't want to mess with something like that.
-
AVISynth uses scripts, it doesn't require coding. Like I said in my first post, its free but does require an investment in your time to learn. If interested, I'd be happy to post a script (when I get home from work) that I wrote and have used to do what I think you want to do.
Also, I use VirtualDub, another freeware tool, to view and save off these videos. -
Yeah that would help!..
Appreciate it!
i use VirtualDUb.. al the time to trim down the vids.. now that is a great piece of software.
Randy -
Unfortunately i do not have the money to buy it yet.
You want free, but aren't willing to invest some time to learn AviSynth, which can do anything that Vidmex can do, and more? There are tons of things you can do with the Overlay command. Here I took a BMP and added onto it a small video, like a PIP, for use in a menu:
A=ImageSource("E:\Gauri\Menu\Background.bmp")
B=Import("E:\Gauri\Menu\Menu.avs")
Overlay(A,B,X=42,Y=38)
You can find other examples here:
http://avisynth.org/index.php?page=Overlay -
Originally Posted by Lanshire1ICBM target coordinates:
26° 14' 10.16"N -- 80° 16' 0.91"W -
As promised.
Code:# both clips are 720 x 480, 29.97 fps # clip 1 is capture of handheld (very shaky) DV of Son's Christmas play # Clip 2 (base clip) is the deshook, cleaned up video # Deshook, DeNoised Video (clip 2) a = AVISource("G:\MUMC_Preschool_Christmas_Show_2005\Song-1.avi",audio = false) nf = Framecount(a) fr = Framerate(a) # Scale Factor for picture in the picture sf = .4 w = int(720*SF) h = int(480*SF) a = a.ConvertToYUY2().bilinearresize(w,h) a = AddBorders(a,8,8,8,8,color=color_yellow) # Source (Raw) Video (Clip 1) b = AVISource("G:\MUMC_Preschool_Christmas_Show_2005\RAW-Song-1.avi",audio = false).trim(0,nf-1).ConvertToYUY2() # Create Picture in Picture Clip # Put Filtered Clip to the Upper Left of the Original Clip clip = Layer(b,a,x=0,y=0) return clip
By the way, the filtered results (i.e., clip 1) was achieved using AVISynth to preprocess the raw video (i.e., de-interlace, bob, ect.). This was fed to VirtualDub and Gunnar Thalin's Deshaker v2.0 filter. This output was further cleaned up using AVISynth denoising filters. I know all this sounds way advance (it did to me at first) but if you invest some time to learning and using AVISynth you'll find (at least I did) that it, along with VirtualDub, will be one of the most powerful and useful tools in your video tool set.
Similar Threads
-
pasting a still frame in a video
By sprintt in forum EditingReplies: 117Last Post: 30th May 2011, 11:44 -
Copying From One Video and Pasting Into Another
By Baalslayer in forum EditingReplies: 2Last Post: 15th Sep 2009, 14:47 -
pasting picture onto video
By jrobie79 in forum EditingReplies: 2Last Post: 16th Oct 2008, 18:27 -
Cutting and Pasting Hi Def Transfer Streams in Native Resolution
By Jcage89 in forum EditingReplies: 6Last Post: 21st Aug 2008, 12:17