View Single Post
Old 10th May 2008, 22:20   #25  |  Link
mikeytown2
Resize Abuser
 
mikeytown2's Avatar
 
Join Date: Apr 2005
Location: Seattle, WA
Posts: 623
Quote:
Originally Posted by Dreassica View Post
Don't have access to my usual pc for a few days, so i can't provide samples. I do still know characteristics of the last scene i worked on.
a sidepanscene of 144 frames, framerate 23.976, panoramic picture is 1504x480, and every framestep is 6 pixels x 144.
This pans left to right. replace colorbars with your image, and it should work.
Code:
colorbars().trim(0,143).BilinearResize(1504,480)

KenBurnsEffect(last, 0,0, 720,0,   784,0, 1504,0,  720,480, IgnoreAR=1)
Same as this
Code:
colorbars().trim(0,143).BilinearResize(1504,480)

KenBurnsEffect(last, 0,0, 0,480,   784,0, 784,480,  720,480, IgnoreAR=1)
Left to right, then right to left
Code:
X = colorbars().trim(0,143).BilinearResize(1504,480)

KenBurnsEffect(x, 0,0, 0,480,   784,0, 784,480,  720,480, IgnoreAR=1)
last + KenBurnsEffect(x, 784,0, 784,480,  0,0, 0,480, 720,480, IgnoreAR=1)

Last edited by mikeytown2; 10th May 2008 at 22:29.
mikeytown2 is offline   Reply With Quote