SWBFGamers

Modding for the Original SWBF1 and SWBF2 => SWBF1 Modding => Topic started by: AnthonyBF2 on December 19, 2018, 03:06:21 AM

Title: Movie file names
Post by: AnthonyBF2 on December 19, 2018, 03:06:21 AM
Hey I am wondering, what are the individual video names inside of the MVS files? I need to work with the BF1 video files but don't know what the internal video names are to call them in-game.

I searched through all of the BF1 lua files but could only find a few references to shell movies. I need all of the movie names for campaigns intros & outros.

Thanks!
Title: Re: Movie file names
Post by: Giftheck on December 19, 2018, 04:42:03 AM
From shell.mlst:

// Backgrounds
..\..\_SOURCE_PC\shell\movies\start_screen.bik
..\..\_SOURCE_PC\shell\movies\main_trans.bik
..\..\_SOURCE_PC\shell\movies\main.bik
..\..\_SOURCE_PC\shell\movies\ATAT_in.bik
..\..\_SOURCE_PC\shell\movies\ATAT_screen.bik
..\..\_SOURCE_PC\shell\movies\ATTE_in.bik
..\..\_SOURCE_PC\shell\movies\ATTE_screen.bik
..\..\_SOURCE_PC\shell\movies\coreship_in.bik
..\..\_SOURCE_PC\shell\movies\coreship_screen.bik
..\..\_SOURCE_PC\shell\movies\hoth_in.bik
..\..\_SOURCE_PC\shell\movies\hoth_screen.bik
..\..\_SOURCE_PC\shell\movies\generic2_in.bik
..\..\_SOURCE_PC\shell\movies\generic2_screen.bik
..\..\_SOURCE_PC\shell\movies\generic3_in.bik
..\..\_SOURCE_PC\shell\movies\generic3_screen.bik

// Fly throughs
..\..\_SOURCE_PC\shell\movies\bes1fly.bik
..\..\_SOURCE_PC\shell\movies\bes2fly.bik
..\..\_SOURCE_PC\shell\movies\end1fly.bik
..\..\_SOURCE_PC\shell\movies\geo1fly.bik
..\..\_SOURCE_PC\shell\movies\hot1fly.bik
..\..\_SOURCE_PC\shell\movies\kam1fly.bik
..\..\_SOURCE_PC\shell\movies\kas1fly.bik
..\..\_SOURCE_PC\shell\movies\kas2fly.bik
..\..\_SOURCE_PC\shell\movies\nab1fly.bik
..\..\_SOURCE_PC\shell\movies\nab2fly.bik
..\..\_SOURCE_PC\shell\movies\rhn1fly.bik
..\..\_SOURCE_PC\shell\movies\rhn2fly.bik
..\..\_SOURCE_PC\shell\movies\tat1fly.bik
..\..\_SOURCE_PC\shell\movies\tat2fly.bik
..\..\_SOURCE_PC\shell\movies\yav1fly.bik
..\..\_SOURCE_PC\shell\movies\yav2fly.bik

// Historical Campaigns
..\..\_SOURCE_PC\shell\movies\bes1h01.bik
..\..\_SOURCE_PC\shell\movies\bes2h01.bik
..\..\_SOURCE_PC\shell\movies\end1h02.bik
..\..\_SOURCE_PC\shell\movies\end1h03.bik
..\..\_SOURCE_PC\shell\movies\geo1h01.bik
..\..\_SOURCE_PC\shell\movies\hot1h02.bik
..\..\_SOURCE_PC\shell\movies\kam1h01.bik
..\..\_SOURCE_PC\shell\movies\kam1h02.bik
..\..\_SOURCE_PC\shell\movies\nab1h01.bik
..\..\_SOURCE_PC\shell\movies\nab2h01.bik
..\..\_SOURCE_PC\shell\movies\tat1h01.bik
..\..\_SOURCE_PC\shell\movies\tat2h01.bik
..\..\_SOURCE_PC\shell\movies\yav1h01.bik
..\..\_SOURCE_PC\shell\movies\yav2h01.bik
..\..\_SOURCE_PC\shell\movies\kas2h01.bik

// Bonus Movies
//..\..\_SOURCE_PC\shell\movies\batbonus.bik
//..\..\_SOURCE_PC\shell\movies\besbonus.bik
//..\..\_SOURCE_PC\shell\movies\endbonus.bik
//..\..\_SOURCE_PC\shell\movies\geobonus.bik
//..\..\_SOURCE_PC\shell\movies\hotbonus.bik
//..\..\_SOURCE_PC\shell\movies\kambonus.bik
//..\..\_SOURCE_PC\shell\movies\nabbonus.bik
//..\..\_SOURCE_PC\shell\movies\tatbonus.bik
//..\..\_SOURCE_PC\shell\movies\wepbonus.bik
//..\..\_SOURCE_PC\shell\movies\yavbonus.bik

// Metagame Movies
..\..\_SOURCE_PC\shell\movies\gc_all01.bik
..\..\_SOURCE_PC\shell\movies\gc_all02.bik
..\..\_SOURCE_PC\shell\movies\gc_cis01.bik
..\..\_SOURCE_PC\shell\movies\gc_cis02.bik
..\..\_SOURCE_PC\shell\movies\gc_imp01.bik
..\..\_SOURCE_PC\shell\movies\gc_imp02.bik
..\..\_SOURCE_PC\shell\movies\gc_rep01.bik
..\..\_SOURCE_PC\shell\movies\gc_rep02.bik
..\..\_SOURCE_PC\shell\movies\gc_screen.bik
Title: Re: Movie file names
Post by: Teancum on December 19, 2018, 09:38:59 AM
Here's a great topic on movie playback in general. How to make them, how to play them, useful functions, etc.

http://gametoast.com/viewtopic.php?f=27&t=12622
Title: Re: Movie file names
Post by: Red04SWBF on December 19, 2018, 12:53:00 PM
Yeah, I was recently involved in the management of flythrough movies and the truth is that it's very easy to do.

I think that in this thread it is explained too: http://www.swbfgamers.com/index.php?topic=4692.msg45265#msg45265 (http://www.swbfgamers.com/index.php?topic=4692.msg45265#msg45265)
Title: Re: Movie file names
Post by: AnthonyBF2 on December 19, 2018, 01:04:48 PM
Quote from: Giftheck on December 19, 2018, 04:42:03 AM
From shell.mlst:

// Backgrounds
..\..\_SOURCE_PC\shell\movies\start_screen.bik
..\..\_SOURCE_PC\shell\movies\main_trans.bik
..\..\_SOURCE_PC\shell\movies\main.bik
..\..\_SOURCE_PC\shell\movies\ATAT_in.bik
..\..\_SOURCE_PC\shell\movies\ATAT_screen.bik
..\..\_SOURCE_PC\shell\movies\ATTE_in.bik
..\..\_SOURCE_PC\shell\movies\ATTE_screen.bik
..\..\_SOURCE_PC\shell\movies\coreship_in.bik
..\..\_SOURCE_PC\shell\movies\coreship_screen.bik
..\..\_SOURCE_PC\shell\movies\hoth_in.bik
..\..\_SOURCE_PC\shell\movies\hoth_screen.bik
..\..\_SOURCE_PC\shell\movies\generic2_in.bik
..\..\_SOURCE_PC\shell\movies\generic2_screen.bik
..\..\_SOURCE_PC\shell\movies\generic3_in.bik
..\..\_SOURCE_PC\shell\movies\generic3_screen.bik

// Fly throughs
..\..\_SOURCE_PC\shell\movies\bes1fly.bik
..\..\_SOURCE_PC\shell\movies\bes2fly.bik
..\..\_SOURCE_PC\shell\movies\end1fly.bik
..\..\_SOURCE_PC\shell\movies\geo1fly.bik
..\..\_SOURCE_PC\shell\movies\hot1fly.bik
..\..\_SOURCE_PC\shell\movies\kam1fly.bik
..\..\_SOURCE_PC\shell\movies\kas1fly.bik
..\..\_SOURCE_PC\shell\movies\kas2fly.bik
..\..\_SOURCE_PC\shell\movies\nab1fly.bik
..\..\_SOURCE_PC\shell\movies\nab2fly.bik
..\..\_SOURCE_PC\shell\movies\rhn1fly.bik
..\..\_SOURCE_PC\shell\movies\rhn2fly.bik
..\..\_SOURCE_PC\shell\movies\tat1fly.bik
..\..\_SOURCE_PC\shell\movies\tat2fly.bik
..\..\_SOURCE_PC\shell\movies\yav1fly.bik
..\..\_SOURCE_PC\shell\movies\yav2fly.bik

// Historical Campaigns
..\..\_SOURCE_PC\shell\movies\bes1h01.bik
..\..\_SOURCE_PC\shell\movies\bes2h01.bik
..\..\_SOURCE_PC\shell\movies\end1h02.bik
..\..\_SOURCE_PC\shell\movies\end1h03.bik
..\..\_SOURCE_PC\shell\movies\geo1h01.bik
..\..\_SOURCE_PC\shell\movies\hot1h02.bik
..\..\_SOURCE_PC\shell\movies\kam1h01.bik
..\..\_SOURCE_PC\shell\movies\kam1h02.bik
..\..\_SOURCE_PC\shell\movies\nab1h01.bik
..\..\_SOURCE_PC\shell\movies\nab2h01.bik
..\..\_SOURCE_PC\shell\movies\tat1h01.bik
..\..\_SOURCE_PC\shell\movies\tat2h01.bik
..\..\_SOURCE_PC\shell\movies\yav1h01.bik
..\..\_SOURCE_PC\shell\movies\yav2h01.bik
..\..\_SOURCE_PC\shell\movies\kas2h01.bik

// Bonus Movies
//..\..\_SOURCE_PC\shell\movies\batbonus.bik
//..\..\_SOURCE_PC\shell\movies\besbonus.bik
//..\..\_SOURCE_PC\shell\movies\endbonus.bik
//..\..\_SOURCE_PC\shell\movies\geobonus.bik
//..\..\_SOURCE_PC\shell\movies\hotbonus.bik
//..\..\_SOURCE_PC\shell\movies\kambonus.bik
//..\..\_SOURCE_PC\shell\movies\nabbonus.bik
//..\..\_SOURCE_PC\shell\movies\tatbonus.bik
//..\..\_SOURCE_PC\shell\movies\wepbonus.bik
//..\..\_SOURCE_PC\shell\movies\yavbonus.bik

// Metagame Movies
..\..\_SOURCE_PC\shell\movies\gc_all01.bik
..\..\_SOURCE_PC\shell\movies\gc_all02.bik
..\..\_SOURCE_PC\shell\movies\gc_cis01.bik
..\..\_SOURCE_PC\shell\movies\gc_cis02.bik
..\..\_SOURCE_PC\shell\movies\gc_imp01.bik
..\..\_SOURCE_PC\shell\movies\gc_imp02.bik
..\..\_SOURCE_PC\shell\movies\gc_rep01.bik
..\..\_SOURCE_PC\shell\movies\gc_rep02.bik
..\..\_SOURCE_PC\shell\movies\gc_screen.bik


You are my new idol.
Title: Re: Movie file names
Post by: Teancum on December 20, 2018, 10:17:32 AM
I guess I never realized the menu background was actual movie files. I just figured it was Flash animations or something like that.

Nice find Gistech!
EhPortal 1.34 © 2024, WebDev