Jump to content
Sign in to follow this  
dragonsyr

ogg files problem....

Recommended Posts

I have some audio files (5-10 secs length in mp3 format). i convert the files with "Audio Conversion Wizard", "audacity", "mp3toOGGconverter" and online from http://www.oggconvert.com/.

i tried any possible setup (i think.....) i play the converted files and i hear the sounds as well .so far so good . when i call the sounds in arma , then i hear played in very fast forward style . is problem of the conversion or must change the numbers in the end of the line to slow down the speed of the file? my setup is this

class CfgSounds {
sounds[] = {Safe,contact};
class contact {name="contact";sound[]={"\TC\sounds\contact.ogg",db,1.0};titles[] = {};};
class Safe {name="Safe";sound[]={"\TC\sounds\safe.ogg",db,1.0};titles[] = {};};

};

thanks......

Edited by dragonsyr

Share this post


Link to post
Share on other sites

Here's how I recently did sounds in a mission. Almost the same as yours.

class CfgSounds 
{
   sounds[]={convo1,convo2,convo3,convo4};

    class convo1
    {
      name="convo1";
      sound[]={"sounds\areaSecure.ogg",db+5,1};
      titles[]={};
    };
 class convo2
    {
      name="convo2";
      sound[]={"sounds\hostageArea.ogg",db+5,1};
      titles[]={};
    };
 class convo3
    {
      name="convo3";
      sound[]={"sounds\hostageExtraction.ogg",db+5,1};
      titles[]={};
    };
 class convo4
    {
      name="convo4";
      sound[]={"sounds\luckyDay.ogg",db+5,1};
      titles[]={};
    };

};

Share this post


Link to post
Share on other sites

the only change i see is the db+5....... i ll try that but i dont think that this is the problem.

can i play other type of sounds???? like wav something........

btw i use this setup from arma2 with no problems .... i dont understand...... :-(

i try also mp3 to ogg lab 2004 ...same thing

Share this post


Link to post
Share on other sites

Also your path to the file(s) includes a \ mark before the path. Don't even know why that would matter :p

---------- Post added at 02:40 ---------- Previous post was at 02:39 ----------

It's possible a bad conversion though?

Share this post


Link to post
Share on other sites

sorry for this but, with no changes at all in my code, today the files plays normal......... i dont know what the problem was..

thank you for your reply.......

maybe with the restart of my pc the problem gone....

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×