Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
github.com/vickydk/azuretexttospeech
This package provides a client for Azure's Cognitive Services (speech services) Text To Speech API. Users of the client
can specify the lanaguage (Region
type), a string containing the desired text to speak as well as the gender (Gender
type) in which the audiofile should be rendered. The library fetches the audio rendered in the format of your choice (see AudioOutput
types for supported formats).
API documents of interest
A Cognitive Services (kind=Speech Services) API key is required to access the URL. This service can be enabled at the Azure portal.
The following will synthesize the string 64 BASIC BYTES FREE. READY.
, using the en-US locale, rending with a female voice. The output file format is a 16khz 32kbit single channel MP3 audio file.
import tts "github.com/jesseward/azuretexttospeech"
func main() {
# See TextToSpeechAPI and TokenRefreshAPI types for list of endpoints and regions.
azureSpeech, _ := tts.New("YOUR-API-KEY", WestUS2, WestUS2Token)
payload, _ := azureSpeech.Synthesize(
"64 BASIC BYTES FREE. READY.",
EnUS, // Region type
tts.Female, // Gender type
tts.Audio16khz32kbitrateMonoMp3) // AudioOutput type
// payload is your byte array containing audio data.
}
FAQs
Unknown package
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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.