>upgrade to Audacity 1.3.13
Done
>Sound Activated Recording"
http://manual.audacityteam.org/man/Transport_Menu#sar
Well, maybe I missed a point, all I see is that I can set the db activation level, unfortunately this is NOT an answer to my question.
How is it possible to define the length of the silence, because there might be short "blanks" in a conversation and then its starts again.
To reformulate:
Say I set the activation level at -42DB.
A person starts talking, Audacity records, after a while this person pause (i.e. stop talking, usually in order to think or for a memory recall) let's say during 3 seconds, then continues.
I do NOT want Audacity to stop recording, because the activation level is breached for 3 sec, I want to set the stop recording when both one is under the activationg level AND this perdure for a given time, let's say 10 sec ! This is something as:
Function triggerStop()
If ( inputSound < -42 DB ) THEN
While (elepasedTime < 10sec)
if ( inputSound > -42 DB ) THEN triggerStop=FALSE; exit triggerStop();
EndWhile
triggerStop=TRUE
ENDIF
EndtriggerStop
This is quite common in radio or conferences and later one can work on the sound file if need be. Silences do have a lot of meaning.