You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am doing my master's thesis and I want to use openSMILE to extract features from my audio files. If I use the standard configuration of ComParE_2016 with the low level descriptors
everything is alright. However, I would like to increase the framesize to get shorter sequences. I found here in github issue #42 of someone with the same intention as me I followed the suggested steps:
but I got this error : OpenSmileException: Code: 6 . Maybe the problem is in the creation of the config files: all I did was copy the files from github but I added in the first line config_str = ''' and in the last line i closed with '''. Should I save all files as .conf or with the same extensions as seen in the github? How can I solve this?
The text was updated successfully, but these errors were encountered:
go to the "opensmile-python/opensmile/core/config/compare" folder
open the config file ComParE_2016_core.lld.conf.inc
change the frame size and frame step at lines 18-19
make the same change to the frame size and frame step at lines 51-52
run
smile = opensmile.Smile(
feature_set=opensmile.FeatureSet.ComParE_2016,
feature_level=opensmile.FeatureLevel.LowLevelDescriptors,
)
y = smile.process_file('audio.wav')
Hello everyone,
I am doing my master's thesis and I want to use openSMILE to extract features from my audio files. If I use the standard configuration of ComParE_2016 with the low level descriptors
smile = opensmile.Smile( feature_set=opensmile.FeatureSet.ComParE_2016, feature_level=opensmile.FeatureLevel.LowLevelDescriptors, )
everything is alright. However, I would like to increase the
framesize
to get shorter sequences. I found here in github issue #42 of someone with the same intention as me I followed the suggested steps:After this I run the following command:
smile = opensmile.Smile( feature_set='ComParE_2016.conf', feature_level='lld', )
but I got this error :
OpenSmileException: Code: 6
. Maybe the problem is in the creation of the config files: all I did was copy the files from github but I added in the first lineconfig_str = '''
and in the last line i closed with'''
. Should I save all files as .conf or with the same extensions as seen in the github? How can I solve this?The text was updated successfully, but these errors were encountered: