Playsound funtion not working DEV-C++
hi, i have written this code.
#include<iostream>
#include<windows.h>
#include<mmsystem.h>
#include<stdlib.h>
using namespace std;
int main (char argc)
{
PlaySound("TardisTest1.wav", NULL, SND_FILENAME | SND_ASYNC);
system("pause");
return 0;
}
and for some reason, when the program runs, all it does is system("pause); and it doesnt play the sound. I have my sound file included in the folder of my project. any solutions?
Related Article: Test your C/C++ Skills [Free Online Test]
is a C++ discussion thread by usa6631 that has 6 replies, was last updated 2 years ago and has been tagged with the keywords: c/c++, free, knowledge, online, skills, test.
thecoolman5
Posting Whiz in Training
237 posts since Dec 2010
Reputation Points: 18
Solved Threads: 1
Skill Endorsements: 0
Try ensuring that you're passing the right kind of variable, by wrapping the string as follows:
PlaySound(TEXT("TardisTest1.wav"), NULL, SND_FILENAME | SND_ASYNC);
The project directory is not guaranteed to be the working directory of the executable. Try giving an absolute path (e.g. "C:/TardisTest1.wav").
Also, PlaySound gives a return value. Check that value to see if the function was successful.
Do you hear any sound at all? If the function can't find the file, you should hear the default sound.
Moschops
Posting Shark
942 posts since Sep 2008
Reputation Points: 305
Solved Threads: 179
Skill Endorsements: 5
ok, that got it to work. now, is there any way to play an ogg audio file?
thecoolman5
Posting Whiz in Training
237 posts since Dec 2010
Reputation Points: 18
Solved Threads: 1
Skill Endorsements: 0
Moschops
Posting Shark
942 posts since Sep 2008
Reputation Points: 305
Solved Threads: 179
Skill Endorsements: 5
Well, I have been using DEV-C++ ever since I was 10 years old and I don't want to give up on it now. But thanks for helping me.
thecoolman5
Posting Whiz in Training
237 posts since Dec 2010
Reputation Points: 18
Solved Threads: 1
Skill Endorsements: 0
Question Answered as of 2 Years Ago by
Moschops "I have been using DEV-C++ ever since I was 10 years old"
That makes me wince. We don't say it's bad just for the fun of it. It really is bad. Just because you've learned how to work around all the problems doesn't mean you can't get something better.
Moschops
Posting Shark
942 posts since Sep 2008
Reputation Points: 305
Solved Threads: 179
Skill Endorsements: 5
Well, I would rather prefer to stick to what I'm use to.
thecoolman5
Posting Whiz in Training
237 posts since Dec 2010
Reputation Points: 18
Solved Threads: 1
Skill Endorsements: 0
Of course, of course. It's entirely your choice to use, for example, a compiler that is not C++ standard compliant. Be aware that if you ever have to work with another compiler, you might find that your code stops working. It is possible to continue using Dev-C++ and swap out the compiler for a better one, so that's always an option.
Moschops
Posting Shark
942 posts since Sep 2008
Reputation Points: 305
Solved Threads: 179
Skill Endorsements: 5
thecoolman5
Posting Whiz in Training
237 posts since Dec 2010
Reputation Points: 18
Solved Threads: 1
Skill Endorsements: 0
One more thing, how do you get the audio to speed up?
thecoolman5
Posting Whiz in Training
237 posts since Dec 2010
Reputation Points: 18
Solved Threads: 1
Skill Endorsements: 0
And how do you get it to play two songs at the same time?
thecoolman5
Posting Whiz in Training
237 posts since Dec 2010
Reputation Points: 18
Solved Threads: 1
Skill Endorsements: 0
You can't do that with PlaySound. If you want that kind of functionality you need a library like OpenAL or SDL or SFML etc...
m4ster_r0shi
Posting Whiz in Training
283 posts since Mar 2010
Reputation Points: 172
Solved Threads: 41
Skill Endorsements: 2