GeBo | Date: Wednesday, 2011-12-21, 6:43 PM | Message # 1 |
Squire
Group: Users
Messages: 86
Awards: 0
Reputation: 0
Reproofs: 0%
Status: Offline
| Guy if you're reading this topic you've better to help me what program did you guys use to make mugen intro?
ONE FOR ALL, ALL FOR ONE!
|
|
| |
sweetfire13 | Date: Wednesday, 2011-12-21, 7:50 PM | Message # 2 |
Angel
Group: contributor
Messages: 1329
Awards: 5
Reputation: 27
Reproofs: 0%
Status: Offline
| It's Fighter Factory.
|
|
| |
GeBo | Date: Thursday, 2011-12-22, 10:24 AM | Message # 3 |
Squire
Group: Users
Messages: 86
Awards: 0
Reputation: 0
Reproofs: 0%
Status: Offline
| but how to transfer video in .sff file. And how to make it?
ONE FOR ALL, ALL FOR ONE!
|
|
| |
uzumakis | Date: Thursday, 2011-12-22, 2:32 PM | Message # 4 |
M.W.O.G SENUCH AIZEN
Group: contributor
Messages: 2214
Awards: 5
Reputation: 11
Reproofs: 0%
Status: Offline
| here is something that can be a source of help for ya and by the way you are in wrong portion to take help!!!! Video in mugen can be use for mugen’s video intro, mugen’s logo, character’s intro or ending storyboard. Basicly,steps to make mugen video is convert a video file into frames and make def file to organize frame transitions and add sound or music, notice frames and the sound or music files is separated in mugen video. For example: First, choose the video which gonna be converted into mugen video.
Convert it into JPG frames and mp3 also (if you want to use the sound from original video). Choose and remember the amount of frame per second in video that being use, 15 fps is sufficient (15, 30 or 60 fps recommend).
Convert jpg files into pcx files. Pcx file format : 8 bits/channel, indexed color, black backgorund color in color table/pallete and pcx image size = 320 x 240 px . Remember fps value and total number of pcx files.You can use Alsee
Make sff (sprite file) and def files.
To make sff file: use Fighter Factory or Mugen Character Maker. Mugen Character Maker : SFF – New -Edit – Add Sprite – Untick Use shared pallete and crop image option – tick increment image – (group=0, image=0, X=0, Y=0) – choose pcx files – load – SFF – save the sff file
To make def file: use notepadd++ , type :
;start
;============================================================================ ; [Video Title] ;============================================================================ ;[Mugen video author information] ;============================================================================
;============================================================================ [SceneDef] spr = sff_file_name.sff ;———————————— [Scene 0] bgm = mp3_file_name.mp3 bgm.loop = 0 ; startscene = 0 layer0.starttime = 0 layeall.pos = 0, 0 layer0.offset = 0, 0 layer0.anim = 100 clearcolor = 0,0,0 end.time = (integer, duration of the video in ticks, 1 second= 60 ticks,) ;================================================
[Begin Action 100]
;format: group,image(increment by 1),x position,y postion, image duration in ticks
;if you follow the instruction in making sff file with mugen character maker and use 15 fps
0,0, 0,0, 4 0,1, 0,0, 4 0,2, 0,0, 4 0,3, 0,0, 4
:
:
0,(total pcx – 1), 0,0, 4
;end
Save it with the same name as the sff file name and with .def extension. Sff, def and mp3 files have to be put in the same folder.
How to put video in Mugen
To use mugen video for intro or logo: put mugen video files (sff, def and mp3) to data directory (optional), edit system.def (depends on what motif being use), fill intro.storyboard or logo.storyboard field with the mugen video’s def file complete name (with .def extension).
To use mugen video as character’s intro or ending: put mugen video files to character’s directory (optional), edit the character’s def files , fill or make intro.storyboard or ending.storyboard field with the mugen video’s def file complete name
|
|
| |
GeBo | Date: Thursday, 2011-12-22, 5:41 PM | Message # 5 |
Squire
Group: Users
Messages: 86
Awards: 0
Reputation: 0
Reproofs: 0%
Status: Offline
| thnx man
ONE FOR ALL, ALL FOR ONE!
|
|
| |