Shahabks / my-voice-analysis

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.

Home Page:https://shahabks.github.io/my-voice-analysis/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Voice Memo for preparing audio files

isobel228 opened this issue · comments

Could anyone please tell me if Voice Memo can be used to create audio files?

I get "Try again the sound of the audio was not clear" and cannot run the program. Since I'm using the correct version of Python (3.7.17), and 44.1kHz/16bits audio files longer than 10 sec in duration in wav format, I thought the issue is with how I prepare my audio files.

Here is my program:
`mysp=import("my-voice-analysis")

p="NI" # Audio File title
c=r"C:\Users\i.nanako\Desktop\Data" # Path to the Audio_File directory (Python 3.7)

mysp.mysptotal(p,c)
mysp.myspgend(p,c)
mysp.myspsyl(p,c)
mysp.mysppaus(p,c)
mysp.myspsr(p,c)
mysp.myspatc(p,c)
mysp.myspst(p,c)
mysp.myspod(p,c)
mysp.myspbala(p,c)
mysp.myspf0mean(p,c)
mysp.myspf0sd(p,c)
mysp.myspf0med(p,c)
mysp.myspf0min(p,c)
mysp.myspf0max(p,c)
mysp.myspf0q25(p,c)
mysp.myspf0q75(p,c)
mysp.mysppron(p,c)`

Thank you!

I am facing the exact same issue. Did you get any workaround?