views:

57

answers:

1

I'm using speech recognition but some words are not correct speaking. Therefore, I want mix my voice for some words.

I want to play a String in C#, some word I have recorded. I want to mix my recorded word with String and then play it.

+3  A: 

You would use a binary data type. For SQL Server, that type is named "image", for binary image (not for picture.)

With that you can store a .wav-file or .mp3 or whatever you need.

Of course, there is also a discussion whether you should store binary data in the database at all, or just store it on disk and store the path to the file in the database.

Lasse V. Karlsen
Thanks Lasse V. Karlsen
Sarvesh