How do you create a dynamic string of quotes?

Locked
User avatar
varxtis
Joined: Sun Dec 21, 2003 2:34 pm
Status: Single
Location: The world that never was
Contact:
Org Profile

How do you create a dynamic string of quotes?

Post by varxtis » Tue Aug 23, 2005 3:28 am

Sorry about the subject title. . . I REALLY didn't know how to word this one.
I don't know if anyone has seen any of the KH2 trailers (more specificly the music video trailer that goes to linkin parks somewhere I belong). . . but on it there is a part, a section, where there is a count down, flashes number and it's like the camera is following a line of quote or something. Does anyone know how to create (or methods of mapping out) a line that the camera follows. Ive seen this method used in other commercials and such but I don't know what that method/style/technique is called. And while I'm at it. . . any sites or tutorials on how to get that cool effect with the flashes numbers coming into focus. Its seems like theres more to it than taking a outlite of a number, bluring it into focus and using a basic blending mode.

trythil
is
Joined: Tue Jul 23, 2002 5:54 am
Status: N͋̀͒̆ͣ͋ͤ̍ͮ͌ͭ̔̊͒ͧ̿
Location: N????????????????
Org Profile

Post by trythil » Tue Aug 23, 2005 3:43 am

Code: Select all

int main(int argc, char** argv) {
std::string buf, inp;
while(!inp.empty()) {
    std::cout << "Enter a quote: ";
    std::cin >> inp;
    buf += inp;
}
std::cout << buf;
return 0;
}
Seriously, it's called panning a camera across text. :?

If you're really hardcore on getting it right I suggest you do it with a 3D rendering package that has at least a semi-competent depth-of-field implementation. Like Yafray.

User avatar
varxtis
Joined: Sun Dec 21, 2003 2:34 pm
Status: Single
Location: The world that never was
Contact:
Org Profile

Post by varxtis » Wed Aug 24, 2005 4:21 am

I am REALLY hoping that you are thinking of the same thing I'm talking about. But it doesn't sound like it. Your saying that they used a 3d image program like. . . yafray (which is, to my understanding, is like 3ds max) to create that affect. Assuming they did. . . eakk. . . .I don't even wanna think that way. Im sry. . but that whole thing Effect TOTALLY looks like a motion graphics program thing, like After Effects. BTW, what is that code that you put in in your message? it looks like some kind of Java Scripting.

trythil
is
Joined: Tue Jul 23, 2002 5:54 am
Status: N͋̀͒̆ͣ͋ͤ̍ͮ͌ͭ̔̊͒ͧ̿
Location: N????????????????
Org Profile

Post by trythil » Wed Aug 24, 2005 4:34 am

mitsukai212 wrote:I am REALLY hoping that you are thinking of the same thing I'm talking about. But it doesn't sound like it. Your saying that they used a 3d image program like. . . yafray (which is, to my understanding, is like 3ds max) to create that affect. Assuming they did. . . eakk. . . .I don't even wanna think that way.
You're talking about camera motion and depth-of-field, or at least that's what I could extract from your sentences. If I'm wrong, provide some pictures or clean up your paragraphs.

To do that sort of stuff well it's really worth it to start thinking in 3D. After Effects can fake it but it's a lot more trouble than it's worth to do it in 2D when you have perfectly capable 3D programs at your disposal. It's actually easier to do in 3D, too, IMO.

Finally, the code isn't JavaScript. It's C++.

User avatar
Zarxrax
Joined: Sun Apr 01, 2001 6:37 pm
Contact:
Org Profile

Post by Zarxrax » Wed Aug 24, 2005 11:08 am

After Effects is more than capable of letting a camera pan across text. I still have no idea exactly what the original poster is asking about though. Perhaps a visual example?

User avatar
varxtis
Joined: Sun Dec 21, 2003 2:34 pm
Status: Single
Location: The world that never was
Contact:
Org Profile

Post by varxtis » Wed Aug 24, 2005 2:30 pm

I'll throw the video into premiere and get a snap shot or two of what I'm talking about. Meanwhile. . . thankyou for your assistance.
I'll try to have up visuals by this evening PST

User avatar
varxtis
Joined: Sun Dec 21, 2003 2:34 pm
Status: Single
Location: The world that never was
Contact:
Org Profile

Post by varxtis » Thu Aug 25, 2005 4:45 am

First off. . . I am sooo sry it took me so long to get these on here. I had to stay lat at work and then when I got home . . . well . . . I napped. lol
Here is a direct link to the video from Gametrailer.com
http://www.gametrailers.com/player.php? ... pe=mov&f=1

and hopefully yahoo is nice enough to let me link the images into here from my briefcase. lol

Image this is the first initial quote/image

Image then it looks like the camera is panning down to the next quote/image

Image then here is the next image. (ofcoarse there are a lot more frames involved and it looks a hell of a lot cooler on the video. lol)

[paizuri: Enabled BBCode to get the images to display.]

User avatar
varxtis
Joined: Sun Dec 21, 2003 2:34 pm
Status: Single
Location: The world that never was
Contact:
Org Profile

Post by varxtis » Thu Aug 25, 2005 4:47 am

wow. . .I feel like such a failure . . . lol. Well, the images didn't actually post up, and the url isn't hyperlinked. . . but if you cut and paste the addresses to the URL field. . . they'll take ya to the right places. Sry

User avatar
Zarxrax
Joined: Sun Apr 01, 2001 6:37 pm
Contact:
Org Profile

Post by Zarxrax » Thu Aug 25, 2005 12:05 pm

Well, I can't see the images, but I was able to watch the video.
For your first question... well you just create a large image and pan it around :| Extremely easy in After Effects, and I think Premiere Pro can do it too.

As for flashing numbers, I'm not sure what you were talking about there.

User avatar
varxtis
Joined: Sun Dec 21, 2003 2:34 pm
Status: Single
Location: The world that never was
Contact:
Org Profile

Post by varxtis » Thu Aug 25, 2005 3:30 pm

So, How would I map something like that out. I mean, an image like that would have to be like twenty time bigger than the screem.
as far as the numbers thing . . . lol. . . ya, I am really sorry. Sometimes I fall short of words when I want to describe something.
But, while the screen was panning through the quotes or whatever, you didn't happen to see the numbers coming up onto the screen?

Locked

Return to “Video & Audio Help”