Questions tagged [speaker]

233 questions
2
votes
1 answer

Possible to do Real Time Monitoring of Speaker Output?

I was hoping to create one of those apps that shows goofy colors on the screen that is dependent on what is coming from the speaker, in particular the intensity of the sound, and in real time as is possible. I figure there are two possible scenarios…
Tam
  • 1,189
  • 10
  • 15
2
votes
1 answer

Speaker Recognition in iPhone Application

I want to track voice by using voice recognition functionality in iPhone App for security purposes. Every user can record his/her voice and open the application by his/her voice being recognized only which was recored and stored in a database. Does…
1
vote
1 answer

Audio streaming from microphone to Speaker in iphone xcode

Actually i'm a newbee to iOS development. My requirement from a client is to make iPhone work as a MegaPhone. i.e, Audio input should be taken from the bluetooth or microphone and broadcast it through phone speakers. I am able to record audio from…
1
vote
2 answers

How to access rear and front speaker of Android phones?

I want to access rear and front speakers of android phones, programmatically.
Talha Hafeez
  • 181
  • 2
  • 10
1
vote
2 answers

Blackberry - EventInjector to activate speaker

I am trying to activate the speaker-phone for an incoming call. I am able to accept the incoming call programatically through the EventInjector.KeyCodeEvent, but I am not able to turn on the speaker-phone with the KeyCodeEvent. I registered with…
venu88
  • 41
  • 4
1
vote
2 answers

How to play sounds through speaker connected to ATMega328PB board (in C)

I have a project involving using an AVR microcontroller (ATMega328PB), connected to a keyboard and small speaker, where each key should play a specific tone, like a piano. I have used the keyboard to call inputs to activate LEDs, but I don't know…
1
vote
1 answer

how to play sound instaed Headset ,from speaker directly on android?

I am trying to play a media file and Listening it on Headset, Now I am trying to give a soft button that using for SpeakerOn and Speakeroff. mAudioManager.setMode(AudioManager.MODE_IN_CALL); mAudioManager.setSpeakerphoneOn(true); I have give…
anshu
  • 165
  • 2
  • 3
  • 13
1
vote
0 answers

AttributeError: 'NoneType' object has no attribute 'items' in pyannote speaker diarization package

When working with the pyannote python package from GitHub (tutorial link -> https://github.com/pyannote/pyannote-audio/blob/develop/tutorials/voice_activity_detection.ipynb) I receive the following error: enter image description here The…
askrobola
  • 11
  • 1
1
vote
1 answer

Playing music notes through speaker in TASM assembly

I'm trying to write a program in TASM that plays music notes. I couldn't find any documentation online and the closest thing I found was this stackoverflow question, which is able to produce a "beep" sound. What I don't know is: How this code…
Ariel Yael
  • 361
  • 2
  • 10
1
vote
0 answers

Match slot to multiple values

In my skill I'm using a Custom Slot for a list of Programs. These programs have a list of synonyms/alias that resolve to the Program title if matched. Sometimes it's possible that multiple programs have a common synonym, in that case I would need to…
1
vote
0 answers

Is it possible to play PCM samples in React Native?

I am trying to play real-time PCM samples which are coming from a TCP socket in React Native. I have found some libraries like react-native-sound-player and react-native-simple-audio-player. However, none of them provide an interface to work with…
1
vote
0 answers

How can i connect Raspberry pi Microphone over Bluetooth to my Phone/Computer

i hava following project, which i want to execute: I want to add a Microphone on my Raspberry. After, i want to connect my raspberry over Bluetooth to my Phone/Computer. My goal is, to speak in the Microphone and the spoken Sound is sent to my…
manintree
  • 13
  • 4
1
vote
1 answer

Output sound on a specific speaker on a 5.1 surround system using dsound.h library

I have a 5.1 surround system that I am using to output some WAV files. I am coding in c++ a way to output the sound on one of the speakers. basically is there any way I can say, x.wav file output sound only on the corner left speaker? like has a…
1
vote
1 answer

How to route audio through Apple device's internal speakers, avoiding headphones?

I'm using the kAudioSessionPoperty_AudioRoute and setting it to kAudioSessionOverrideAudioRouteSpeaker. I want the output audio to be routed through internal speakers only but when I insert headphones it gets routed through that.
Namratha
  • 16,630
  • 27
  • 90
  • 125
1
vote
0 answers

Play audio from speaker and bluetooth earpiece simultaneously flutter

Is it possible for the audio to be played from both the speaker and a bluetooth earpiece in android and iOS devices using either flutter or native ? I found a way using flutter_audio_manager to switch between them but what I need is the sound to be…