├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── apple-touch-icon.png ├── assets ├── css │ └── tts.css ├── img │ └── Speaker_Icon.svg └── js │ ├── helpers.js │ ├── tts.js │ └── voices.json ├── compose.yaml ├── composer.json ├── composer.lock ├── conf └── nginx.conf ├── config.php.dist ├── conversation.php ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── include ├── footer.php └── header.php ├── index.php ├── playlist.php ├── request_pls.php ├── request_tts.php ├── robots.txt ├── src ├── Playlist.php ├── Request.php ├── ReturnObjectTrait.php ├── Services │ ├── Acapela.php │ ├── BingTranslator.php │ ├── Cepstral.php │ ├── Cerence.php │ ├── GoogleTranslate.php │ ├── Oddcast.php │ ├── Service.php │ ├── StreamElements.php │ ├── Streamlabs.php │ ├── TikTok.php │ ├── VoiceForge.php │ └── iSpeech.php ├── Stats.php └── TTS.php └── stats.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/README.md -------------------------------------------------------------------------------- /apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/apple-touch-icon.png -------------------------------------------------------------------------------- /assets/css/tts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/assets/css/tts.css -------------------------------------------------------------------------------- /assets/img/Speaker_Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/assets/img/Speaker_Icon.svg -------------------------------------------------------------------------------- /assets/js/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/assets/js/helpers.js -------------------------------------------------------------------------------- /assets/js/tts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/assets/js/tts.js -------------------------------------------------------------------------------- /assets/js/voices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/assets/js/voices.json -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/compose.yaml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/composer.lock -------------------------------------------------------------------------------- /conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/conf/nginx.conf -------------------------------------------------------------------------------- /config.php.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/config.php.dist -------------------------------------------------------------------------------- /conversation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/conversation.php -------------------------------------------------------------------------------- /favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/favicon-16x16.png -------------------------------------------------------------------------------- /favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/favicon-32x32.png -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/favicon.ico -------------------------------------------------------------------------------- /include/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/include/footer.php -------------------------------------------------------------------------------- /include/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/include/header.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/index.php -------------------------------------------------------------------------------- /playlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/playlist.php -------------------------------------------------------------------------------- /request_pls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/request_pls.php -------------------------------------------------------------------------------- /request_tts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/request_tts.php -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/robots.txt -------------------------------------------------------------------------------- /src/Playlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/src/Playlist.php -------------------------------------------------------------------------------- /src/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/src/Request.php -------------------------------------------------------------------------------- /src/ReturnObjectTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/src/ReturnObjectTrait.php -------------------------------------------------------------------------------- /src/Services/Acapela.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/src/Services/Acapela.php -------------------------------------------------------------------------------- /src/Services/BingTranslator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/src/Services/BingTranslator.php -------------------------------------------------------------------------------- /src/Services/Cepstral.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/src/Services/Cepstral.php -------------------------------------------------------------------------------- /src/Services/Cerence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/src/Services/Cerence.php -------------------------------------------------------------------------------- /src/Services/GoogleTranslate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/src/Services/GoogleTranslate.php -------------------------------------------------------------------------------- /src/Services/Oddcast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/src/Services/Oddcast.php -------------------------------------------------------------------------------- /src/Services/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/src/Services/Service.php -------------------------------------------------------------------------------- /src/Services/StreamElements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/src/Services/StreamElements.php -------------------------------------------------------------------------------- /src/Services/Streamlabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/src/Services/Streamlabs.php -------------------------------------------------------------------------------- /src/Services/TikTok.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/src/Services/TikTok.php -------------------------------------------------------------------------------- /src/Services/VoiceForge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/src/Services/VoiceForge.php -------------------------------------------------------------------------------- /src/Services/iSpeech.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/src/Services/iSpeech.php -------------------------------------------------------------------------------- /src/Stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/src/Stats.php -------------------------------------------------------------------------------- /src/TTS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/src/TTS.php -------------------------------------------------------------------------------- /stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisjp/tts/HEAD/stats.php --------------------------------------------------------------------------------