Speech to text/ speech recognition [closed] - java

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
Does anyone know of a way that I can either code a program (preferably in java), or use an existing program or API that will listen to the microphone and convert what you are saying into text and save to a file? I do not want it to have any fancy features, I just want to have a lightweight speech to text program that will use very little resources so that is will be fast and simple.
Thanks in advance for any help! ☻

Nilpmet,
I must have done this at least a dozen times using CMU's Sphinx, their continuous-speech, speaker-independent recognition system. Sphinx has a Java API which is pretty great.
Please let me know if you have any questions!

You can use Google's speech API, demonstrate here.
Here is a reverse engineering of this API, you can get your speech API key here.

Related

Is it possible to convert an Android Studio App to IOS? (Java) [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
So I'm currently developping an app in Android Studio, being Java the programming languague used. I wanted to know If It's possible to convert it later into IOS, and if so, how should i do it.
Thanks in advance for all responses.
Short Answer
You cannot convert all the project from Android to iOS.
But what you can do is inspire yourself from the work that you have done on Android (how you solved a specific problem) and also you could try to convert Utils classes (if possible).
Long answer
Android and iOS development principles are different (design patterns ...).
Converting JAVA to Swift is not always correct and optimized.
UX is different in both platforms (example: there is no Toast in iOS)
You can not convert but, You can achieve it using Kotlin Multiplatform Project, where you can write business logic once for both of the platforms.
You can find more details about "How to do?" from the following reference:
https://kotlinlang.org/docs/tutorials/native/mpp-ios-android.html

Coding a reddit bot [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I want to create a reddit 'novelty' account bot to better my coding/scripting skills. Currently I just want to make a simple bot that searches new or rising links on reddit and looks at the comments in each thread. If the text matches some string of characters, the bot replies with a message.
I know this is a really general question, but I'm looking for tips on which scripting/programming language to use. I mainly have experience with Java and Selenium along with R and a little bit of batch. I am willing to learn a new language (i have a lot of free time). Also the goal of the bot isn't very difficult, so even if i had to learn a new language I don't think it would be all too difficult.
Most reddit bots are made with something called PRAW. You use Python when creating something with PRAW. Python shouldn't be too hard to learn if you know Java.

Speech Comparison with Java [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am developing a system which includes a speech comparison. This system will be used by people having a speech disorder. Practically I need to capture the user's speech and compare it with a another speech audio file and return a percentage match. I need to develop this in Java.
I started doing some research and found that this can be done using some sort of algorithm using FFT.
Is there any other algorithms which you may suggest in order to implement this comparison of capturing the user voice and comparing it with a pre recorded audio file and perform a real time audio processing.
I need some assistance from you guys in which is the best way to handle this and develop it with the best practice.
Many thanks for your time! Much appreciated
This answer may be useful: https://stackoverflow.com/a/3487136/2930268
Basically, this blog post shows an implementation of the FFT algorithm using Java.

Converting iOs applications into Android [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
What is the most efficient way to convert iOs mobile application into Android? A friend and I are working on an app and we would like to know what is our options?
Can we translate line by line the code? What can we do?
There is no conversion technique that you can just run your pre-existing IOS source code through and get Android source code
Unfortunately, that means you guys are going to have to decide if it is really worth the time and effort on porting.
Here are some resources for further reading:
http://www.datasprings.com/resources/articles-information/guide-for-porting-an-ios-app-to-android
Porting ios apps to android
You can write the codes by c language which are not related to UI, and call them by JNI on Android. If you did it, I think you can keep a same copy on IOS.

how do i get save, edit, delete, and search ,MIDLET application? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am a student. I need to make a application. I have built the GUI. Now I need to know how to do it?
I have heard about sql server compact, but does it work together with j2me? If not, something to solve the problem?
It will be better if you can pass me a example. If you couldn't, not worry, I just to need to know a database program for mobile (with j2me).
Could it be possible without use a database program? For example, using a text file? Or any other storage mechanism.
Appreciate any help.
In j2me you can use RMS. But you can't handle with large data. Some Third party database's also available for j2me development. You can use that API's. Also refer this existing discussion on same in this forum. And look at database connection using j2me article.

Categories

Resources