Metadata-Version: 1.1
Name: pySpeechAlien
Version: 1.5
Summary: Speech analysis tool
Home-page: https://github.com/arpansahoo/pySpeechAlien
Author: Arpan Sahoo
Author-email: asahoo1@jhu.edu
License: MIT
Description: # pySpeechAlien
        
        Speech analysis tool - modified version of [Shahabks/my-voice-analysis](https://github.com/Shahabks/my-voice-analysis).
        
        pySpeechAlien can analyze .wav audio files to determine gender, mood, number of syllables, number of pauses, duration of speech, speech rate, etc.
        
        ## Getting Started
        
        To get this project up and running on your local machine, follow the below instructions.
        
        There have been reported issues with running this program in Python 3, so if you run into issues, please use Python 2.7. pySpeechAlien is developed and tested in Python 2.7.16.
        
        Install pySpeechAlien using pip (may need to use pip2).
        ```
        pip install pySpeechAlien
        ```
        Upgrade to the latest version using pip (may need to use pip2).
        ```
        pip install -U pySpeechAlien
        ```
        Download myspsolution.praat and speech_analysis.py, and move them to the folder containing your .wav audio files. Inside speech_analysis.py, replace the following with the path of the folder containing your .wav audio files.
        ```
        location = r"/Users/arpansahoo/Documents/GitHub/pySpeechAlien"
        ```
        Then, inside speech_analysis.py, replace the following with the name of the audio file you would like to analyze (exclude the .wav extension).
        ```
        file_name = "erica"
        ```
        Then, just run the following to run the analysis. You may need to specify python2.
        ```
        python speech_analysis.py
        ```
        
Keywords: praat speech-analysis python
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
