Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - bobsj2000

Pages: [1]
1
General Discussion / Training voices in Voxcommando
« on: January 29, 2015, 04:09:21 PM »
Really odd. I am using the Microsoft Kinect and it can hear my voice fine and respond with 90% accuracy, but I cannot seem to trigger it with my wife's voice. Voxcommando pretty much ignores her. Has anyone else had this type of issue?

RJ

2
XML Exchange / Another time telling script
« on: January 28, 2015, 03:03:35 AM »
This is my first script in VoxCommando, so please be gentle. This is a really simple script that will report the time and date with a respectful human reaction flare.

Enjoy

Code: [Select]
<?xml version="1.0" encoding="utf-16"?>
<!--VoxCommando 2.1.3.6-->
<groupCollection open="True" name="Time">
  <commandGroup open="True" name="The time and date" enabled="True" prefix="" priority="0" requiredProcess="" description="">
    <command id="442" name="time" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="80" loop="False" loopDelay="0" loopMax="0" description="Simple command to retrieve time and date and announce with a respective flare.">
      <action>
        <cmdType>TTS.SpeakSync</cmdType>
        <params>
          <param>Please wait sir as I access that information from the world time servers. </param>
        </params>
        <cmdRepeat>1</cmdRepeat>
      </action>
      <loop>
        <loopParams>
          <from>1</from>
          <to>4000</to>
        </loopParams>
        <loopActions />
      </loop>
      <action>
        <cmdType>TTS.Speak</cmdType>
        <params>
          <param>I have that information for you now sir.</param>
        </params>
        <cmdRepeat>1</cmdRepeat>
      </action>
      <loop>
        <loopParams>
          <from>1</from>
          <to>2000</to>
        </loopParams>
        <loopActions />
      </loop>
      <action>
        <cmdType>TTS.SpeakSync</cmdType>
        <params>
          <param>The current time is {DtCustom.h:mmtt} and today's current date is {DtCustom.MMMM dd yyyy}</param>
        </params>
        <cmdRepeat>1</cmdRepeat>
      </action>
      <action>
        <cmdType>OSD.ShowText</cmdType>
        <params>
          <param>The current time is {DtCustom.h:mmtt} -- Current date is {DtCustom.MMMM dd yyyy}</param>
          <param>8000</param>
          <param>200</param>
        </params>
        <cmdRepeat>1</cmdRepeat>
      </action>
      <action>
        <cmdType />
        <params />
        <cmdRepeat>1</cmdRepeat>
      </action>
      <phrase>What is the time</phrase>
    </command>
  </commandGroup>
</groupCollection>

3
I have been curious how to implement voice automation throughout the entire house. I am wondering if these devices will work with Microsoft Kinect and windows vox commando. Does anyone have any input? Also can you tell me if you have or maybe working on a strip down version of voxwav for windows? Something that will relay voice command back to a central vox commando controller.

Here is the item I am curious about

http://www.ebay.com/itm/MeegoPad-T01-Mini-PC-For-Window-8-1-Computer-HDMI-Bluetooth-TV-USB-Stick-2G-32GB-/371208458589?pt=LH_DefaultDomain_0&hash=item566dbf915d

Thank You,

RJ

Pages: [1]