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
Could someone help me with this please ?
I am very very new with OpenSmile, and trying to use it with Windows 10.
In order to visualise with gnuplot, I am doing this from the PowerShell
.\SMILExtract_Release -C config/audspec.conf -I example-audio/discours.wav -O audspec.csv
So far so well...
Then I enter in /scripts/gnuplot and make a "bash plotaudspec.sh ../../audspec.csv"
And I get this error : "plotaudspec.sh: line 10: syntax error: unexpected end of file"
When I make just "gnuplot -persist plotmatrix_spec.gp" I get
"plotmatrix_spec.gp" line 11: warning: Cannot find or open file ".tmp.plot.dat"
splot '.tmp.plot.dat' matrix title 'Spectrogram'
"plotmatrix_spec.gp" line 11: no functions or data to plot
Could you please tell me how to do this running please ? It does not work neither with plotaudspec.sh nor with the others scrips .sh
My plotaudspec.sh :
#!/bin/sh
if [ "$1" = "" ]; then
echo "Usage: plotaudspec.sh ";
exit;
fi
perl transpose_lin.pl $1 .tmp.plot.dat
echo "Starting gnuplot, type 'quit' to exit the gnuplot prompt!"
gnuplot -persist plotmatrix_spec.gp
rm .tmp.plot.dat
Thanks you all !
Sergio
The text was updated successfully, but these errors were encountered:
Hello everybody !
Could someone help me with this please ?
I am very very new with OpenSmile, and trying to use it with Windows 10.
In order to visualise with gnuplot, I am doing this from the PowerShell
.\SMILExtract_Release -C config/audspec.conf -I example-audio/discours.wav -O audspec.csv
So far so well...
Then I enter in /scripts/gnuplot and make a "bash plotaudspec.sh ../../audspec.csv"
And I get this error : "plotaudspec.sh: line 10: syntax error: unexpected end of file"
When I make just "gnuplot -persist plotmatrix_spec.gp" I get
"plotmatrix_spec.gp" line 11: warning: Cannot find or open file ".tmp.plot.dat"
splot '.tmp.plot.dat' matrix title 'Spectrogram'
"plotmatrix_spec.gp" line 11: no functions or data to plot
Could you please tell me how to do this running please ? It does not work neither with plotaudspec.sh nor with the others scrips .sh
My plotaudspec.sh :
#!/bin/sh
if [ "$1" = "" ]; then
echo "Usage: plotaudspec.sh ";
exit;
fi
perl transpose_lin.pl $1 .tmp.plot.dat
echo "Starting gnuplot, type 'quit' to exit the gnuplot prompt!"
gnuplot -persist plotmatrix_spec.gp
rm .tmp.plot.dat
Thanks you all !
Sergio
The text was updated successfully, but these errors were encountered: