Hey I'm pretty new to C++. I'm taking a class on it now but I don't know how to make sounds in C++... I've done QBasic so I have a little programming background. I'm right now thinking of what to do for a program, and it largely depends on if I can make sounds or not and what sounds. I'm hoping to make some sort of dial up sound. If you can point me in the right direction or help me in any way, it'd be greatly appreciated. Thanks! :mrgreen:

-Dem-

Recommended Answers

All 18 Replies

C and C++ do not have built-in standard support for sound. You will need to mention your compiler and OS and look into sound libraries.

I'm using DevC++ from Bloodshed and my OS is XP. I looked at the libraries and have no idea which is sound :cry:

Dem

I assume you are using Windows. With your knowledge in basic you should look into BCX. It programs in a modern basic and then translates to compile with a number of C or C++ compilers. I look at C is just a subset of C++, well let's say 99% of it is.

BCX comes with a fair number of sound examples. Look over the generated C code to get an understanding of the API calls it makes.

You can download the whole system for free from:
http://www.rjpcomputing.com/programming/bcx/devsuite.html

I have used BCX to learn the finer points of C and C++ myself for quite a while, and recommend it as a learning tool!

For simple sounds on the internal speaker use a Windows API call to Beep(), the code below should work with most any C++ compiler. I tested it with the Dev C++ IDE that uses the very generic GNU compiler G++.

// simple sounds via Beep(frequency_hrz, duration_ms)

#include <iostream>
#include <windows.h>   // WinApi header

using namespace std;

int main()
{
  Beep(523,500);  // 523 hertz (C5) for 500 milliseconds
  Beep(587,500);
  Beep(659,500);
  Beep(698,500);
  Beep(784,500);
  
  cin.get(); // wait
  return 0;
}

I'm using DevC++ from Bloodshed and my OS is XP. I looked at the libraries and have no idea which is sound :cry:

Dem

Okay, that helps. Now you can get beyond Beep() and use your soundchip. There is a little code snippet called "Play a MIDI voice (Dev C++ console program)" on DaniWeb at:

http://www.daniweb.com/code/snippet97.html

For those who need some hand holding with the Dev C++ IDE:
In the IDE go to FILE, then NEW, then Project, select (in this case) Console Application, give it a name like Sound1 then click OK. A filesave dialog box comes up, create a new folder, might as well call it Sound1, open it and save project file Sound1.dev there. The DevCpp IDE comes up with a bare bones template, select and delete that and cut and paste the snippet code into the empty editor page. Now compile and run. Don't forget to turn your speakers on.

commented: it is posts like these that are a prime example of a good forum member. +5

#include <iostream>
#include <windows.h> // WinApi header

using namespace std;

int main()
{
Beep(523,500); // 523 hertz (C5) for 500 milliseconds
Beep(587,500);
Beep(659,500);
Beep(698,500);
Beep(784,500);

cin.get(); // wait
return 0;
}

Heey ok thanks, the beeping worked and the other code for the 'voices' worked but now I'm trying to figure out how that code works. Any hints would help. The script is located in the URL given in an above post.

Thanks everyone!
-Dem-

Heey ok thanks, the beeping worked and the other code for the 'voices' worked but now I'm trying to figure out how that code works. Any hints would help. The script is located in the URL given in an above post.

Thanks everyone!
-Dem-

Much of the code has to do with converting something you and I understand, like frequency, duration, and instrument to something the midi part of the sound chip in your computer understands.

There is another way to make a sound, quite simple, you load a wave file and play it:

// play a wave file sound using the winmm library
// For DevCpp add the library libwinmm.a to linker via 
// Project/Project Options/Parameters/Add Library
// remember this is a console program!

#include <iostream>
#include <windows.h>   // for PlaySound()

#define SND_FILENAME 0x20000
#define SND_LOOP 8
#define SND_ASYNC 1

using namespace std;

int main()
{
  // play sound as loop (remove SND_LOOP for one time play)
  // file boing.wav has be in the working directory
  PlaySound("boing.wav",NULL,SND_FILENAME|SND_LOOP|SND_ASYNC); 
  
  cin.get(); // wait
  return 0;
}

Is it possible for a console to make the sound be heard on other players computers ??
Like in a game.. Without changing the client the game is played on :?:

I Used Borland C++ Version 5.02 With OS Windows... can you all help me to write source code to play music/sound in C/C++ language and adding picture to C... THX...

Lizel.....welcome aboard.I reccommend taking a look at the Rules & FAQ for the daniweb forum. Please do not re-open old threads....look at the posting date of the question before you reply. Again ,welcome. Please start your own thread with what you've tried!

thanks for the link to BCX ... i've found a few other links along the way.
i was hoping this BCX could help me translate some vb6 projects to native C/C++ apps so i could study the code and learn more.

how do the numbers correspond to a sound? I want to be able to play a song snippet...

A few note frequencies

E = 329
B = 493
Fs = 698
Es = 659
Gs = 783
G = 392
A = 440
D = 587
F = 349

Frequencies for equal-tempered scale
C5= 523.25
D5=587.33
E5=659.25
F5=698.46
G5=783.99
A5=880.00
B5=987.77

If your system is running Linux, then you can use the Alsa and pulseaudio sound libraries. Windows has its own stuff to use. These may be C libraries, but you can use them in C++. That said, if you want to do low-level sound programming to a sound card and not just the computer's tiny speaker, then you will have to get the programming documentation and/or software libraries for your particular card. In any case, there are a lot of SDK tools out there to help write audio processing code. In the deep dark past I have written code to make non-trivial sound streams to play through the computer speaker. It requires a LOT of diddling of the analog output ports of the sound chip.

Hey
I'm new to c++ and using Eclipse as IDE on ubuntu. My question is the same, How to insert a BEEP sound in mentioned IDE and OS.

hey! i am new to c language please guide me how can i add my own soundfile in a c program ( DEVC++ compiler ) by bloodshed ..
please guide

commented: Please make a new discussion. https://www.daniweb.com/programming/software-development/threads/15252/sound-in-c +15
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.