-
Re: [Release] Mu Skiner (3 languages supported and open function inplemented)
-
Re: [Release] Mu Skiner (3 languages supported and open function inplemented)
-
Re: [Release] Mu Skiner (3 languages supported and open function inplemented)
Nice!
I had a program like this one, but this fucking pwns the other program ^^
Installed and used!!
10/10!
-
Re: [Release] Mu Skiner (3 languages supported and open function inplemented)
-
Re: [Release] Mu Skiner (3 languages supported and open function inplemented)
-
Re: [Release] Mu Skiner (3 languages supported and open function inplemented)
MuSkinner 4 ever!I still use this even today ^_^
-
Re: [Release] Mu Skiner (3 languages supported and open function inplemented)
Aww.. I have some error when i try to open My Computer from skinner... Somt. like this:
The specified module could not be found. (Exception from HRESULT: 0x8007007E).
Please help me!
-
Re: [Release] Mu Skiner (3 languages supported and open function inplemented)
-
Re: [Release] Mu Skiner (3 languages supported and open function inplemented)
-
Re: [Release] Mu Skiner (3 languages supported and open function inplemented)
Is this still being developed? :smile:
Quote:
Originally Posted by
luis249342
does it convert .JPG to .OZT???????? =O!!!!
If I remember correctly, Mu needs its OZT files (encoded TGA) to be a specific color-depth, and transparency added by other programs can be troublesome.. If you want a JPG to be an OZT you probably should convert JPG => TGA => OZT :thumb:
P.S: Batch conversion yay! :laugh:
-
Re: [Release] Mu Skiner (3 languages supported and open function inplemented)
OZT/OZJ conversion is actually quite simple. It only requires several lines of code. If you have Perl installed, you can even do it straight off command line without using a program.
So, if you've got Perl installed on your computer, just open up a command prompt window, browse to the folder, and type in any one of the following 4 lines to convert every file of a certain type in that folder.
So here's your batch conversion :P :
Convert OZJ=>JPG:
for %f in (*.ozj) do perl -e "$f=shift;open I,$f;binmode I;read I,$_,-s$f;s/^.{24}//s;open O,'>%f.jpg';binmode O;print O" %f
Convert OZT=>TGA:
for %f in (*.ozt) do perl -e "$f=shift;open I,$f;binmode I;read I,$_,-s$f;s/^.{4}//s;open O,'>%f.tga';binmode O;print O" %f
Convert JPG=>OZJ:
for %f in (*.jpg) do perl -e "$f=shift;open I,$f;binmode I;read I,$_,-s$f;s/^(.{24})/\1\1/s;open O,'>%f.ozj';binmode O;print O" %f
Convert TGA=>OZT:
for %f in (*.tga) do perl -e "$f=shift;open I,$f;binmode I;read I,$_,-s$f;s/^(.{4})/\1\1/s;open O,'>%f.ozt';binmode O;print O" %f
And if you only want to convert a single file, remove the "for %f in (*.xxx) do" part, and replace %f with the file name. That, or replace the (*.ext) with (file_to_convert.ext).
-
Re: [Release] Mu Skiner (3 languages supported and open function inplemented)
Sure, but the shell commands and previewing are good for productivity, since often people will be working with dozens of files at once... :huh:
-
Re: [Release] Mu Skiner (3 languages supported and open function inplemented)
Sure, previewing and user interface are all nice. I was just saying that for those that don't need all that, you can do a batch or single file conversion right off of command line.
-
Re: [Release] Mu Skiner (3 languages supported and open function inplemented)
Quote:
Originally Posted by
magnum29
Sure, previewing and user interface are all nice. I was just saying that for those that don't need all that, you can do a batch or single file conversion right off of command line.
People in Mu section comfortable with command-line interfaces = umm about 20? Not that that's a particularly bad thing, mind you... 99% of people don't _need_ to know how to use anything but a GUI in everyday life... So yeah for the 99% it's useful ;) And for the rest of us who CAN do it manually but don't want to waste time when a GUI is easier, it's good too. Thanks for posting the perl info for the purists, tho :smile:
-
Re: [Release] Mu Skiner (3 languages supported and open function inplemented)
-
Re: [Release] Mu Skiner (3 languages supported and open function inplemented)
very very very nice tool..
-
Re: [Release] Mu Skiner (3 languages supported and open function inplemented)
Hey please help me I have that caind of error
http://bildites.lv/images/5q25w5m2xb6ig7m1pclj.jpg
when I tried to convert file thin error pop up again
-
Re: [Release] Mu Skiner (3 languages supported and open function inplemented)
This is best program for convert files, big thanks for that good job!
-
Re: [Release] Mu Skiner (3 languages supported and open function inplemented)
When I run exe, in appears in Task Manager/Processess.
But I can't see it.
-
Re: [Release] Mu Skiner (3 languages supported and open function inplemented)
Great release, now i can start to make my script for online people on map!!
-
Re: [Release] Mu Skiner (3 languages supported and open function inplemented)
i'm gonna try this. thanks.