dragonsyr 21 Posted December 1, 2013 (edited) 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 December 1, 2013 by dragonsyr Share this post Link to post Share on other sites
iceman77 19 Posted December 1, 2013 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
dragonsyr 21 Posted December 1, 2013 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
iceman77 19 Posted December 1, 2013 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
dragonsyr 21 Posted December 1, 2013 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