Questions tagged [audeering-opensmile]

14 questions
5
votes
1 answer

MacOS: configure: error: C compiler cannot create executables

I am trying to install opensmile on my Macbookd and encountered the following error: configure: error: C compiler cannot create executables I have Xcode 8.2.1 installed. I already tried some answers on similar topics on StackOverflow but nothing…
mbpro
  • 53
  • 1
  • 6
4
votes
1 answer

'Error: no member named 'signbit' in the global namespace' while trying to run opensmile-2.3.0 on Mac OS Catlina?

I'm trying install Opensmile-2.3.0 on Mac but I get few cmath errors. I have updated Xcode to 11.3 and it didn't help. Mac OS - Catlina 10.15.3 I began by downloading the file as .tar file and unzipped it using tar -zxvf opensmile-2.3.0.tar Then…
2
votes
1 answer

How can I execute OpenSMILE toolkit from Matlab environment?

I want to use the OpenSMILE toolkit as a voice feature extractor. But I developed my project scripts in the Matlab environment. So, I am searching for a way to calling OpenSMILE from Matlab and handle the features obtained. I would be pleased if…
2
votes
1 answer

openSMILE: Trying to Extract emotion features from emobase.conf results in error

I was going through the openSMILE book and in section 2.5.6, it mentioned that in order to extract emotion features, one needs to run a command of this sort: SMILExtract_Release -C config/emobase.conf -I input.wav -O angers.arff -instname ANGER…
Diptark Bose
  • 33
  • 1
  • 8
2
votes
1 answer

How to use emobase.config file in Opensmile?

I want to extract audio features using opensmile using the predefined emobase.config file. However when I enter a .wav and I get the output for only one framesize. I changed the framemode to fixed and gave the values for fixedstep and fixedsize but…
Adrika
  • 51
  • 2
2
votes
1 answer

How to create custom config files in OpenSMILE

I am trying to extract some features from an audio sample using OpenSMILE, but I'm realizing how difficult it is to set up a config file. The documentation is not very helpful. The best I could do was run some of the sample config files that are…
Monica Heddneck
  • 2,973
  • 10
  • 55
  • 89
1
vote
1 answer

Is it possible to use multithread to extract audio features (librosa, opensmile and essentia)?

I'm working with the libraries librosa, opensmile and essentia to extract features from the audio, however, despite being able to, the process is extremely time consuming and making it impossible for me to continue with my project. Basically I have…
1
vote
0 answers

Interpreting opensmile feature output

My output features have -0 and -1 appended to them, what does it mean? For example, I have both pcm_RMSenergy_sma_amean-0 and pcm_RMSenergy_sma_amean-1, with different values. This happens using GeMAPSv01a.conf and IS10_paraling.conf config files…
dthomas
  • 53
  • 4
1
vote
2 answers

Opensmile: unreadable csv file while extracting prosody features from wav file

I am extracting prosody features from an audio file while using Opensmile using Windows version of Opensmile. It runs successful and an output csv is generated. But when I open csv, it shows some rows that are not readable. I used this command to…
0
votes
1 answer

There is a bug when I extract audio feature using Opensmile

I want to extract the feature from audio using OPENSMILE with the following cmd in Linux: /iflytek/workplace/tools/opensmile/SMILExtract -C /iflytek/workplace/tools/opensmile/config/gemaps/eGeMAPSv01a.conf…
0
votes
0 answers

Plot spectrogram from data extracted with OpenSMILE with matplotlib

I have data that was extracted from audio files with OpenSMILE. I have the spectrograms as png files, but I would like to learn how to plot it myself with matplotlib. The data has a frametime as first column, and decibel values in the other…
reggie
  • 3,523
  • 14
  • 62
  • 97
0
votes
1 answer

opensmile in Python save as .arff

I am using Python with the library opensmile. My target is to generate *.arff files to use in Weka3 ML-Tool. My problem is, that It is rather unclear for me how to save the extracted features into an *.arff file. for example: import opensmile smile…
0
votes
2 answers

Bash: Go up and down directories

Dear stackoverflow community, I am new to bash and I've got a problem regarding loops and directories (code below). So I am working in the opensmile directory and want to look for .wav files in the subdirectory opensmile/test-audio/. But if I change…
bash-asker
  • 41
  • 5
0
votes
1 answer

how to use sox in google cloud function

I trying to use openSMILE in google cloud functions, but I have a problem. openSMILE seems to depend on the sox library. So I added sox to google cloud functions requirements.txt. However, only the same log is being repeated. "SoX could not be…