Thank you for your help, i read the documentationand now i
have the idea of how it works:
to extract my features, i use this code after import
usefull libraries:
sound = parselmouth.Sound(audio_path)
pitch = call(sound, "To Pitch", 0.0, 75, 600)
harmonicity = call(sound, "To Harmonicity (cc)", 0.01,
75, 0.1, 1.0)
hnr = call(harmonicity, "Get mean", 0, 0)
pointProcess = call(sound, "To PointProcess (periodic,
cc)", 75, 500)
localJitter = call(pointProcess, "Get jitter (local)", 0,
0, 0.0001, 0.02, 1.3)
localabsoluteJitter = call(pointProcess, "Get jitter
(local, absolute)", 0, 0, 0.0001, 0.02, 1.3)
rapJitter = call(pointProcess, "Get jitter (rap)", 0, 0,
0.0001, 0.02, 1.3)
ppq5Jitter = call(pointProcess, "Get jitter (ppq5)", 0, 0,
0.0001, 0.02, 1.3)
ddpJitter = call(pointProcess, "Get jitter (ddp)", 0, 0,
0.0001, 0.02, 1.3)
localShimmer = call([sound, pointProcess], "Get shimmer
(local)", 0, 0, 0.0001, 0.02, 1.3, 1.6)
localdbShimmer = call([sound, pointProcess], "Get shimmer
(local_dB)", 0, 0, 0.0001, 0.02, 1.3, 1.6)
apq3Shimmer = call([sound, pointProcess], "Get shimmer
(apq3)", 0, 0, 0.0001, 0.02, 1.3, 1.6)
aqpq5Shimmer = call([sound, pointProcess], "Get shimmer
(apq5)", 0, 0, 0.0001, 0.02, 1.3, 1.6)
apq11Shimmer = call([sound, pointProcess], "Get shimmer
(apq11)", 0, 0, 0.0001, 0.02, 1.3, 1.6)
ddaShimmer = call([sound, pointProcess], "Get shimmer
(dda)", 0, 0, 0.0001, 0.02, 1.3, 1.6)
and my questions are:
1) for all features have i take standard parameters ?
2) for shimmer and jitter should i take all the differents
types or there are among them importants features that i can
take? my gool is to do emotion classification with my features
after?
3) I try to use sound to intensity object with this code :
intensity = call(sound, "to intensity", 0.0, 75), it doesn't
work , i have this error:
PraatError: Command "to intensity" not available for given objects.
i think that it due to the parameters ( 0.0 , 0.75).
Thank you for your help and excuse my english :)