// tryggr, 2009. http://tryggr.info/ // use this code the way you want to. it's not as if it was useful anyway. // if you notice any bugs, it's probably because I mis-omitted the comments, so just delet them. // if you still notice any bugs, well, then you're free to fix them! :D LoadPlugin("C:\Documents and Settings\Utilisateur\Mes documents\AviSynth 2.5\plugins\mvtools2.dll") // change this line to wherever you've installed mvtools o_clip = AVISource("C:\Documents and Settings\Utilisateur\Mes documents\lille3\arts plastiques\L2\projeto video\datamosh\orgn fls\avi\deepthroatedit.avi") // change this line to the video you want to use o_clip = o_clip.converttoyv12(interlaced=true) image = ImageSource("C:\Documents and Settings\Utilisateur\Mes documents\lille3\arts plastiques\L2\projeto video\datamosh\orgn fls\snapshots\03.jpg", end = 249, fps = 25) // change this line to the picture you want to mosh with the video (I used the first frame of the sequence) // also, you should edit the fps and the end (depending on the duration of your video) image = image.ConvertToYV12 // maybe your video is already encoded in YV12, but mine wasn't super_clip = MSuper(o_clip, hpad = 0, vpad = 0, pel = 1) mv_clip = MAnalyse(super_clip, blksize = 4, truemotion = true, overlap = 2) super_image = MSuper(image, hpad = 0, vpad = 0, pel = 1) result_clip = MCompensate(image, super_image, mv_clip, recursion = 100) return result_clip