How to compare two voices in Android? [closed] - android

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
I want to compare two voices(Names) in my App. Can I use Speech to Text api for it? The idea is to first convert them to text and then compare. Has anybody have tried it? If yes how accurate is it?

Comparing two audio files for similarity is an imperfect science best approached with hammers like Fast Fourier Transforms, audio "fingerprinting", and heuristic analysis. You will need to read up on signal analysis to get started. I recommend starting with this thread to get some ideas.

Related

Sampling incoming phone call 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 2 days ago.
Improve this question
I am trying to write a program that analyses the analogue audio content of an incoming call on an Android device - i.e. frequency / amplitude.
I have been looking at ways of trying to do this using Android Studio, but can't see anything obvious, any ideas on this would be really appreciated, thanks

How I can create text to Speech app with my own voice data? [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 5 years ago.
Improve this question
I want to create a text to speech application in android studio with my own voice not Google voice data but i don't know how to do it.
I searched for some sources but i didn't find. i hope you can help me.
As a primitive solution, save your sound for all words on dictionary. Split text into words and run voice files accordingly and sequentially. Your voice tones should be adjusted according to sentence. This is further work.
You would need to download a special program and then pronounce evry sylable and word. I personally recomend you to use https://www.vocalware.com/index/demo
It's a program that will give you voice

What do I need to create an app that summarizes text from a document (include 100-150 characters)? [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 6 years ago.
Improve this question
I want to create an feature which can summarizes text from a document in Android.
I am confusion about algorithm to do it
Any support from anyone will be appreciate
It can be done. If you are writing on your own, you have to start with nltk library for java which is abbreviated as Natural language tool kit, which allows you to carry out these kind of text summarization. or you can use the following open source code to carry out , what you want.
Like, how many no. of words your summarizing content should have at final. Have a look at it.
https://github.com/mohaps/tldrzr

Performs array calculations using the GPU 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
I need to process elements in large array and due to performance issues i need to do this in GPU of android device. please give a idea to implement this.
Please take a look at http://developer.android.com/guide/topics/renderscript/compute.html. There are also some other examples and sample projects using RenderScript online. Note that there is no way to reliably access the GPU on Android, because not all Android devices have GPUs capable of doing compute workloads. RS is the preferred method for accelerating parallel work.

API for Natural Language Processing in 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 7 months ago.
Improve this question
I am trying to make an Android application similar to the one on this website.
The thing is that I am pretty new to the field of Natural Language Processing. I do not wish to achieve much, just provide the user some interaction with the application, give him a feeling that he is indeed chatting with someone.
Basically, I would just capture the text entered by the user and send it over to the API and display the result retrieved from the API.
I came across http://opennlp.apache.org/ and http://gate.ac.uk/ but have NO idea how to implement them in my Android application.
ANY ideas/ suggestions/ help would indeed be great.
Thanks!

Categories

Resources