Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~565 People Reached
Favorite Tags
Member Avatar for adino2

How do i Call this ?? I been trying it out from a lot of sites but it doesn't seems to fit in. I'm clueless on what it needs ......... all i know is it needs to be void ISpeechRecognizer.DisplayUI (int hWndParent, string title, string typeofui, ref object extradata) But …

Member Avatar for kvprajapati
0
53
Member Avatar for adino2

[CODE] using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Text; using System.Windows.Forms; using System.Runtime.InteropServices; using System.Threading; namespace Something { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { Thread recording_thread; recording_thread = new System.Threading.Thread(new ThreadStart(record_run)); recording_thread.Start(); label1.Text = "Loading"; …

0
48
Member Avatar for adino2

[CODE] private void button1_Click(object sender, EventArgs e) { aTimer = new System.Timers.Timer(3000); aTimer.Elapsed += new ElapsedEventHandler(button2_Click); aTimer.Enabled = true; for (int i = 0; i < 16; i++) { mciSendString("open new Type waveaudio Alias record_sound", "", 0, 0); mciSendString("record record_sound", "", 0, 0); } } private void button2_Click(object sender, EventArgs …

Member Avatar for adino2
0
112
Member Avatar for adino2

Well since last month I been working on a project to do a "Speech Recognition System" without the use of any 3rd party help like Speech API. So, this is what I have done in my project. Speech recording, save it to a wave file. Reduce the noise of the …

Member Avatar for adino2
0
132
Member Avatar for adino2

Hi , just would like to ask on a few questions Is it possible to make a voice to text system without using the Speech SDK ??? If yes, can anyone provide me with the info on that? What can be used?

Member Avatar for Diamonddrake
0
80
Member Avatar for adino2

I written a code to create a image viewer using javascript. But the script only works in IE but not in firefox. Please help. The code is below...... [CODE] <script type="text/javascript"> function changeImage(filename) { mainimage.src = filename; } </script> <center> <img src="images/bg.jpg" name="mainimage" width="419" height="282"> <marquee width="90%" scrollamount="5" onmouseover="this.stop();" onmouseout="this.start();"> …

Member Avatar for matthewmaxwell
0
140