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.


Messages - bp_pbs

Pages: [1] 2 3 ... 7
1
General Discussion / Re:
« on: November 22, 2014, 04:50:09 PM »
Thanks nime5ster. Weird thing I was triggering the help command on accident and just kept closing it because I was trying to execute another command. Didn't even pay attention to what the help command displayed. Smh lol

2
General Discussion / Re:
« on: November 22, 2014, 02:38:30 PM »
Cool thanks James

3
General Discussion / List of commands
« on: November 22, 2014, 02:24:31 PM »
Hey team,

I was wondering how do you remember all the commands you have programmed? For me I have trouble remembering the my trigger words. I even sometimes forget that I made certain commands. Since commands keep growing and growing if there is a way to have vox display/generate all current commands like in notepad etc. So I can have the list pulled up on my tablet or phone? This would specially help with multiple users; as my wife doesn't know any the commands.
Does anyone have any suggestions?

4
Kodi (XBMC) Frodo / Gotham / Isengard / Jarvis / Re:
« on: November 21, 2014, 01:37:11 PM »
I have the command to first give a run down of how many movies, TV shows, and Albums.  (Latest Movies)Then it goes to the Recently Added Movies view and tells the last 5 that were loaded. (Latest Albums) Then it goes to Recently Added Albums and do the same.

5
VoxCommando Basics and Core Features / Re:
« on: November 19, 2014, 11:02:27 PM »
That's exactly what I was looking for. Thanks James

6
VoxCommando Basics and Core Features / Phone calls and Vox
« on: November 19, 2014, 07:18:16 PM »
Tried searching for this in the forum but didn't find it.
Is there a way to get Vox to go to VC.off when I receive a phone call?
Yatse app has an add on where when you answer a call it pauses your movie. I was wondering if there is a way that Vox can do something similar. The problem I'm running into is: when I'm talking on the phone vox is issuing commands. I even have on the prefix but some commands still go thru.

7
Kodi (XBMC) Frodo / Gotham / Isengard / Jarvis / Re: TTS & XBMC
« on: November 18, 2014, 10:30:18 PM »
James I figured it out. In XBMC it was my Audio Output Device under System. I set it to the correct one. Now is working. Thanks again.

8
Kodi (XBMC) Frodo / Gotham / Isengard / Jarvis / TTS & XBMC
« on: November 18, 2014, 07:08:35 PM »
Hello team,

I need help with the following. I have created an XBMC Status command to get the current status of my media collection.
It was working at first but now TTS will not speak most of the time. I keep getting errors on most of the tts.speak and other times its there's a long delay.

Can someone see where I am going wrong with this command?

9
Kodi (XBMC) Frodo / Gotham / Isengard / Jarvis / Re: Play Trigger
« on: July 08, 2014, 12:20:22 PM »
That's what it was. I changed the port to 9091. Changed it back to 9090 and BOOM!!!!!!!! its working again....LOL..

Thanks

10
Kodi (XBMC) Frodo / Gotham / Isengard / Jarvis / Play Trigger
« on: July 07, 2014, 10:39:12 PM »
XBMC actions are not being shown in Vox. For example when I play a movie the Play action use to show in history.

I have a command to turn VC.Off when playing a movie so that it will not try run commands.

Vox is being ran on the machine. and Xjson is Connected.

11
Other Plugins / Re: TTS - Talking Head
« on: June 18, 2014, 04:25:13 PM »
::wiggle YES!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ::banana

12
Kodi (XBMC) Frodo / Gotham / Isengard / Jarvis / Re: TalkingHeads
« on: June 11, 2014, 02:34:53 PM »
I changed XBMC video output to full-screen and off the True full-screen. Here is the code I have so far.

Code: [Select]
<?xml version="1.0" encoding="utf-8"?>
<!--C:\Users\Nick\Downloads\VcGrp_Daphne.xml-->
<VoiceCommands version="">
    <!--this is an exported VoxCommando group-->
    <commandGroup open="True" name="Daphne" enabled="True" prefix="" priority="0" requiredProcess="" description="">
        <command id="811" name="Show/Hide" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
            <if ifBlockDisabled="False" ifNot="False">
                <ifType>(A)Contains(B)</ifType>
                <ifParams>show,reveal,where, i need&amp;&amp;{1}</ifParams>
                <then>
                    <action>
                        <cmdType>Window.Focus</cmdType>
                        <params>
                            <param>xbmc</param>
                        </params>
                        <cmdRepeat>1</cmdRepeat>
                    </action>
                    <action>
                        <cmdType>Window.Maximize</cmdType>
                        <params />
                        <cmdRepeat>1</cmdRepeat>
                    </action>
                    <action>
                        <cmdType>TTS.ShowHead</cmdType>
                        <params>
                            <param>True</param>
                        </params>
                        <cmdRepeat>1</cmdRepeat>
                    </action>
                    <action>
                        <cmdType>Window.focus</cmdType>
                        <params>
                            <param>voxcommando</param>
                        </params>
                        <cmdRepeat>1</cmdRepeat>
                    </action>
                    <action>
                        <cmdType>TTS.Speak</cmdType>
                        <params>
                            <param>How can I help you Mr. Ivory?| Yes Mr. Ivory!|Here I am Mr. Ivory.</param>
                        </params>
                        <cmdRepeat>1</cmdRepeat>
                    </action>
                </then>
                <else />
            </if>
            <if ifBlockDisabled="False" ifNot="False">
                <ifType>(A)Contains(B)</ifType>
                <ifParams>conceal,hide, thats&amp;&amp;{1}</ifParams>
                <then>
                    <action>
                        <cmdType>TTS.Speak</cmdType>
                        <params>
                            <param>Okay, let me know if you need anything else.| Ok, I'll be over here if you need me.| Ok, let me know if I can help you.</param>
                        </params>
                        <cmdRepeat>1</cmdRepeat>
                    </action>
                    <action>
                        <cmdType>TTS.ShowHead</cmdType>
                        <params>
                            <param>False</param>
                        </params>
                        <cmdRepeat>1</cmdRepeat>
                    </action>
                    <action>
                        <cmdType>Window.Focus</cmdType>
                        <params>
                            <param>xbmc</param>
                        </params>
                        <cmdRepeat>1</cmdRepeat>
                    </action>
                    <action>
                        <cmdType>Window.Normalize</cmdType>
                        <params />
                        <cmdRepeat>1</cmdRepeat>
                    </action>
                </then>
                <else />
            </if>
            <payloadList>show,hide,reveal,conceal, where, thats,i need</payloadList>
            <phrase>yourself,are you,all,you,your help</phrase>
            <phrase optional="true">for now</phrase>
        </command>
    </commandGroup>
</VoiceCommands>

13
Kodi (XBMC) Frodo / Gotham / Isengard / Jarvis / Re: TalkingHeads
« on: June 11, 2014, 12:52:56 AM »
Still working on it. Making sure it shows up every time.

@James...Hey I'm trying everything to get it to work.... :biglaugh.....I think I saw it on one of these forums.

14
Kodi (XBMC) Frodo / Gotham / Isengard / Jarvis / TalkingHeads
« on: June 10, 2014, 07:34:57 PM »
Team, I'm killing my simple mind over here.  >:( . How do I get the TTS talkinghead to appear over XBMC in fullscreen.

example I say "Vox Where are you?"
TTS Head appears "Here I am"

I tried using Windows.Focus and Windows.BringtoFront both with not bring the box over XBMC

15
Bug Reports / Re: Unable to start search engine
« on: June 10, 2014, 05:18:53 PM »
Thanks Team, but I already re-installed. It as a pretty fresh install anyways and I have everything partitioned off. So I just had to re-install a few programs.

But on a brighter note, It's working again...lol...So I'm happy  ;D

Pages: [1] 2 3 ... 7