thaniels
Junior Member
Posts: 32
Threads: 4
Joined: May 2013
Reputation:
0
|
Some .srt files play, others stay silent. urgent help needed
Hello once again forum,
I have stumbled upon another error in my custom story, a strange one this time. I have recorded several custom sounds (voices) and implemented them in my custom story, the first 5 work fine they play when the trigger area is hit and all is well. Here is the strange thing, the rest of the trigger area's I hit, do trigger the functions given to them apart from playing the .srt file. I have checked the code and it is identical to the code I use for the ones that work, I heard that audacity could sometimes sent corrupted files and i have tried with several different other converters in the hope they would give me files that do work.
I have no idea what is going on, i have copied the file names directly from how they are saved as the .ogg files, the files work when i play them in audacity and other sound programs but fail when I try to play them in game.
Please can anyone help me I need to present my Specialization project (I made this custom story for a school project as proof of a theory i wanted to investigate) on Tuesday so I hope some one can help me quick
Kind regards
Thaniels
P.S.
I have my maps, the code plus the sound files in a download link at the bottom, feel free to go through them I just don't know what to do anymore.
http://www.2shared.com/file/ghuncyY_/Spe..._Copy.html
(This post was last modified: 06-24-2013, 01:13 AM by thaniels.)
|
|
06-23-2013, 11:02 PM |
|
Kullin
Member
Posts: 218
Threads: 23
Joined: May 2013
Reputation:
3
|
RE: Some .srt files play, others stay silent. urgent help needed
.SRT?
Do you mean .SNT?
|
|
06-24-2013, 09:52 AM |
|
thaniels
Junior Member
Posts: 32
Threads: 4
Joined: May 2013
Reputation:
0
|
RE: Some .srt files play, others stay silent. urgent help needed
(06-24-2013, 09:52 AM)Kullin Wrote: .SRT?
Do you mean .SNT?
yes, that is what i mean.
Still I am hopeless at the moment nothing seems to work and i'm running out of time, does anyone know how to solve this problem? could anyone take a look at the files?
|
|
06-24-2013, 10:43 AM |
|
FlawlessHappiness
Posting Freak
Posts: 3,980
Threads: 145
Joined: Mar 2012
Reputation:
171
|
RE: Some .srt files play, others stay silent. urgent help needed
Some combinations in the snt files doesn't work. If you have edited the .snt file manually that's probably the problem. Ex. You set loop to true, but keep Stream at false, or something like that.
If this is the case, copy a sound that has the settings you need (Like looping for example), change the names inside it, and it should work.
Trying is the first step to success.
|
|
06-24-2013, 12:17 PM |
|
thaniels
Junior Member
Posts: 32
Threads: 4
Joined: May 2013
Reputation:
0
|
RE: Some .srt files play, others stay silent. urgent help needed
(06-24-2013, 12:17 PM)BeeKayK Wrote: Some combinations in the snt files doesn't work. If you have edited the .snt file manually that's probably the problem. Ex. You set loop to true, but keep Stream at false, or something like that.
If this is the case, copy a sound that has the settings you need (Like looping for example), change the names inside it, and it should work.
tried it, it doesn't work thanks for the help though maybe a different suggestion?
|
|
06-24-2013, 01:11 PM |
|
OriginalUsername
Posting Freak
Posts: 896
Threads: 42
Joined: Feb 2013
Reputation:
34
|
RE: Some .srt files play, others stay silent. urgent help needed
Easiest way is just to copy the working ones and paste them in the ones that don't work. Change the names and other stuff and you're good to go. I also noticed there are some items in the where the playsoundatentity command doesn't work. So I usually work with script areas.
Hope this helps!
|
|
06-24-2013, 07:27 PM |
|
thaniels
Junior Member
Posts: 32
Threads: 4
Joined: May 2013
Reputation:
0
|
RE: Some .srt files play, others stay silent. urgent help needed
(06-24-2013, 07:27 PM)Smoke Wrote: Easiest way is just to copy the working ones and paste them in the ones that don't work. Change the names and other stuff and you're good to go. I also noticed there are some items in the where the playsoundatentity command doesn't work. So I usually work with script areas.
Hope this helps!
thanks, I tried it, doesn't work
|
|
06-25-2013, 12:53 PM |
|
OriginalUsername
Posting Freak
Posts: 896
Threads: 42
Joined: Feb 2013
Reputation:
34
|
RE: Some .srt files play, others stay silent. urgent help needed
Then there's probably something wrong with your .ogg file
|
|
06-25-2013, 01:15 PM |
|
Daemian
Posting Freak
Posts: 1,129
Threads: 42
Joined: Dec 2012
Reputation:
49
|
RE: Some .srt files play, others stay silent. urgent help needed
Thaniels i just opened your zip and noticed the problem right away.
I opened the zip, went directly to a .snt file and found this:
<Main> <Sound File="<font 9pt:normal/auto;;rgb(255, 0, 0);;inherit>call_001.ogg</font> " /> </Main>
Probably your text editor is trying to give format to that text.
Maybe it is set to html ?
Anyways, this is the right way:
<Main> <Sound File="call_001" /> </Main>
And i don't know why all your sounds are named:
Monster_conversation_01.mp3.OGG
Reaction_monster.wav.OGG
But keep that in mind when writing down the names in the .snt files.
|
|
06-25-2013, 10:39 PM |
|
richm0nkey
Junior Member
Posts: 35
Threads: 9
Joined: Feb 2013
Reputation:
1
|
RE: Some .srt files play, others stay silent. urgent help needed
(06-25-2013, 10:39 PM)Amn Wrote: And i don't know why all your sounds are named:
Monster_conversation_01.mp3.OGG
Reaction_monster.wav.OGG
But keep that in mind when writing down the names in the .snt files.
His windows explorer may not be set to show extensions for known file types yet. Ie instead of the file saying call_001.ogg in windows explorer it just says call_001 because it is a known file type. If the properties are not set to show the extensions it is impossible to change the file type by renaming it.
|
|
06-27-2013, 07:19 AM |
|
|