The rules have been updated, read them now: Rules!
A Treehouse of My Own .fmv and .xni
-
- ultra-veteran
- Posts: 330
- Joined: Mon Apr 26, 2010 6:51 am
- Has thanked: 95 times
- Been thanked: 13 times
A Treehouse of My Own .fmv and .xni
The contents of this post was deleted because of possible forum rules violation.
-
- ultra-veteran
- Posts: 330
- Joined: Mon Apr 26, 2010 6:51 am
- Has thanked: 95 times
- Been thanked: 13 times
-
- ultra-veteran
- Posts: 601
- Joined: Fri Nov 06, 2009 12:13 am
- Has thanked: 74 times
- Been thanked: 133 times
Re: A Treehouse of My Own .fmv and .xni
xni is just an ini-style config
the fmv files are animation frames. i dont think you will be able to do anything with them though
the fmv files are animation frames. i dont think you will be able to do anything with them though
Code: Select all
idstring "FMV "
get P_TABLE long
get DUMMY long
get DUMMY long
get FRAMES long
get DUMMY long
get WIDTH long # ?
get HEIGHT long # ?
get BBP long # ?
math USIZE = WIDTH
math USIZE *= HEIGHT
math USIZE *= 4 # maybe BBP as bytes?
goto P_TABLE
get BNAME basename
for f = 0 < FRAMES
get DUMMY long # 1
get DUMMY long # 4
get SIZE long
get PNTR long
savepos NXT
math NXT += 32 # skip unknown
goto PNTR
get DUMMY long # static identifier ??
savepos FMVPOS
string NAME p= "%s_frame_%03i" BNAME f
clog NAME FMVPOS SIZE USIZE
goto NXT
next f
Useful tool links:
-
- ultra-veteran
- Posts: 330
- Joined: Mon Apr 26, 2010 6:51 am
- Has thanked: 95 times
- Been thanked: 13 times
Re: A Treehouse of My Own .fmv and .xni
I guess so, as it also turned out a series of somewhat unreadable files that have to be deciphered, too.WRS wrote:xni is just an ini-style config
the fmv files are animation frames. i dont think you will be able to do anything with them though
-
- ultra-veteran
- Posts: 330
- Joined: Mon Apr 26, 2010 6:51 am
- Has thanked: 95 times
- Been thanked: 13 times
Re: A Treehouse of My Own .fmv and .xni
The contents of this post was deleted because of possible forum rules violation.