|
Author
|
Topic: Set bargein volume
|
smart_sagittarian
Junior Member
Member # 3369
Rate Member
|
posted February 01, 2006 10:22 AM
I wanted to know if it is possible to set a volume level for the bargein so that I can ignore bargeins which have a lower volume. The problem is that background noise is getting detected as speech which should not be happening..
Posts: 4 | Registered: Feb 2006
| IP: Logged
|
|
mheadd
Member
Member # 3181
Member Rated:
|
posted February 01, 2006 10:03 PM
You have a couple of options that might help.
First, you can adjust the �volume level� for accepting input in your application by setting the value of the sensitivity property. A lower value makes your application less sensitive to input, and a higher value makes it more sensitive.
code:
<property name=�sensitivity� value=�0.9�/> //Makes your application more sensitive <property name=�sensitivity� value=�0.5�/> //Usually the default setting <property name=�sensitivity� value=�0.1�/> //Makes your application less sensitive
The other thing you can do is set the type of bargein that your application will allow. If you adjust the value of the �bargeintype� property, your application will ignore input that does not match an active grammar. Any input that does not match an active grammar will simply be ignored.
code:
<property name=�bargeintype� value=�hotword�/>
Hope this helps.
-------------------- Mark VoiceinGov.org http://www.voiceingov.org
Posts: 55 | Registered: Jun 2005
| IP: Logged
|
|
smart_sagittarian
Junior Member
Member # 3369
Rate Member
|
posted February 02, 2006 02:06 AM
Thanks for the information. I have not tried it out but from the look of it, sounds like it would help.
Posts: 4 | Registered: Feb 2006
| IP: Logged
|
|
|