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
1 answer

Twilio programmable custom voice call

I've recently started to use Twilio, for our own needs - we need to provide users with real-time informations about possible dangerous events that might have happened at their home, through SMS or Voice call. I've tried to use VoiceCall exactly as…
qgicup
  • 2,189
  • 1
  • 16
  • 13
4
votes
5 answers

Is it possible to programmatically edit a sound file based on frequency?

Just wondering if it's possible to go through a flac, mp3, wav, etc file and edit portions, or the entire file by removing sections based on a specific frequency range? So for example, I have a recording of a friend reciting a poem with a few…
K-RAN
  • 896
  • 1
  • 13
  • 26
4
votes
2 answers

HOW-TO Make computer sing

I'm trying to develop an online application where the user writes some text and the software sings it back to the user. I can currently generate the audio file with the words spoken by the computer using espeak, but I have no idea how to make it…
Ofir
  • 101
  • 2
  • 5
4
votes
2 answers

Voice transmission over LAN using java?

I'm building a java application which works in a LAN environment, every computer on that LAN have this application installed on it, at some point i need this application to transfer voice simultaneously to all computer over the LAN (voice…
Alan_AI
  • 1,529
  • 3
  • 22
  • 32
4
votes
0 answers

Voice Matcher To Match Voice Password in Android(Compare Voice)

I am working on a App in which i have to integrate voice-recognization/voice- matching for password, this is for Security purpose and the scenario will be: 1). User Register In the app Via Voice password, i will convert that voice into …
Pankaj Arora
  • 10,224
  • 2
  • 37
  • 59
4
votes
2 answers

Online voice chat: Why client-server model vs. peer-to-peer model?

I am adding online voice chat to a Silverlight app. I've been reviewing current apps, services and SDKs found thru online searches and forums. I'm finding that the majority of these implement a client-server (C/S) model and I'm trying to understand…
SteveS48
  • 79
  • 3
  • 6
4
votes
1 answer

When I cough... How to prevent wrong recognition in SpeechRecognitionEngine?

When I load a grammar and use: SpeechRecognitionEngine _sre = new SpeechRecognitionEngine(); ... _sre.RecognizeAsync(RecognizeMode.Multiple); And I blow or cough or say any other word (doh! for example) on the microphone,I get a false positive.…
Orlando
  • 43
  • 5
4
votes
0 answers

Android Virtual Microphone

My question is more general and doesn't point to specific code segments. I would like to know is it possible to create a virtual microphone; for example when I connect my headset, my phone uses the microphone on the headset. Is there a way to create…
Arijoon
  • 2,184
  • 3
  • 24
  • 32
4
votes
1 answer

Google Glass: Starting an activity with "Ok Glass, Command"

Using this code snippet, as directed by Google's guide, presents an additional voice input screen.
Calvin
  • 622
  • 2
  • 8
  • 19
4
votes
3 answers

How to make phone calls using Python?

I'm writting a small python program to send voice file to other telephone. The phone is connected to pc over usb. How to make phone calls using Python?
Jean-Pierre
  • 225
  • 2
  • 4
  • 7
4
votes
2 answers

Limiting the Voice Recognition dictionary for faster match and good accuracy

I am trying to make an android based application whose one part is voice recognition. I have a very limited voice commands over which the application would work. So, I want to somehow limit the dictionary or create a new dictionary of words that…
trojan
  • 79
  • 5
4
votes
2 answers

Offline voice recognition API in Android 4.2

I want to create application that uses offline Android's builtin voice recognition API. Does anyone have an example? I've tried to use RecognizerIntent API but it still requires internet. I've looked here:…
dasg
  • 321
  • 9
  • 18
4
votes
1 answer

Using 3G modem to make a voice call

Most of the 3G modems (USB sticks) support voice calls, but all of them can do this only through the dashboard software which is shipped with them. Do you have any information, how to get the voice from and pass the mic data to the 3G modem in…
NeoGetz
  • 57
  • 1
  • 1
  • 5
4
votes
1 answer

Is it possible to send/receive voice from PC to Android device over Bluetooth

I have a PC (where java program is running), Bluetooth dongle (which supports A2DP) and Android device (2.3.6, which also supports A2DP). I want to: Send real time voice data from PC's microphone to android device via bluetooth Send real time…
IKM2007
  • 716
  • 1
  • 8
  • 31
4
votes
2 answers

How to Implemented voice based events?

I want to have a voice based action in my app. For example, when I want to add something into favorites list, then the usual way we follow is to click a button, but here i want to trigger that task by voice, like saying "Add to Favorites".. Is this…
Div S
  • 231
  • 2
  • 11