Opensmile Toolkit Quick Setup






open Speech and Music Interpretation by Large Space Extraction (openSMILE )  It is written purely in C++, has a fast, efficient, and flexible architecture

The latest stable release of openSMILE can be found at http://opensmile.sourceforge.net/

Official Opensmile download link : -
http://www.audeering.com/research/opensmile#download

Download the latest binary for Opensmile.

Support is available for Linux, Windows and Mac Os users.

Data input: openSMILE can read data from the following file formats:
• RIFF-WAVE (PCM) (for MP3, MP4, OGG, etc. a converter needs to be used)
• Comma Separated Value (CSV)
• HTK parameter files
• WEKA’s ARFF format.
• Video streams via openCV.

Unix Installation

Use the following script that is in dashes  to do a complete installation and below is the description of what the script is doing.

Script begins here.
-----------------------------------------------------------------------------------------------------------------------------
#!usr/bash

result=${PWD}

echo "Everything will be done in this directory."
echo $result

wget http://www.audeering.com/research-and-open-source/files/openSMILE-2.1.0.tar.gz
tar -zxvf openSMILE-2.1.0.tar.gz
sudo apt-get install build-essential libtool

#PORTAUDIO INSTALLATION
echo "run this in the directory where you want to install portaudio."
wget http://www.portaudio.com/archives/pa_stable_v19_20140130.tgz
sudo apt-get install libasound-dev
tar -zvxf pa_stable_v19_20140130.tgz
cd portaudio
./configure && make
sudo make install

#back to openSmile

cd ..

cd openSMILE-2.1.0

bash autogen.sh
./configure
sh buildWithInstalledPortAudio.sh
./SMILExtract -h
cd ..

wget http://www.ee.ic.ac.uk/hp/staff/dmb/voicebox/voicebox.zip
unzip voicebox.zip -d voicebox

-----------------------------------------------------------------------------------------------------------------------------
Script is over here [Copy paste in a .sh file the above portion and run it as bash <name>.sh]

Manual Installation

Detailed explanation begins here....

tar -zxvf openSMILE-2.x.x.tar.gz

This creates a folder called openSMILE-2.x.x. Change to this directory by typing:
cd openSMILE-2.x.x

Rather than using standalone script for installation it is my personal advice to install with PortAudio so that the user can have capability of recording and playing the audio files.

Build with PortAudio

Download Portaudio from http://www.portaudio.com/ and install it using the Readme file from the unzipped tar folder.
Else use synaptic package manager to install portaudio by just searching in the package manager

Assuming PortAudio is installed correctly type

then type in bash autogen.sh

If autogen.sh fails then you probably have a dependency missing
For my system the dependency missing was libtool

Thus to install that type out
sudo apt-get install build-essential libtool

Then rerun bash autogen.sh to get the autoconfiguration done.

If it fails again
[On linux, the Opensmile SEMAINE component can be built from the SEMAINE-2.0-source package. All third-party software required to run the system is open source software, and is already included in the install package.

To build the system, a number of standard build tools need to be installed: gcc, automake, etc. To install them on an Ubuntu Linux system, type:

sudo apt-get install automake autoconf gcc g++ libasound2-dev make libtool patch libx11-dev  

]

The portion in square brackets may be needed for some systems. Though there is no harm in installing it again

Now after installing the above packages type again :
bash autogen.sh

Later type ./configure to configure with portaudio

sh buildWithInstalledPortAudio.sh [-p install-prefix-path]
-p install-prefix-path is optional
to install the opensmile toolkit.

If you have installed openSMILE to a non-default path, you must set your library
path to include the newly installed libopensmile before running the SMILExtract binary (replace
/directory/prefix/to/install/to by the path you have passed to the --prefix option of
the configure script):
export LD LIBRARY PATH=/directory/prefix/to/install/to/lib
You will also need to add the path to the binary to your current PATH variable:
export PATH="$PATH:/directory/prefix/to/install/to/lib"

Compiling on Linux with openCV and portaudio support.

sudo apt-get install libopencv*

The installation path of OpenCV (PATH TO OPENCV) in this case will be /usr/

If you get an error message that some of the libopencv*.so libraries are not found when you
run SMILExtract, type this command in the shell before you run SMILExtract:
export LD LIBRARY PATH="/usr/local/lib

The built executable is called SMILExtract and is found in the inst/bin sub-directory. Please note,that in this case, it is a wrapper script, which sets up the library path and calls the actual binary SMILExtract.bin. Thus, you can also use this method if you have a locally installed (different) PortAudio. Just be sure to always run openSMILE through the wrapper script, and not run the binary directly (this will use the system wide, possibly incompatible, PortAudio library).

Test of Installation
 
Now, that you have either successfully downloaded and installed the binary version of openSMILE or have compiled the source code yourself, you are ready to test the program and extract your first features. To check if you can run SMILExtract, type:

./SMILExtract -h

If you see the usage information and version number of openSMILE, then everything is set up correctly.












Comments

  1. pleas share the details how to install openSMILE on windows.

    ReplyDelete

Post a Comment

Popular posts from this blog

SOX - Sound eXchange - How to use SOX for audio processing tasks in research.

Sox of Silence - Original post - http://digitalcardboard.com/blog/2009/08/25/the-sox-of-silence/

How to get video or audio duration of a file using ffmpeg?