{"id":36384064,"url":"https://github.com/watson-developer-cloud/text-to-speech-java","last_synced_at":"2026-01-11T15:00:35.112Z","repository":{"id":26870001,"uuid":"30330403","full_name":"watson-developer-cloud/text-to-speech-java","owner":"watson-developer-cloud","description":"DEPRECATED: this repo is no longer actively maintained","archived":true,"fork":false,"pushed_at":"2019-07-15T13:27:59.000Z","size":1226,"stargazers_count":27,"open_issues_count":0,"forks_count":37,"subscribers_count":24,"default_branch":"master","last_synced_at":"2025-02-26T03:35:30.399Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/watson-developer-cloud.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-02-05T01:07:01.000Z","updated_at":"2023-01-28T17:48:58.000Z","dependencies_parsed_at":"2022-07-25T16:48:26.229Z","dependency_job_id":null,"html_url":"https://github.com/watson-developer-cloud/text-to-speech-java","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/watson-developer-cloud/text-to-speech-java","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/watson-developer-cloud%2Ftext-to-speech-java","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/watson-developer-cloud%2Ftext-to-speech-java/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/watson-developer-cloud%2Ftext-to-speech-java/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/watson-developer-cloud%2Ftext-to-speech-java/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/watson-developer-cloud","download_url":"https://codeload.github.com/watson-developer-cloud/text-to-speech-java/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/watson-developer-cloud%2Ftext-to-speech-java/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28309504,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-11T14:58:17.114Z","status":"ssl_error","status_checked_at":"2026-01-11T14:55:53.580Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-11T15:00:21.526Z","updated_at":"2026-01-11T15:00:35.046Z","avatar_url":"https://github.com/watson-developer-cloud.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Text to Speech Java Starter Application\n\n## DEPRECATED: this repo is no longer actively maintained. It can still be used as reference, but may contain outdated or unpatched code. \n\n  The IBM Watson [Text to Speech][service_url] service is designed for streaming, low latency, synthesis of audio from text. It is the inverse of the automatic speech recognition. The TTS service can be accessed via a REST interface or directly via TCP.\n\nGive it a try! Click the button below to fork into IBM DevOps Services and deploy your own copy of this application on Bluemix.\n\n[![Deploy to Bluemix](https://bluemix.net/deploy/button.png)](https://bluemix.net/deploy)\n\n## Building the application\n\nUse [Apache Maven](https://maven.apache.org/) to build the application.\n\n```sh\n$ mvn install\n```\n\n## Deploying to Bluemix\n\n1. Create a Bluemix Account\n\n    [Sign up][sign_up] in Bluemix, or use an existing account. Watson Services in Beta are free to use.\n\n2. Download and install the [Cloud-foundry CLI][cloud_foundry] tool\n\n3. Connect to Bluemix in the command line tool.\n  ```sh\n  $ cf login -a https://api.ng.bluemix.net\n  ```\n\n4. Create the `Text to Speech` service in Bluemix.\n  ```sh\n  $ cf create-service text_to_speech standard text-to-speech-service\n  ```\n\n5. [Build the application](#building-the-application).\n\n6. Deploy the application. Ensure the `\u003capplication-name\u003e` is something unique.\n \n  ```sh\n  $ cf push \u003capplication-name\u003e -p target/text-to-speech-1.0-SNAPSHOT.war\n  ```\n \n  Once deployed, the application will be available at `http://\u003capplication-name\u003e.mybluemix.net`.\n\n## Running locally\n\nThe application uses [WebSphere Liberty](https://developer.ibm.com/wasdev/websphere-liberty/) as its server. Liberty provides the [bluemixUtility](http://www.ibm.com/support/knowledgecenter/SSEQTP_8.5.5/com.ibm.websphere.wlp.doc/ae/rwlp_blmx_utility.html) command line client that makes it easy for applications to use certain Bluemix services.\n\n1. [Build the application](#building-the-application).\n\n2. Initialize Liberty server for the application. Maven will automatically download and install WebSphere Liberty.\n\n  ```sh\n  $ mvn liberty:create-server\n  ```\n\n3. Log in to Bluemix and create `Text to Speech` service instance as described in [Deploying to Bluemix](#deploying-to-bluemix) steps 1-4.\n\n4. Use `bluemixUtility` to import configuration for the `Text to Speech` service.\n\n  ```sh\n  $ ./target/wlp/bin/bluemixUtility import text-to-speech-service\n  ```\n\n5. Bind the imported configuration to Liberty server.\n\n  ```sh\n  $ ./target/wlp/bin/bluemixUtility bind defaultServer text-to-speech-service\n  ```\n\n6. Start the application.\n\n   ```sh\n   $ mvn liberty:run-server\n   ```\n\n   Once started, the application will be available at [http://localhost:9080/text2speech](http://localhost:9080/text2speech).\n\n## Troubleshooting\n\n  To troubleshoot your Bluemix application, the most useful source of\n  information is the log files. To see them, run the following command:\n\n  ```sh\n  $ cf logs \u003capplication-name\u003e --recent\n  ```\n\n## License\n\n  This sample code is licensed under Apache 2.0. Full license text is available in [LICENSE](LICENSE).\n  The sample uses jQuery which is licensed under MIT\n\n## Contributing\n\n  See [CONTRIBUTING](CONTRIBUTING.md).\n\n## Open Source @ IBM\n\n  Find more open source projects on the\n  [IBM Github Page](http://ibm.github.io/).\n\n[service_url]: http://www.ibm.com/smarterplanet/us/en/ibmwatson/developercloud/text-to-speech.html\n[cloud_foundry]: https://github.com/cloudfoundry/cli\n[sign_up]: https://apps.admin.ibmcloud.com/manage/trial/bluemix.html?cm_mmc=WatsonDeveloperCloud-_-LandingSiteGetStarted-_-x-_-CreateAnAccountOnBluemixCLI\n[liberty]: https://developer.ibm.com/wasdev/downloads/\n[liberty_mac]: http://www.stormacq.com/how-to-install-websphere-8-5-liberty-profile-on-mac/\n[ant]: http://ant.apache.org/bindownload.cgi\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwatson-developer-cloud%2Ftext-to-speech-java","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwatson-developer-cloud%2Ftext-to-speech-java","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwatson-developer-cloud%2Ftext-to-speech-java/lists"}