Author Topic: Help needed with command brief ANI  (Read 1881 times)

0 Members and 1 Guest are viewing this topic.

Offline SF-Junky

  • 29
  • Bread can mold, what can you do?
Help needed with command brief ANI
Picture

Always I try to convert this into a .ani file, anibuilder says "WARNING: Palette in frame #1 has been adapted (cprrection degree: 171, smaller is better, 0 means no loss of quality)"

The upper limit 256 colors, right? This picture has some 4 colours. What did I make wrong?

 

Offline Spoon

  • 212
  • ヾ(´︶`♡)ノ
Re: Help needed with command brief ANI
That is a very nice... black .pcx file?
Need a bit more info here on how you created the .pcx file.

Anibuilder will adapt the palette of the frames following 0000 to the colors found in 0000 (so if the first frame is black, it will have some odd results on the other frames). I recommend you use Bright183 found on http://www.freespacemods.net/news.php. Bright will set up the palettes for each frame correctly so anibuilder will know what to do with them instead of trying its own pityful attempt at fixing it.
Urutorahappī!!

[02:42] <@Axem> spoon somethings wrong
[02:42] <@Axem> critically wrong
[02:42] <@Axem> im happy with these missions now
[02:44] <@Axem> well
[02:44] <@Axem> with 2 of them

 

Offline The E

  • He's Ebeneezer Goode
  • 213
  • Nothing personal, just tech support.
    • Steam
    • Twitter
Re: Help needed with command brief ANI
Also, that pallette has a lot more colours than just 4 in it.....
If I'm just aching this can't go on
I came from chasing dreams to feel alone
There must be changes, miss to feel strong
I really need lifе to touch me
--Evergrey, Where August Mourns

 

Offline SF-Junky

  • 29
  • Bread can mold, what can you do?
Re: Help needed with command brief ANI
That is a very nice... black .pcx file?
Need a bit more info here on how you created the .pcx file.
here are all files I created to far. I used Photoshop CS2 to cut the fist from another picture and add the red shine effect.

I can download that bright program, but when I execute it, it closes itself after less than one second.

 

Offline Spoon

  • 212
  • ヾ(´︶`♡)ノ
Re: Help needed with command brief ANI
That is a very nice... black .pcx file?
Need a bit more info here on how you created the .pcx file.
here are all files I created to far. I used Photoshop CS2 to cut the fist from another picture and add the red shine effect.

I can download that bright program, but when I execute it, it closes itself after less than one second.
read the instructions/readme.
Urutorahappī!!

[02:42] <@Axem> spoon somethings wrong
[02:42] <@Axem> critically wrong
[02:42] <@Axem> im happy with these missions now
[02:44] <@Axem> well
[02:44] <@Axem> with 2 of them

 
Re: Help needed with command brief ANI
BRIGHT is a command-line tool. You use it in the same way as nvDXT, via the command line. Just double-clicking the exec will indeed do nothing, it needs parameters that tell it what to do.

  

Offline SF-Junky

  • 29
  • Bread can mold, what can you do?
Re: Help needed with command brief ANI
I did read the instructions, but I didn't really understand all the things that are told there.

Code: [Select]
C:\Programme\Bright
This is the path of the folder were both the Bright.exe and the picture (cb_UAL0010.bmp; 8-bit BMP) I'd like to convert are in. What do I have to enter in my command line?

 

Offline The E

  • He's Ebeneezer Goode
  • 213
  • Nothing personal, just tech support.
    • Steam
    • Twitter
Re: Help needed with command brief ANI
There is a readme. It's meant to be read.

Quote from: Galemp
Additionally I made a command utility that will convert all BMPs in the folder to PCXs using a shared palette. You should install Bright into "Program Files\Bright" or edit the file below. You should also have Irfanview.

Save this as bright.cmd in the folder where your textures are, then run it.

@echo off

rem            The path to Bright:
set BrightPath=%programfiles%\Bright
rem            The path to IrfanView:
set IrfanViewPath=%programfiles%\IrfanView
rem            The path to output files to:
rem            use 'set OutputPath=.' to save files to the current folder.
set OutputPath=.


if exist *.pcx echo All .pcx files in this folder will be lost.
if exist *.pcx echo Press Ctrl-C to abort or
if exist *.pcx pause
if exist *.pcx del *.pcx
"%BrightPath%\bright.exe" *.bmp -common -o
if not exist "%OutputPath%" md "%OutputPath%"
rem            "%IrfanViewPath%\i_view32.exe" *.bmp /convert="%OutputPath%\*.pcx"

pause
If I'm just aching this can't go on
I came from chasing dreams to feel alone
There must be changes, miss to feel strong
I really need lifе to touch me
--Evergrey, Where August Mourns