My-Voice Analysis is a Python library for the analysis of voice (simultaneous speech, high entropy) without the need of a transcription. It breaks utterances and detects syllable boundaries, fundamental frequency contours, and formants.
This project is maintained by Shahabks
1- Both My-Voice-Analysis and Myprosody work on Python 3.7
2- If you install My-Voice-Analysis through PyPi, please use:
mysp=__import__("my-voice-analysis") instead of import myspsolution as mysp
3- It it better to keep the folder names as single entities for instance "Name_Folder" or "NameFolder" without space in the dirctoy path
My-Voice Analysis is a Python library for the analysis of voice (simultaneous speech, high entropy) without the need of a transcription. It breaks utterances and detects syllable boundaries, fundamental frequency contours, and formants. Its built-in functions recognise and measures
The library was developed based upon the idea introduced by Nivja DeJong and Ton Wempe [1], Paul Boersma and David Weenink [2], Carlo Gussenhoven [3], S.M Witt and S.J. Young [4] and Yannick Jadoul [5]. Peaks in intensity (dB) that are preceded and followed by dips in intensity are considered as potential syllable cores.
My-Voice Analysis is unique in its aim to provide a complete quantitative and analytical way to study acoustic features of a speech. Moreover, those features could be analysed further by employing Python’s functionality to provide more fascinating insights into speech patterns.
This library is for Linguists, scientists, developers, speech and language therapy clinics and researchers.
Please note that My-Voice Analysis is currently in initial state though in active development. While the amount of functionality that is currently present is not huge, more will be added over the next few months.
my-voice-analysis can be installed like any other Python library, using (a recent version of) the Python package manager pip, on Linux, macOS, and Windows:
pip install my-voice-analysis
or, to update your installed version to the latest release:
pip install -u my-voice-analysis
After installing My-Voice-Analysis, copy the file myspsolution.praat from
https://github.com/Shahabks/my-voice-analysis
and save in the directory where you will save audio files for analysis.
Audio files must be in *.wav format, recorded at 44 kHz sample frame and 16 bits of resolution.
Gender recognition and mood of speech: Function myspgend(p,c)
[in] import myspsolution as mysp
p="Walkers" # Audio File title
c=r"C:\Users\Shahab\Desktop\Mysp" # Path to the Audio_File directory (Python 3.7)
mysp.myspgend(p,c)
[out] a female, mood of speech: Reading, p-value/sample size= :0.00 5
Pronunciation posteriori probability score percentage: Function mysppron(p,c)
[in] import myspsolution as mysp
p="Walkers" # Audio File title
c=r"C:\Users\Shahab\Desktop\Mysp" # Path to the Audio_File directory (Python 3.7)
mysp.mysppron(p,c)
[out] Pronunciation_posteriori_probability_score_percentage= :85.00
Detect and count number of syllables: Function myspsyl(p,c)
[in] import myspsolution as mysp
p="Walkers" # Audio File title
c=r"C:\Users\Shahab\Desktop\Mysp" # Path to the Audio_File directory (Python 3.7)
mysp.myspsyl(p,c)
[out] number_ of_syllables= 154
Detect and count number of fillers and pauses: Function mysppaus(p,c)
[in] import myspsolution as mysp
p="Walkers" # Audio File title
c=r"C:\Users\Shahab\Desktop\Mysp" # Path to the Audio_File directory (Python 3.7)
mysp.mysppaus(p,c)
[out] number_of_pauses= 22
Measure the rate of speech (speed): Function myspsr(p,c)
[in] import myspsolution as mysp
p="Walkers" # Audio File title
c=r"C:\Users\Shahab\Desktop\Mysp" # Path to the Audio_File directory (Python 3.7)
mysp.myspsr(p,c)
[out] rate_of_speech= 3 # syllables/sec original duration
Measure the articulation (speed): Function myspatc(p,c)
[in] import myspsolution as mysp
p="Walkers" # Audio File title
c=r"C:\Users\Shahab\Desktop\Mysp" # Path to the Audio_File directory (Python 3.7)
mysp.myspatc(p,c)
[out] articulation_rate= 5 # syllables/sec speaking duration
Measure speaking time (excl. fillers and pause): Function myspst(p,c)
[in] import myspsolution as mysp
p="Walkers" # Audio File title
c=r"C:\Users\Shahab\Desktop\Mysp" # Path to the Audio_File directory (Python 3.7)
mysp.myspst(p,c)
[out] speaking_duration= 31.6 # sec only speaking duration without pauses
Measure total speaking duration (inc. fillers and pauses): Function myspod(p,c)
[in] import myspsolution as mysp
p="Walkers" # Audio File title
c=r"C:\Users\Shahab\Desktop\Mysp" # Path to the Audio_File directory (Python 3.7)
mysp.myspod(p,c)
[out] original_duration= 49.2 # sec total speaking duration with pauses
Measure ratio between speaking duration and total speaking duration: Function myspbala(p,c)
[in] import myspsolution as mysp
p="Walkers" # Audio File title
c=r"C:\Users\Shahab\Desktop\Mysp" # Path to the Audio_File directory (Python 3.7)
mysp.myspbala(p,c)
[out] balance= 0.6 # ratio (speaking duration)/(original duration)
Measure fundamental frequency distribution mean: Function myspf0mean(p,c)
[in] import myspsolution as mysp
p="Walkers" # Audio File title
c=r"C:\Users\Shahab\Desktop\Mysp" # Path to the Audio_File directory (Python 3.7)
mysp.myspf0mean(p,c)
[out] f0_mean= 212.45 # Hz global mean of fundamental frequency distribution
Measure fundamental frequency distribution SD: Function myspf0sd(p,c)
[in] import myspsolution as mysp
p="Walkers" # Audio File title
c=r"C:\Users\Shahab\Desktop\Mysp" # Path to the Audio_File directory (Python 3.7)
mysp.myspf0sd(p,c)
[out] f0_SD= 57.85 # Hz global standard deviation of fundamental frequency distribution
Measure fundamental frequency distribution median: Function myspf0med(p,c)
[in] import myspsolution as mysp
p="Walkers" # Audio File title
c=r"C:\Users\Shahab\Desktop\Mysp" # Path to the Audio_File directory (Python 3.7)
mysp.myspf0med(p,c)
[out] f0_MD= 205.7 # Hz global median of fundamental frequency distribution
Measure fundamental frequency distribution minimum: Function myspf0min(p,c)
[in] import myspsolution as mysp
p="Walkers" # Audio File title
c=r"C:\Users\Shahab\Desktop\Mysp" # Path to the Audio_File directory (Python 3.7)
mysp.myspf0min(p,c)
[out] f0_min= 77 # Hz global minimum of fundamental frequency distribution
Measure fundamental frequency distribution maximum: Function myspf0max(p,c)
[in] import myspsolution as mysp
p="Walkers" # Audio File title
c=r"C:\Users\Shahab\Desktop\Mysp" # Path to the Audio_File directory (Python 3.7)
mysp.myspf0max(p,c)
[out] f0_max= 414 # Hz global maximum of fundamental frequency distribution
Measure 25th quantile fundamental frequency distribution: Function myspf0q25(p,c)
[in] import myspsolution as mysp
p="Walkers" # Audio File title
c=r"C:\Users\Shahab\Desktop\Mysp" # Path to the Audio_File directory (Python 3.7)
mysp.myspf0q25(p,c)
[out] f0_quan25= 171 # Hz global 25th quantile of fundamental frequency distribution
Measure 75th quantile fundamental frequency distribution: Function myspf0q75(p,c)
[in] import myspsolution as mysp
p="Walkers" # Audio File title
c=r"C:\Users\Shahab\Desktop\Mysp" # Path to the Audio_File directory (Python 3.7)
mysp.myspf0q75(p,c)
[out] f0_quan75= 244 # Hz global 75th quantile of fundamental frequency distribution
Overview: Function mysptotal(p,c)
[in] import myspsolution as mysp
p="Walkers" # Audio File title
c=r"C:\Users\Shahab\Desktop\Mysp" # Path to the Audio_File directory (Python 3.7)
mysp.mysptotal(p,c)
[out] number_ of_syllables 154
number_of_pauses 22
rate_of_speech 3
articulation_rate 5
speaking_duration 31.6
original_duration 49.2
balance 0.6
f0_mean 212.45
f0_std 57.85
f0_median 205.7
f0_min 77
f0_max 414
f0_quantile25 171
f0_quan75 244
My-Voice-Analysis was developed by Sab-AI Lab in Japan (previously called Mysolution). It is part of a project to develop Acoustic Models for linguistics in Sab-AI Lab. That is planned to enrich the functionality of My-Voice Analysis by adding more advanced functions as well as adding a language models. Please see Myprosody https://github.com/Shahabks/myprosody and Speech-Rater https://shahabks.github.io/Speech-Rater/)
My-Voice-Analysis and MYprosody repos are two capsulated libraries from one of our main projects on speech scoring. The main project (its early version) employed ASR and used the Hidden Markov Model framework to train simple Gaussian acoustic models for each phoneme for each speaker in the given available audio datasets, then calculating all the symmetric K-L divergences for each pair of models for each speaker. What you see in these repos are just an approximate of those model without paying attention to level of accuracy of each phenome rather on fluency In the project’s machine learning model we considered audio files of speakers who possessed an appropriate degree of pronunciation, either in general or for a specific utterance, word or phoneme, (in effect they had been rated with expert-human graders). Here below the figure illustrates some of the factors that the expert-human grader had considered in rating as an overall score
### MIT License
• Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: • The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. • THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.