Questions tagged [voice]

A voice in programming may refer to voice synthesis (e.g. transforming text to speech) and voice recognition (e.g. transforming speech to text, voice commands).

A voice in programming may refer to voice synthesis (e.g. transforming text to speech) and voice recognition (e.g. transforming speech to text, voice commands).

Despite being an rather old engineering task (with some commercial products available in late 1990-s) it's still considered advanced and challenging technology and it's very far from perfection.

1122 questions
4
votes
0 answers

How to develop a Google Voice app that works with smart devices (Google nest devices) now that Conversational actions will be removed?

I am currently developing an updated version of a voice app that it was previously developed with Google Actions console as a conversational app. However, when started to create a new project for this updated app, a banner says that Conversational…
4
votes
0 answers

Enhancing voice recording with AVAudioEngine like in Voice Memos

I'm trying to implement a similar functionality like was added to Voice Memos in iOS 14. As far as I know it reduces background noise and removes echo. The overall goal is to make voice recording sound better by presumably cutting noise, removing…
bitemybyte
  • 971
  • 1
  • 10
  • 24
4
votes
1 answer

How to add another number to the current call using Twilio?

I am developing a Java application using Twilio. So I was able to create a call between two users. One to one call. But I need to add another person/number to that ongoing call. Like a group call If I needed it. So basically there are two people who…
H Athukorala
  • 739
  • 11
  • 32
4
votes
0 answers

Can't Speak/Voice to SwiftUI Textfield

I was about to publish a SwiftUI app today when I was astounded to find that voice input to my textfields did not work. When tapping the microphone on the keyboard the textfield registers one character and beeps to end voice input (once in a while I…
JohnSF
  • 3,736
  • 3
  • 36
  • 72
4
votes
2 answers

How to connect Pycharm with microphone on macOS

I have a problem with my microphone connectivity using Pycharm. I ran the below code on Spyder and terminal and they were fine. However, on Pycharm, it seemed run without error but just without result as well. I see that both my terminal and Spyder…
Matthew
  • 41
  • 2
4
votes
1 answer

Twilio Voice. Add another participant to existing call

There is an ongoing call between 2 numbers (Twilio to Twilio, or Twilio to any PTSN number). It is not a conference call, just a normal 1-to-1 call using Twilio Voice. How can I add another person to that call? This is my current scenario. I first…
Agreensh
  • 1,305
  • 1
  • 12
  • 15
4
votes
0 answers

How to Check if TextToSpeech Initialized With Specified Speech Engine or Not?

In Android, you create a TextToSpeech instance like this: tts = new TextToSpeech(getApplicationContext(), new TextToSpeech.OnInitListener() { @Override public void onInit(int i) { if (i ==…
Nerdy Bunz
  • 6,040
  • 10
  • 41
  • 100
4
votes
0 answers

How to automate voice apps testing

Is there a way to automate the testing of apps that take voice input (similar to Siri)? Is it possible to test that with Selenium or should I use other tools?
4
votes
6 answers

When creating a google actions the name not allowed and blocking me from Saving

I am trying to create a Google Action and I am getting this error: Your sample invocations are structured incorrectly. Make sure they all include either your app name or pronunciation, and trigger your app. Even if I set the name to Dr.…
Rich Elswick
  • 561
  • 5
  • 20
4
votes
2 answers

flash voice recording, then upload to server

I'm looking for a flash widget that allows users to record their audio and then send it to the server. There are a few similar questions: Record Audio and Upload as Wav or MP3 to server They advocate using Red5 or flash media server. Shouldn't it be…
Mark
  • 32,293
  • 33
  • 107
  • 137
4
votes
0 answers

Twilio redirect to record just hanging up instead

I give the caller the ability to drop out of queue and leave a voicemail, however, when sent to the voicemail TWiML it plays the outgoing message, but doesnt play the beep or record, it just hangs up. I see no errors in the console either. If i set…
4
votes
4 answers

voice recording using pyaudio

i am trying to record voice using python. i tried to use the pyaudio module it saved a wav file on my computer but recorded a static voice. any suggestions? import pyaudio import wave CHUNK = 1024 FORMAT = pyaudio.paInt16 CHANNELS = 2 RATE =…
user4719989
  • 107
  • 1
  • 4
  • 11
4
votes
0 answers

Voice authentication in Android app

Is it possible to integrate voice authentication into my app? I'm not interested in recognising voice commands - rather I am interested in detecting who is speaking. I know Lollipop had a 'Trusted Voice' screen unlock system a while ago but I can't…
Mike Baxter
  • 6,868
  • 17
  • 67
  • 115
4
votes
1 answer

Windows console application voice would not change

Here is the code I am writing to change from the female synth voice to a male but it will not change it continues to run the female voice. Any idea why that might be? //Opening dialog to the user Console.WriteLine("Console cpu burn by mixedBreed" +…
Perry Craft
  • 309
  • 3
  • 15
4
votes
1 answer

Voice Recognition Api

I have got a java application. And I want to implement a voice recognition feature on it. Just like this: Assuming, I have got some records which are called "hey", "one", "two, "tea" by user. When he/she say "hey", voice recognition api should…
ziLk
  • 3,120
  • 21
  • 45