It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to write a program that will take a mp3 file as a input and output will be the words that are available in that mp3 file. For example, I have a file name test.mp3, that contains some sentences (e.g. how are you? I am fine. What is your name?), now I want to parse the mp3 file so that I can get all words/sentence that are available in test.mp3 file. I prefer .NET(c#) code.
If file format is .wav, then It is okay for me.
Please help me about the issue.
-Thanks,
Arefin
Have a look at http://msdn.microsoft.com/en-us/library/system.speech.recognition.aspx . Maybe you'll find something there.
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
After Creating an Excel file using C#, I'm trying to open the file, and get the following exception:
"excel cannot open the file because the file format or file extension is not valid. verify that the file has not been corrupted and that the file extention matches the format of the file."
Any suggestions?
Without any code and by reading the error, I have the suspect that you're specifing the wrong extension in the path when you save the file, which is a common mistake:
string path = "C:\\excelfile.xls"; //or xlsx as said #JMK
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I need to make a routine in c# that takes an MS outlook email (which will have tables inside it) and extract the tables contents to a txt file or csv file.
I don't really know where to start with this.
Could any body tell me how or where to start with this?
If you already figured out how to get the HTML from the email, you can use HTML Agility Pack to parse it and extract what you need.
You can install the Pack using Nuget.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I've made a program using C# and I want know how to associate file which output to open by using this program.
this program made files with an extension .fct I want this files with that extension open in my program when it double clicked
You might want to look into this: http://mel-green.com/2009/04/c-set-file-type-association/
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I would like towrite files into a flash drive without changing the disk usage bar displayed in win 7 (using programming c#/other methods)
Is it possible?
If so, may you give me an example code to do this!
Thank you!
Technically files are just references to blocks of written flash memory. If you copy the file to the flashdrive and delete it its still there until it gets overwritten. If you somehow save the reference you can access it if the flash drive hasn't changed. I don't have a code sample, just wanted to give you a direction.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I found this on the internet and examined source codes. a program for locating licence plates in an image. check from here source codes are available and you can compile it.
http://translate.google.com.tr/translate?js=n&prev=_t&hl=tr&ie=UTF-8&layout=2&eotf=1&sl=tr&tl=en&u=http://www.atasoyweb.net/blog/goruntu-isleme-k6s0/arac-plakasi-konum-tespiti-y109.html
but I want do something different but should be work like this. what I am trying to do is, locating a specific part in an image and getting coordinates of it. here is an example:
http://postimage.org/image/a60idjok/
You need to perform an image correlation.
Example in Mathematica: