Hello
I am writing a program to play audio only through the right earphone. The code is below. Why is it not working? Audio plays through both.
#include <SFML/Audio.hpp>
#include <iostream>
using namespace std;
using namespace sf;
void playSound() {
SoundBuffer Buffer;
// Load a sound buffer from a wav file
if (!Buffer.loadFromFile("right.wav"))
cout << "ERROR!" << endl;
sf::Listener::setPosition(10.f, 0.f, 5.f);
sf::Listener::setDirection(1.f, 0.f, 0.f);
// Load a sound buffer from a wav file
Sound Sound(Buffer);
Sound.play();
// Loop while the sound is playing
while (Sound.getStatus() == sf::Sound::Playing) {
sf::Time t1 = sf::seconds(0.1f);
sf::sleep(t1);
// Display the playing position
cout << "\rPlaying... " << endl;
}
}
int main() {
playSound();
cout << "Done" << endl;
return EXIT_SUCCESS;
}
Thanks for the heads up. I converted the audio to mono using Audacity but the problem still persists. Just to give a little more scenario. I am using Sublime Text and compiling using g++.
I changed the code to what is seen below. Still no change.
sf::Listener::setPosition(0.f, 0.f, 0.f);
sf::Listener::setDirection(1.f, 0.f, 0.f);
sf::Sound::setPosition(10.f, 0.f, 0.f);
sf::Sound::SetRelativeToListener(true);
To clarify,
sf::Listener::setDirection(1.f, 0.f, 0.f);
means that the listener is "turned to the right".
The position of the sound is relative to the listener but the orientation is not.