Jump to content

blsn

Members
  • Posts

    4
  • Joined

  • Last visited

blsn's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. MARY TTS is an open-source, multilingual text-to-speech synthesis system written in pure java. https://github.com/marytts/marytts I installed Mary TTS (version 5.1.2) on my Windows (and Linux computers). I started the Mary TTS server and the Mary TTS client, and I did some trials with text to audio conversion in the GUI window (its great). I would like to use Mary TTS on my website to read text aloud, where a user can add a text into the input field and generate the output like in the GUI window, without using the java client. For example: <input type="text" id="text"> <button onclick="play('text');">Speak it</button> <script> function play(id){ var text = document.getElementById(id).value; var a = new Audio(text); a.play(); } </script> Just to get started.. I can't realize how to do that in HTML/JavaScript and PHP?
  2. I've tried it on the local host server. The outputs path is http://localhost/ Should be: http://localhost/mywebsite p.s. The output for the share hosting is o.k. (http://www.mywebsite.com). Any advise on this matter would be appreciated.
  3. Thank you for your reply but this solution is good only for hosting server. How can I use one code for both hosting and testing server?
  4. Hi, I am building a web site and have included files that get used from the root and different sub directories within my site. For example: <link rel="stylesheet" href="<?php echo $_SERVER['DOCUMENT_ROOT']; ?>/css/style.css"> These are the outputs of $_SERVER['DOCUMENT_ROOT']: Testing server (http://localhost/mywebsite): C:/xampp/htdocs/mywebsite Share host server (http://www.mywebsite.com): /home/mywebsite/public_html How to define the above path correctly to work both on testing and hosting server?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.