Jump to content

blsn

Members
  • Posts

    4
  • Joined

  • Last visited

Posts posted by blsn

  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. 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.