![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
@readybytes/rb-speech-to-text
Advanced tools
This is a speech to text converter build in Vue2. It provides speech translations in almost all languages.
npm install --save rb-speech-to-text
or
yarn add rb-speech-to-text
<script>
import RBSpeechToText from "@readybytes/rb-speech-to-text";
export default {
components: {
RBSpeechToText
}
}
<script>
<template>
<div>
<textarea v-model="body"></textarea>
<RBSpeechToText
:text="body"
@speechend="body = $event.text"
></RBSpeechToText>
</div>
<template>
<script>
export default {
name: "MyComponent",
data() {
return {
body: "Hello World",
};
},
}
</script>
<template>
<div>
<textarea v-model="body"></textarea>
<RBSpeechToText
:text="body"
lang="fr-FR"
@speechend="body = $event.text"
></RBSpeechToText>
</div>
<template>
<script>
export default {
name: "MyComponent",
data() {
return {
body: "Bonjour le monde",
};
},
}
</script>
Name | Type | Required | Default Value | Support Values |
---|---|---|---|---|
text | String | Yes | - | any string |
lang | String | No | "en-US" | <languageCode-countryCode> . BCP-47 Languages Codes (Go to this link and search for BCP-47 language codes) |
speechend
This event will fire when user stop speaking and save the content. i.e-
<template>
<RBSpeechToText
:text="text"
@speechend="onSpeechEnd"
>
</RBSpeechToText>
</template>
<script>
export default {
methods:{
onSpeechEnd(event) {
console.log(event)
}
}
}
</script>
FAQs
This is a speech to text converter build in Vue2. It provides speech translations in almost all languages.
The npm package @readybytes/rb-speech-to-text receives a total of 0 weekly downloads. As such, @readybytes/rb-speech-to-text popularity was classified as not popular.
We found that @readybytes/rb-speech-to-text demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.