Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@metasys96/react-native-voice-control
Advanced tools
Package recodes the voice data using a microphone and converts it into text.
Cross-platform development is now an essential aspect of softwaredevelopment. Node Packet Manager, the online repository is a go to site for React Programmers. This is MetaSys' contribution based on challenges we had while developing a single application for both Android and iOS. We offer a flexible NPM package, for UI form field widgets which will work on both Android and iOS platforms. The package is based on React Native and typescript, which provides an error-free field. It also gives you a clean and consistent look and feel on iOS and Android devices with high performance.
This package recodes the voice data using a microphone and converts it into text. Developers can use this text data for various purposes for example filling up the form, performing an action based on keyword, filtering data, etc. Developers can pass the required properties and get the result easily. The below documentation will help you to easily integrate this package with your React Native project.
Run command npm i @metasys96/react-native-animated-voice -save
You also have to install and link react-native-elemnets, react-native-vector-icons, react-native-haptic-feedback, and @react-native-community/voice.
Android linking
Add the following lines in android/app/src/main/AndroidManifest.xml.
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.MICROPHONE" />
<uses-feature android:name="android.hardware.microphone" android:required="true" />
Ios linking
Add the following lines in Info.plist file.
<dict>
...
<key>NSMicrophoneUsageDescription</key>
<string>Description of why you require the use of the microphone</string>
<key>NSSpeechRecognitionUsageDescription</key>
<string>Description of why you require the use of the speech recognition</string>
...
</dict>
Import {VoiceControl} from '@metasys96/react-native-voice-control' // import VoiceControl component
// add function in component
voiceRecgStart = (voiceData : string) => { // Invoked when voice detected and return string
}
voiceRecgEnd = () =>{ // Invoked when voice detection stops
}
return (
<VoiceControl
onVoiceRecgStart={this.voiceRecgStart}
onVoiceRecgEnd={this.voiceRecgEnd}
// add other props if required
/>
)
Name | Description | Type | Default | Required |
---|---|---|---|---|
micIcon | Display Icon | Object | {type:'foundation',name:'microphone',color:'red',size:20} | No |
onVoiceRecgStart | Invoked when voice detected | function | - | Yes |
onVoiceRecgEnd | Invoked when voice detection stops | function | - | Yes |
locale | - | string | 'en-US' | No |
duration | Voice recognition time | number | 10000 | No |
rippleTimePeriod | Total time to complete one ripple animation | number | 1500 | No |
rippleColor | Ripple animation color | string | 'grey' | No |
onPressIconCntStyle | onPress icon container style and animation | style | {{width: 60,height:60,borderRaduis:30}} | No |
iconCntStyle | Icon conatiner style | style | - | No |
containerStyle | - | style | - | No |
Note:- If the voice not detected within 3 seconds (3000 ms) , animation and voice detection stops automatically. rippleTimePeriod is inversly proportional to animation spdeed.
Any type of issues are welcome. Please add screenshots of the bug and code snippet. Also the quickest way to solve the bug is to reproduce it with one of the examples. We would also welcome Pull Requests.
git clone https://github.com/metasys96/react-native-voice-control/tree/master/examples
npm install
react-native run-android
or react-native run-android
Copyright and License
Copyright 2020 MetaSys Software Pvt. Ltd. All rights reserved.
FAQs
Package recodes the voice data using a microphone and converts it into text.
The npm package @metasys96/react-native-voice-control receives a total of 1 weekly downloads. As such, @metasys96/react-native-voice-control popularity was classified as not popular.
We found that @metasys96/react-native-voice-control demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.