PHPackages                             werd/ivona-speechcloud-sdk-php - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. werd/ivona-speechcloud-sdk-php

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

werd/ivona-speechcloud-sdk-php
==============================

IVONA SpeechCloud SDK for PHP

1.0.4(9y ago)102.1k11MITPHPPHP &gt;=5.5

Since Oct 18Pushed 9y ago2 watchersCompare

[ Source](https://github.com/werdlv/ivona-speechcloud-sdk-php)[ Packagist](https://packagist.org/packages/werd/ivona-speechcloud-sdk-php)[ RSS](/packages/werd-ivona-speechcloud-sdk-php/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (5)Dependencies (2)Versions (6)Used By (0)

ivona-speechcloud-sdk-php
=========================

[](#ivona-speechcloud-sdk-php)

[IVONA SpeechCloud](https://www.ivona.com/us/for-business/speech-cloud/) SDK for PHP

[![Latest Stable Version](https://camo.githubusercontent.com/bd21dea96269a10965b5c20571a052899df3f7d2c62c4de27a4083e2967314b2/68747470733a2f2f706f7365722e707567782e6f72672f776572642f69766f6e612d737065656368636c6f75642d73646b2d7068702f762f737461626c65)](https://packagist.org/packages/werd/ivona-speechcloud-sdk-php)[![Dependency Status](https://camo.githubusercontent.com/72fc2b2830228496632e44266aa7dd9663fbed3ba2b6fb474a2eaa8c1d071ab5/68747470733a2f2f7777772e76657273696f6e6579652e636f6d2f7068702f776572643a69766f6e612d737065656368636c6f75642d73646b2d7068702f6465762d6d61737465722f6261646765)](https://www.versioneye.com/php/werd:ivona-speechcloud-sdk-php/dev-master)[![License](https://camo.githubusercontent.com/348467a45595b29cb745a2376fc9f6d5591213155c39b160229b50ce9ff4b57d/68747470733a2f2f706f7365722e707567782e6f72672f776572642f69766f6e612d737065656368636c6f75642d73646b2d7068702f6c6963656e7365)](https://packagist.org/packages/werd/ivona-speechcloud-sdk-php)

Installation
------------

[](#installation)

Through [Composer](https://getcomposer.org/):

```
$ composer require werd/ivona-speechcloud-sdk-php

```

Usage
-----

[](#usage)

```
use Werd\Ivona\SpeechCloud;
use Werd\Ivona\Models\Input;
use Werd\Ivona\Models\OutputFormat;
use Werd\Ivona\Models\Parameters;
use Werd\Ivona\Models\Voice;
use Werd\Ivona\Models\Lexicon;

$speechCloud = new SpeechCloud([
    'access_key' => '',
    'secret_key' => '',
    'region'     => '' // E.g. eu-west-1
]);

// CreateSpeech
$data = $speechCloud->createSpeech(new Input([
    Input::DATA => 'The word or sentence You want to synthesize'
]), new OutputFormat(), new Parameters(), new Voice());
header('Content-Type: audio/mpeg');
echo $data; // Audio stream - use it as You please

$data = $speechCloud->createSpeech(new Input([
    Input::DATA => 'Je Suis Charlie'
]), new OutputFormat(), new Parameters(), new Voice([
    Voice::NAME     => 'Celine',
    Voice::LANGUAGE => 'fr-FR'
]));

// ListVoices
$data = $speechCloud->listVoices(new Voice());

$data = $speechCloud->listVoices(new Voice([
    Voice::LANGUAGE => 'en-US',
    Voice::GENDER   => Voice::GENDER_MALE
])); // Filter American English male voices etc.

// PutLexicon
$data = $speechCloud->putLexicon(new Lexicon([
    Lexicon::NAME => 'Test',
    Lexicon::CONTENTS => ''
]));

// GetLexicon
$data = $speechCloud->getLexicon('Test');

// DeleteLexicon
$data = $speechCloud->deleteLexicon('Test');

// ListLexicons
$data = $speechCloud->listLexicons();
```

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity25

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 95.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~68 days

Total

5

Last Release

3582d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/abdda4cf653c00c26fa5b3fbf278ed279f6d0c8ea8978304bd0edccf7652c3fd?d=identicon)[werdlv](/maintainers/werdlv)

---

Top Contributors

[![jsakars](https://avatars.githubusercontent.com/u/1607778?v=4)](https://github.com/jsakars "jsakars (22 commits)")[![thecatontheflat](https://avatars.githubusercontent.com/u/727581?v=4)](https://github.com/thecatontheflat "thecatontheflat (1 commits)")

---

Tags

text-to-speechttsivonaspeechcloud

### Embed Badge

![Health badge](/badges/werd-ivona-speechcloud-sdk-php/health.svg)

```
[![Health](https://phpackages.com/badges/werd-ivona-speechcloud-sdk-php/health.svg)](https://phpackages.com/packages/werd-ivona-speechcloud-sdk-php)
```

###  Alternatives

[duncan3dc/speaker

Convert text to speech using web services

11539.1k1](/packages/duncan3dc-speaker)[ralphjsmit/laravel-helpers

A package containing handy helpers for your Laravel-application.

13704.6k2](/packages/ralphjsmit-laravel-helpers)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

255.2k](/packages/aedart-athenaeum)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
