用opensmile批量提取语音特征

@echo off
set /a sum=0
set extension=.txt
E:
cd \openSMILE-2.1.0\bin\Win32
for /f "tokens=1-10 delims=\" %%a in ('dir F:\esdata\casia\casiawav\sametext50\*.wav /a-d /b /s') do (
echo %%a\%%b\%%c\casiafeature\sametext50\%%f\%%g\%%~nh
mkdir %%a\%%b\%%c\casiafeature\sametext50\%%f\%%g
set /a sum=sum+1
SMILExtract_Release -C E:\openSMILE-2.1.0\config\IS09Index.conf -I %%a\%%b\%%c\%%d\%%e\%%f\%%g\%%h -O %%a\%%b\%%c\casiafeature\sametext50\%%f\%%g\%%~nh%extension%
)
echo "行:" %sum%
set sum=
set extension=

你可能感兴趣的:(Windows,语音情感分析)