Urban Terror Forums: Nexu'S Movie Config V2 Beta - Urban Terror Forums

Jump to content

 Login | Register 
Advertisement
  • (8 Pages)
  • +
  • « First
  • 2
  • 3
  • 4
  • 5
  • 6
  • Last »
  • You cannot start a new topic
  • You cannot reply to this topic

Nexu'S Movie Config V2 Beta Rate Topic: ****- 10 Votes

#31 User is offline   alerion Icon

  • Account: alerion
  • Country:
  • Joined: 06-March 10
  • Posts: 39

Posted 20 April 2010 - 06:36 PM

hm at the moment i use two monitors on one pc!
but i just play on one!
so i downloaded your movie comfig and its 16:9 i think but the game is just opening in a smaller window! can i record like that?

This post has been edited by alerion: 20 April 2010 - 06:37 PM


#32 User is offline   Nexu Icon

  •   clan leader   
  • Account: nexu
  • Main tag: |it|
  • Country:
  • Joined: 26-June 07
  • Posts: 4,265

Posted 20 April 2010 - 07:09 PM

Yes, by default its starting up in Windowed mode. As long you can still see all the window content on your screen. There wont be a problem with capturing.
Standard HD720 is set, which is 16:9 already.

#33 User is offline   alerion Icon

  • Account: alerion
  • Country:
  • Joined: 06-March 10
  • Posts: 39

Posted 20 April 2010 - 07:20 PM

lol and btw how can i remove the settings of the config? i removed the last row in the autoexe.cfg but there are still your settings in the game!

#34 User is offline   Nexu Icon

  •   clan leader   
  • Account: nexu
  • Main tag: |it|
  • Country:
  • Joined: 26-June 07
  • Posts: 4,265

Posted 20 April 2010 - 07:25 PM

I hope you did made a backup of your playing q3config.cfg....like i mentioned in the first post :mellow:

#35 User is offline   alerion Icon

  • Account: alerion
  • Country:
  • Joined: 06-March 10
  • Posts: 39

Posted 20 April 2010 - 07:30 PM

omfgz :wacko:
epic fail hm cant i get a new config from anywhere?

bullet_loaderAdvertisement

#36 User is offline   SubJunk Icon

  • Account: subjunk
  • Country:
  • Joined: 18-May 09
  • Posts: 1,642

Posted 20 April 2010 - 11:10 PM

View Postalerion, on 20 April 2010 - 07:30 PM, said:

omfgz :wacko:
epic fail hm cant i get a new config from anywhere?

Just delete q3config.cfg and run the game, a new one will be generated for you with the default settings.

#37 User is offline   MOLDAR Icon

  •   verified user   
  • Account: moldar
  • Country:
  • Joined: 01-May 09
  • Posts: 68

Posted 30 April 2010 - 04:25 PM

i have a problem nexu: i finished vivaldi's new jump map climax and want to make video. but when i try to open demo, gives me an error says: "resample texture: max width". and if i try again: "Z_Malloc: failed on allocation of 17697624 bytes from the main zone" and have to quit Ut..
i use same settings i used in my other vids before but i cant open my demos.
any help pls!!!!!

#38 User is offline   Nexu Icon

  •   clan leader   
  • Account: nexu
  • Main tag: |it|
  • Country:
  • Joined: 26-June 07
  • Posts: 4,265

Posted 01 May 2010 - 12:19 AM

I have never seen that error before. Perhaps raising your com_hunkmegs could help? Or maybe a dev can shine some light on this error message.

#39 User is offline   mitsubishi Icon

  • Account: mitsubishi
  • Country:
  • Joined: 28-February 10
  • Posts: 13,481

Posted 01 May 2010 - 10:10 AM

The actual 1st message is "ResampleTexture: max width". Put that in google.

#40 User is offline   MOLDAR Icon

  •   verified user   
  • Account: moldar
  • Country:
  • Joined: 01-May 09
  • Posts: 68

Posted 01 May 2010 - 05:09 PM

i googled it and find this. sry its too long but i really dont understand any sh.t bout this:
================
240 ResampleTexture
241
242 Used to resample images in a more general than quartering fashion.
243
244 This will only be filtered properly if the resampled size
245 is greater than half the original size.
246
247 If a larger shrinking is needed, use the mipmap function
248 before or after.
249 ================
250 */
251 static void ResampleTexture( unsigned *in, int inwidth, int inheight, unsigned *out,
252 int outwidth, int outheight ) {
253 int i, j;
254 unsigned *inrow, *inrow2;
255 unsigned frac, fracstep;
256 unsigned p1[2048], p2[2048];
257 byte *pix1, *pix2, *pix3, *pix4;
258
259 if (outwidth>2048)
260 ri.Error(ERR_DROP, "ResampleTexture: max width");
261
262 fracstep = inwidth*0x10000/outwidth;
263
264 frac = fracstep>>2;
265 for ( i=0 ; i<outwidth ; i++ ) {
266 p1[i] = 4*(frac>>16);
267 frac += fracstep;
268 }
269 frac = 3*(fracstep>>2);
270 for ( i=0 ; i<outwidth ; i++ ) {
271 p2[i] = 4*(frac>>16);
272 frac += fracstep;
273 }
274
275 for (i=0 ; i<outheight ; i++, out += outwidth) {
276 inrow = in + inwidth*(int)((i+0.25)*inheight/outheight);
277 inrow2 = in + inwidth*(int)((i+0.75)*inheight/outheight);
278 frac = fracstep >> 1;
279 for (j=0 ; j<outwidth ; j++) {
280 pix1 = (byte *)inrow + p1[j];
281 pix2 = (byte *)inrow + p2[j];
282 pix3 = (byte *)inrow2 + p1[j];
283 pix4 = (byte *)inrow2 + p2[j];
284 ((byte *)(out+j))[0] = (pix1[0] + pix2[0] + pix3[0] + pix4[0])>>2;
285 ((byte *)(out+j))[1] = (pix1[1] + pix2[1] + pix3[1] + pix4[1])>>2;
286 ((byte *)(out+j))[2] = (pix1[2] + pix2[2] + pix3[2] + pix4[2])>>2;
287 ((byte *)(out+j))[3] = (pix1[3] + pix2[3] + pix3[3] + pix4[3])>>2;

This post has been edited by Moldar: 01 May 2010 - 05:10 PM


  • (8 Pages)
  • +
  • « First
  • 2
  • 3
  • 4
  • 5
  • 6
  • Last »
  • You cannot start a new topic
  • You cannot reply to this topic

2 User(s) are reading this topic
0 members, 2 guests, 0 anonymous users

Sponsored link
https://www.urbanterror.info/members/donate/


Copyright © 1999-2024 Frozensand Games Limited  |  All rights reserved  |  Urban Terror™ and FrozenSand™ are trademarks of Frozensand Games Limited

Frozensand Games is a Limited company registered in England and Wales. Company Reg No: 10343942