|
|
| Borgs8472 |
| Posted: Nov 6 2002, 12:23 PM |
 |
|
Unregistered

|
Hi everyone. I don't know if this is a filter or an effect or what, but there's something I can't do.
I'm making a fan made zelda movie. Zelda Movie Site, Zelda Movie Board and I want to apply various effects to the captured video from the game.
One effect I wanted is when link is travelling from place to place for the screen to go split screen.
Think goldeneye on the n64 4 player multiplayer.
So I have a scene that goes
Link leaves kariko village, 5 seconds Link walks across hyrule field, 5 seconds Link enters zora river, 5 seconds Entering zora river, 5 seconds
Call them 1, 2, 3 and 4
I want to display _ _ |1|2| |3|4|
At once like so. I think it's possible to create _ _ _ _ |1 | | 2| and 3 and 4 |_ _| |_ _|
But there is no way (I know) of merging them.
AND (the wish list contines), it'd be nice if I could make additional effects so things go kinda like this: _________ |111111111| |111111111| |111111111| |111111111| |111111111| _________ |11111111 | |11111111 | |11111111 | |11111111 | |_________| _________ |11111 | |11111 | |11111 | | | |_________|
And then have "2" overlayed and going into the corner.
Basically, the sort of thing that's done for award ceremonies.
Any ideas? |
 |
| sh0dan |
| Posted: Nov 6 2002, 04:44 PM |
 |
|
Avisynth Developer
  
Group: Vdubmod Alpha Testing Team
Posts: 41
Member No.: 327
Joined: 20-September 02

|
You could use AviSynth 2 for you videos. Script for the first effect could be:
| CODE | vid1=avisource("1.avi") vid2=avisource("2.avi") vid3=avisource("3.avi") vid4=avisource("4.avi") vid1=reduceby2(vid1) vid2=reduceby2(vid2) vid3=reduceby2(vid3) vid4=reduceby2(vid4) v1v2=stackhorizontal(vid1,vid2) v3v4=stackhorizontal(vid3,vid4) stackvertical(v1v2,v3v4)
|
Bicubicresize in combination with Animate (not that easy to use) could be used for the second effect. |
 |
| Borgs8472 |
| Posted: Nov 10 2002, 10:05 PM |
 |
|
Unregistered

|
#mode cartman
Yeeeees! Yeeesss!
Thank's that's really cool! |
 |
|