I want to speech to text but I not finded working library.
How can I Speech to Text on React Native?
Thanks!
If you want to translate the entire speech at once, I'd use react-native-voice
If you want to translate the speech in real-time, this is a much longer process. A friend and I are thinking about releasing a module for it soon.
Related
I need to read a pdf417 barcode from a taken photo with React Native. I tried react-native-camera, but it only reads barcodes from camera. Have anyone used another library to do this?
Thanks.
If you want to decode barcode from image(if I understood correctly your problem), react-native-camera does not support this feature. A good alternative for this will be Barcode recognition tools in JS. For instance, have a look at this link and demos in it.
Good luck
I want my textinput default using voice input, just like in ios it can automatically switch to use native voice input to input text, and for android it can automatically switch to use google voice input to input
is it possible to do it by react native or using native code? Thanks!
You can use a third party library react-native-voice
This library is compaitable with both android and ios. There is a fine introduction on medium site too.
For Google voice input, This component uses the device’s native recogniton API, which varies for every device. Google Speech API is an external service that you have to pay for, whereas this costs no money.
I've been evaluating React Native as a replacement for Cordova, and was wondering if there is a widely accepted solution for styled text inputs. I'd like to see text inputs rendered in Material Design on Android, and Apple style on iOS.
Do you have recommendations for a specific library, or will I have to write my own/combine multiple libraries? Thank you!
You could check out https://nativebase.io/ it supports platform specific default styling there are others as well like https://react-native-training.github.io/react-native-elements/ and http://www.xinthink.com/react-native-material-kit/ which has consistent styling regardless of platform.
Coming from a Cordova/Sencha Touch background I suggest you try to create your own style using only the default react native components, the reason is that before I was having the same question regarding component library that I could use so that I could target all platform at once, but react native isn't 100% cross platform and learning to style on different platform might give you an idea and feedback with your evaluation, unless your aiming to have a project as soon as possible and that is a different story.
Use Voximplant text chatting along with React Native.
Has anyone used it? What ways did you use if there is no plug-in?
Voximplant is used mainly for Voice and Video communications. Text messaging is a pretty new addition and it has not yet landed in the React Native SDK (it will, but in some time).
When i click on Voice Search in android it gives a pop up screen SPEAK NOW and after i speak say Hello then a WORKING screen comes.
Can i know how to disable the default Speak Now and Working screen in Voice Recognition in Android.
These screens are displayed as i use the API RecognizerIntent.ACTION_RECOGNIZE_SPEECH.
How can i give my screens and know where actual processing takes place?
I'm guessing the user has solved their problem by now. For anyone seeing this today, the answer is to use the SpeechRecognizer http://developer.android.com/reference/android/speech/SpeechRecognizer.html
The SpeechRecognizer lets you use speech recognition from within your own Activity, defining custom UI.