🚀 Socket Launch Week Day 4:Socket MCP Adds Org Alerts, Threat Feed Review, and Package Inspection.Learn more
Sign In

@mastra/speech-speechify

Package Overview
Dependencies
Maintainers
1
Versions
199
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package version was removed
This package version has been unpublished, mostly likely due to security reasons
This package has malicious versions linked to the ongoing "Mastra AI framework compromise" supply chain attack.

Affected versions:

0.2.1
View campaign page

@mastra/speech-speechify

Mastra Speechify speech integration (DEPRECATED - use @mastra/voice-speechify instead)

unpublished
npmnpm
Version
0.2.1
Version published
Weekly downloads
587
104.53%
Maintainers
1
Weekly downloads
 
Created
Source

⚠️ DEPRECATED

This package has been deprecated in favor of @mastra/voice-speechify.

Migration

To migrate to the new package:

  • Install the new package:
npm install @mastra/voice-speechify
  • Update your imports:
- import { SpeechifyTTS } from '@mastra/speech-speechify'
+ import { SpeechifyVoice } from '@mastra/voice-speechify'
  • Update your code:
- const tts = new SpeechifyTTS({
-   model: {
-     name: 'simba-multilingual',
-     voice: 'george',
-   }
- });
+ const voice = new SpeechifyVoice({
+   speechModel: {
+     name: 'simba-english',
+   },
+   speaker: 'george'
+ });

- const voices = await tts.voices();
+ const speakers = await voice.getSpeakers();

- const { audioResult } = await tts.generate({ text: 'Hello' });
+ const stream = await voice.speak('Hello');

FAQs

Package last updated on 17 Jun 2026

Did you know?

Socket

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.

Install

Related posts