{"id":19040194,"url":"https://github.com/logisticinfotech/laravel-text-to-speech","last_synced_at":"2025-04-23T21:08:46.401Z","repository":{"id":39548886,"uuid":"184207666","full_name":"logisticinfotech/Laravel-text-to-speech","owner":"logisticinfotech","description":"Laravel text to speech","archived":false,"fork":false,"pushed_at":"2023-01-03T20:41:51.000Z","size":2524,"stargazers_count":9,"open_issues_count":24,"forks_count":6,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-23T21:08:40.747Z","etag":null,"topics":["download-mp3","laravel","mp3","text-to-speech"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/logisticinfotech.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-04-30T06:49:58.000Z","updated_at":"2025-03-08T05:42:15.000Z","dependencies_parsed_at":"2023-02-01T10:00:57.910Z","dependency_job_id":null,"html_url":"https://github.com/logisticinfotech/Laravel-text-to-speech","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/logisticinfotech%2FLaravel-text-to-speech","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/logisticinfotech%2FLaravel-text-to-speech/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/logisticinfotech%2FLaravel-text-to-speech/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/logisticinfotech%2FLaravel-text-to-speech/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/logisticinfotech","download_url":"https://codeload.github.com/logisticinfotech/Laravel-text-to-speech/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250514786,"owners_count":21443209,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["download-mp3","laravel","mp3","text-to-speech"],"created_at":"2024-11-08T22:21:04.893Z","updated_at":"2025-04-23T21:08:46.362Z","avatar_url":"https://github.com/logisticinfotech.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\u003cimg src=\"https://laravel.com/assets/img/components/logo-laravel.svg\"\u003e\u003c/p\u003e\n\n# Laravel Text To Speech Conveter\n\nLaravel Text to speech converter is transformings the text into artificial human speech. Convert text into corresponding language speech. You can download that audio speech and play that audio speech.\n\n- **Create a laravel project using composer**\n\t\t\n\t\tLaravel new text-to-speech-conveter\n\n- **Create an account in VoiceRSS and get your API key from VoiceRSS**\t\t\n\t\n\t[Create an account in VoiceRSS.](http://www.voicerss.org).\u003cbr /\u003e\n\t[Login in VoiceRSS.](http://www.voicerss.org/login.aspx).\u003cbr /\u003e\n\t[Get your API key](http://www.voicerss.org/personel/default.aspx). \n\n- **Environment File Set your API Key**\n\t\t\n\t\tVOICE_RSS_API_KEY=your_api_key\n\t\n\n- **Filesystem Configuration**\n\t\t\n\tIn config/filesystems.php add following code for creating snapshot disk on which all snapshots will be saved. You can change the driver and root values. \n\t```\n\t// ...\n\t'disks' =\u003e [\n        ...\n        'speeches' =\u003e [\n            'driver' =\u003e 'local',\n            'root' =\u003e storage_path('app/public/speeches'),\n        ],\n        ...\n    ],\n\t// ... \n\t```\t\t\t\n\n- **Create A Library For VoiceRSS**\n\t\n\t[Click here](http://www.voicerss.org/downloads/voicerss_tts_php.zip.) to download VoiceRSS SDK. Extract zip and put the voicerss_tts.php file inside App\\Library folder and rename to VoiceRss.php.\n\n- **Convert Text Into Speech**\n\t\n\tCreate a form which takes text and textual content language ( In which language you have written text ). \n\t\n\t````\n\tuse App\\Library\\VoiceRSS;\n\t// ...\n\t$tts = new VoiceRSS;\n  \t$voice = $tts-\u003espeech([\n  \t    'key' =\u003e env('VOICE_RSS_API_KEY'),\n  \t    'hl' =\u003e  $request-\u003elan,\n  \t    'src' =\u003e $request-\u003etext,\n  \t    'r' =\u003e '0',\n  \t    'c' =\u003e 'mp3',\n  \t    'f' =\u003e '44khz_16bit_stereo',\n  \t    'ssml' =\u003e 'false',\n  \t    'b64' =\u003e 'false'\n  \t]);\n\t````\n\n\t[Click here](http://www.voicerss.org/api/documentation.aspx) to view VoiceRss Documen for know more about VoiceRSS.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flogisticinfotech%2Flaravel-text-to-speech","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flogisticinfotech%2Flaravel-text-to-speech","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flogisticinfotech%2Flaravel-text-to-speech/lists"}