Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
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.
github.com/tamoyal/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.
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.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.