SDC CKS.AI RADIO

Tuesday, December 7, 2021

Coleman Kestin & Smith Software (CKS) Simple Text To Audio Generator Website Embed - Get The Code Here




http://www.sdcomnimedia.net/music/recording-studio/

==================================================================================================================================================

 <!doctype html>

<head>

<style>

/* CSS comes here */

body {

    font-family:arial;

}

input {

    padding: 10px;

    width: 300px;

    border-radius: 5px;

    border: solid 2px #BBB;

}

div {

    margin:10px 0px;

}

button {

    padding:10px;

    background-color:#6a67ce;

    color: #FFFFFF;

    border: 0px;

    cursor:pointer;

    border-radius: 5px;

}

</style>

<title>Coleman Kestin & Smith - Text to Audio</title>

</head>

<body>

    <h2>CKS Software Simple  Text to Speech Generator</h2>

<div><input type="text" id="text-to-speech" placeholder="Enter text to speak..."/></div>

        <div><button type="button" onclick="textToAudio()">Speak</button></div>

        <br/>

        <div><small><b>NOTE:</b> Enter text and click on speak button.</small></div>

<script>

/* JS comes here */

            function textToAudio() {

                let msg = document.getElementById("text-to-speech").value;

                

                let speech = new SpeechSynthesisUtterance();

                speech.lang = "en-US";

                

                speech.text = msg;

                speech.volume = 1;

                speech.rate = 1;

                speech.pitch = 1;

                

                window.speechSynthesis.speak(speech);

            }

</script>

</body>

</html>


==================================================================================================================================================

No comments:

Post a Comment