Custom Voice Overs?
Moderator: Moderators
-
Epifire
- First Lance Corporal

- Posts: 124
- Joined: Wed Mar 10, 2010 6:11 pm
- Projects :: Supplies Outpost
- xbox live or psn: SirEpifire
- Location: Dantooine, East of the enclave.
Custom Voice Overs?
I have seen some fairly old subjects lightly go over custom voice overs but say if I wanted to make my own Modded soldier unit, how would I record my own voice overs?
Like what type of settup would you need, I know right off hand you would need a good mic and so on but what programs, formatts, or sound cards would be adequet for the job?
Im thinking this would also include a budget as well, cause I mean if it takes a bit of effort for a company to make voice overs, how much more would it be for a single person to do at least half the job?
Now I'm not saying to build a giant sound studio in my basement, but to make a afordable work station to pull its own weight for recording.
It's a big venture but when you got to much time on your hands it does suffice.
Any inputt would be great.
Like what type of settup would you need, I know right off hand you would need a good mic and so on but what programs, formatts, or sound cards would be adequet for the job?
Im thinking this would also include a budget as well, cause I mean if it takes a bit of effort for a company to make voice overs, how much more would it be for a single person to do at least half the job?
Now I'm not saying to build a giant sound studio in my basement, but to make a afordable work station to pull its own weight for recording.
It's a big venture but when you got to much time on your hands it does suffice.
Any inputt would be great.
-
Darth_Spiderpig
- Sith Master

- Posts: 2631
- Joined: Fri Mar 27, 2009 10:23 am
- Projects :: Something cool...
- xbox live or psn: Has no xbox....Yup
- Location: Does whatever a Spiderpig does
- Contact:
Re: Custom Voice Overs?
Well, you could start with something easy.
you just need to record your sound, save it as .wav, refer it in your units odf file, munge the sound file (I do it via the BF1 ModTools) and violá.
I don't think anything more is needed, so try it out, if you have questions, feel free to ask.
you just need to record your sound, save it as .wav, refer it in your units odf file, munge the sound file (I do it via the BF1 ModTools) and violá.
I don't think anything more is needed, so try it out, if you have questions, feel free to ask.
- ANDEWEGET
- Ancient Force

- Posts: 1266
- Joined: Tue Apr 01, 2008 8:42 am
- Location: Germany
- Contact:
Re: Custom Voice Overs?
Audacity is a very nice program for everything soundrelated.
-
Epifire
- First Lance Corporal

- Posts: 124
- Joined: Wed Mar 10, 2010 6:11 pm
- Projects :: Supplies Outpost
- xbox live or psn: SirEpifire
- Location: Dantooine, East of the enclave.
Re: Custom Voice Overs?
Thanks for the tips.
Audacity works pretty good for a free program, and oh you guys wouldn't know where you put the files would you?
Im all ears here cause your looking at a Modder in the making (in other words extreme noob) I only now a little about munging with BF 1. maps, but I didn't know it was used with sound files.
I actually have some ok voice overs for common commands and such using Audacity, I lost my free version of "WavePad Sound Editor" so I went with audacity since it was suggested to me here.
Im sorry to be such a noob half the time but this is the only place to get answers these days.
Audacity works pretty good for a free program, and oh you guys wouldn't know where you put the files would you?
Im all ears here cause your looking at a Modder in the making (in other words extreme noob) I only now a little about munging with BF 1. maps, but I didn't know it was used with sound files.
I actually have some ok voice overs for common commands and such using Audacity, I lost my free version of "WavePad Sound Editor" so I went with audacity since it was suggested to me here.
Im sorry to be such a noob half the time but this is the only place to get answers these days.
-
Darth_Spiderpig
- Sith Master

- Posts: 2631
- Joined: Fri Mar 27, 2009 10:23 am
- Projects :: Something cool...
- xbox live or psn: Has no xbox....Yup
- Location: Does whatever a Spiderpig does
- Contact:
Re: Custom Voice Overs?
You're welcome.Epifire wrote:Thanks for the tips.
You mean after or before munging?Epifire wrote:oh you guys wouldn't know where you put the files would you?
If you mean before, place them in your BF1 modtools folder/data***/sound/worlds/***/effects folder.
Then you need to edit the ***.asfx to contain a line like this:
Code: Select all
effects\atte_blast.wav -resample pc 22050Next would be editing the "Sound_Prop_File_Referenced_Here" file.
Code: Select all
{
Name("atte_blast");
Group("weapons");
Inherit("weapon_template");
SampleList()
{
Sample("atte_blast", 1.0);
}
}Then you need to munge the map.
Next is open the maps lua (BFBuilder/data***/common/Scripts/*** ---> open the c_con for clone wars, g_con for gcw conquest, I think you know where you want the sound in
Code: Select all
ReadDataFile("sound\\yav.lvl;yav1cw")Code: Select all
ReadDataFile("dc:sound\\***.lvl;***cw")(*** is the 3-letter formation you used when munging the sound in the BF1 modtools)
Good, then go to your unit's odf (the unit you want to change the VO)
I hope you've got a custom side ready (as in here, if you don't know how)
Add this to it:
Code: Select all
HurtSound = "rep_inf_com_chatter_wound"
DeathSound = "rep_inf_com_chatter_death"
DamageRegionSound = "repmalechoke"
//AcquiredTargetSound = "rep_inf_com_chatter_acquired"
//HidingSound = "rep_inf_com_chatter_hide"
//ApproachingTargetSound = "rep_inf_com_chatter_approach"
//FleeSound = "rep_inf_com_chatter_flee"
//PreparingForDamageSound = "rep1_inf_chatter_PreparingForDamageSound"
//Charge = "rep1_inf_chatter_Charge"
//HeardEnemySound = "rep_inf_com_chatter_heard"
//ShockFadeOutTime = "0.8"
//ShockFadeInTime = "2.0"
ShockFadeOutGain = ""
ShockSound = ""
ClothingRustleSound = ""
LowHealthSound = ""And change whatever you want (important is to use the correct name of your new sound)
This is it, hope that helps.
Last edited by Darth_Spiderpig on Tue Mar 30, 2010 11:18 am, edited 1 time in total.
-
Epifire
- First Lance Corporal

- Posts: 124
- Joined: Wed Mar 10, 2010 6:11 pm
- Projects :: Supplies Outpost
- xbox live or psn: SirEpifire
- Location: Dantooine, East of the enclave.
Re: Custom Voice Overs?
Ok I think this will all make sense in time for me, but Im a little confused when it comes to munging as I don't even know it's general perpose.
Now the question for me is doing as you stated, Ill get there with enough time spent on my PC but it will be awile for everthing to register with me (I'm a bit slow in other words).
The next thing to try would be editing a allready made sound efect.
Example:
You just got done taking an outpost for the CIS faction in game and the autable tone of "we have captured a command post" would be acompanied by a short guitar piece for a more cool feel.
I think it would be generaly the same to what you said exept that you would need to extract the sound file, edit it, and then return it to its previous place.
Am I missing anything?
Now the question for me is doing as you stated, Ill get there with enough time spent on my PC but it will be awile for everthing to register with me (I'm a bit slow in other words).
The next thing to try would be editing a allready made sound efect.
Example:
You just got done taking an outpost for the CIS faction in game and the autable tone of "we have captured a command post" would be acompanied by a short guitar piece for a more cool feel.
I think it would be generaly the same to what you said exept that you would need to extract the sound file, edit it, and then return it to its previous place.
Am I missing anything?
- ANDEWEGET
- Ancient Force

- Posts: 1266
- Joined: Tue Apr 01, 2008 8:42 am
- Location: Germany
- Contact:
Re: Custom Voice Overs?
This would be <shortmapname>c and <shortmapname>a in SWBF I.Darth_Spiderpig wrote:...open the c_con for clone wars, g_con for gcw conquest...
-
Darth_Spiderpig
- Sith Master

- Posts: 2631
- Joined: Fri Mar 27, 2009 10:23 am
- Projects :: Something cool...
- xbox live or psn: Has no xbox....Yup
- Location: Does whatever a Spiderpig does
- Contact:
Re: Custom Voice Overs?
Oh yes.ANDEWEGET wrote:This would be <shortmapname>c and <shortmapname>a in SWBF I.Darth_Spiderpig wrote:...open the c_con for clone wars, g_con for gcw conquest...
Thanks for poining it out.
Munging packs (converts) all your files in one file your game reads and takes all information it needs out of it. A munged file for the game ends in .lvlEpifire wrote:Im a little confused when it comes to munging as I don't even know it's general perpose.
There goes our problem, we can't extract files out of a lvl, so we can't get this sounds.Epifire wrote:I think it would be generaly the same to what you said exept that you would need to extract the sound file, edit it, and then return it to its previous place.
And I don't know if you even can change the cp_capture sound, I guess that would require a new global.lvl...hmhm
- Ginev
- Command Sergeant Major

- Posts: 260
- Joined: Thu Apr 02, 2009 7:02 am
- Projects :: Remaking FR Battlefront 3 Tatooine map.
- xbox live or psn: No gamertag set
- Location: Bulgaria
Re: Custom Voice Overs?
Ok i have problem.When i munge my map you say that i have to go addon then inside my map folder and to get the sound folder in my desktop.Well the problem is that when i go in my folder there is no sound folder.What is the problem everything else i fine.
-
Darth_Spiderpig
- Sith Master

- Posts: 2631
- Joined: Fri Mar 27, 2009 10:23 am
- Projects :: Something cool...
- xbox live or psn: Has no xbox....Yup
- Location: Does whatever a Spiderpig does
- Contact:
Re: Custom Voice Overs?
There must be one, everytime you munge a map in BF1 there will be one.
EDIT:
Seems like I forgot something important in the tut.
You'll need these assets to get all working, sorry for that.
- Ginev
- Command Sergeant Major

- Posts: 260
- Joined: Thu Apr 02, 2009 7:02 am
- Projects :: Remaking FR Battlefront 3 Tatooine map.
- xbox live or psn: No gamertag set
- Location: Bulgaria
Re: Custom Voice Overs?
Well for some reason when i munge map i dont have sound folder.When i munge map i have only this folders:FPM,side,shell,movies and the *** folder.thats all.there is no sound folder.The only lvl files is core and mission.no sound lvl.Pls guys why when i munge map dont have sound folder? 
-
Darth_Spiderpig
- Sith Master

- Posts: 2631
- Joined: Fri Mar 27, 2009 10:23 am
- Projects :: Something cool...
- xbox live or psn: Has no xbox....Yup
- Location: Does whatever a Spiderpig does
- Contact:
Re: Custom Voice Overs?
Hmm
I can't say, for me they have always.
Well, as I said in the pM, send me your sound and I'll munge it for you.
I can't say, for me they have always.
Well, as I said in the pM, send me your sound and I'll munge it for you.
- Ginev
- Command Sergeant Major

- Posts: 260
- Joined: Thu Apr 02, 2009 7:02 am
- Projects :: Remaking FR Battlefront 3 Tatooine map.
- xbox live or psn: No gamertag set
- Location: Bulgaria
Re: Custom Voice Overs?
I send you PM whit link for my map.If you find the problem give me link to download the fixed map and show what was the problem so not happen this again 
