DEV Community

Cover image for I Created A Text-To-Speech Converter With Flask
Adithyan A
Adithyan A

Posted on • Updated on

I Created A Text-To-Speech Converter With Flask

Hello Friendsโ— ๐Ÿ˜€๐Ÿ˜Ž

What Is This?

Simply this is AdiSpeaks a text-to-speech converter on the web.

This is a website in which you can enter your text and emojis and then it will be converted to an mp3 file which you can also download

How To Use It?

  1. Clone the GitHub repository

    git clone https://github.com/AdithyanA2005/Text_To_Speech_Converter_Flask
    
  2. Install the required dependencies

    pip install -r requirements.txt
    
  3. Start the server

    python main.py
    

    This will show the output as

     * Serving Flask app 'app.app' (lazy loading)
     * Environment: production
       WARNING: This is a development server. Do not use it in a production deployment.
       Use a production WSGI server instead.
     * Debug mode: on
     * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
     * Restarting with stat
     * Debugger is active!
     * Debugger PIN: 145-064-838
    
  4. Open the running website

    http://localhost:5000 or http://127.0.0.1:5000

  5. In the opened website click on the Get Started Button to open form

Screenshot

  1. In the form enter the desired text and click the Play Audio Button

    Screenshot

  2. To download the audio file first click on the triple-dot button and then click the download button

    Screenshot

Top comments (0)