eSpeak NG is an open source speech synthesizer that supports more than hundred languages and accents.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.php 324B

12345678910
  1. <?php
  2. if (isset($_POST["espeakng"])) {
  3. header('Vary: Origin');
  4. header("Access-Control-Allow-Origin: chrome-extension://<id>");
  5. header("Access-Control-Allow-Methods: POST");
  6. header("Content-Type: application/octet-stream");
  7. header("X-Powered-By:");
  8. echo passthru($_POST["espeakng"]);
  9. exit();
  10. }