video texturing in brume

All about the core api and animation, input, sound, effect, collision and physics engines.
You can also post here your feature requests.

Moderator: Brume Dev Team

video texturing in brume

Postby sanjay123 on Wed Oct 31, 2007 7:35 am

i have to use audio video play back in my project. i want to texture video in brume, but i dont know how. can any body help me in this.

thanks
sanjay123
Brume Rookie
 
Posts: 2
Joined: Thu Oct 25, 2007 12:52 pm

Re: video texturing in brume

Postby Silmaryls on Wed Oct 31, 2007 11:09 pm

Hi,

You can try the demo and download the source code (look at the Game.cs class and TestVideo method)


Basically it's used like that :

Code: Select all
// loading video as a texture
BrumeVideoTexture video = BrumeVideo.GetTexture("starcraft_ii_video_1_-_trailer_anglais_37078.avi",256);
video.Start();

// creating a screen
BrumeSquareTextured movieScreen = new BrumeSquareTextured(this, "movieScreen");
movieScreen.RenderStates.Lighted = false;
movieScreen.RenderStates.Culling = BrumeRenderParams.CULLING_NO;
movieScreen.RenderStates.Texture[0] = video;

// computing screen ratio
movieScreen.HasGlobalSize = false;
movieScreen.XSize = (float)video.VideoWidth / 100.0f;
movieScreen.YSize = (float)video.VideoHeight / 100.0f;
movieScreen.Pos = new BrumeVector(-384.7f, 59.9f, 248.1f);
movieScreen.OrientInDirection(BrumeVector.XAXIS, BrumeAngle.ToRadian(270));
User avatar
Silmaryls
Brume Team Member
 
Posts: 340
Joined: Tue Feb 21, 2006 10:09 pm
Location: Paris - France


Return to Technical discussion

Who is online

Users browsing this forum: No registered users and 0 guests

cron