1
Answer

Comapring two voices using c#

Hi,

Is there a way to compare two voices using c#??? I'm trying to build a voice recognition system.
I tried the the Speech recognition engine class. But so far i was only able to match a voice with a word. Is there a way to compare two voices???

Thanks in advance,
Zehan
Answers (1)
0
Munesh Sharma

Munesh Sharma

NA 17.1k 2.4m 10y

First of all be sure that you are importing/using (depending on language) the System.IO namespace for this to work. But what you can do is something like this


string pathToCreate = "~/UserFolders/" + TextBox1.Text;

if(Directory.Exists(Server.MapPath(pathToCreate))

{

   //In here, start looping and modify the path to create to add a number

   //until you get the value needed

}

 

//Now you know it is ok, create it

Directory.CreateDirectory(Server.MapPath(pathToCreate));