Page 24 of 36 FirstFirst ... 141516171819202122232425262728293031323334 ... LastLast
Results 231 to 240 of 353

Thread: Voice activated navigation for routis!

  1. #231
    It's not really that small...No, seriously. judoGTI's Avatar
    Join Date
    Feb 2004
    Location
    Florida
    Posts
    1,049
    Quote Originally Posted by 0l33l
    Went otu today and got myself a Logitech mic with a 1/8" jack with noise canceling for $20. I must say that this thing is amazing! It doesn't confuse 'a' when I say 'eight' I definatly recommend it!
    Do you have the model number by chance? I found my creative mic SUCKS! haha.
    '02 GTI
    [Routis '04] [Opus 90W] [160GB Maxtor HD]
    [Lilliput 7" TS] [VIA M10000] [XMPCR]
    [512MB RAM] [Custom housing]
    [Deluo GPS Mouse] [E-MU 0404 Soundcard]
    Progress Meter: [==============|] 99.9%

  2. #232
    Newbie NTurkey's Avatar
    Join Date
    Sep 2004
    Location
    Sammamish, WA
    Posts
    31
    Quote Originally Posted by 0l33l
    NTurkey: do you know how I could implement something like this
    Code:
      <RULE NAME="runApp" ID="RID_RunApp" TOPLEVEL="ACTIVE">
        <P>open</P>
        <L PROPNAME="runAppvalue">
          <P PROPNAME="task manager" VALSTR="taskmgr.exe">task manager</P>
          <P PROPNAME="i Guidance" VALSTR="iGuidance">navigation</P>
          <P PROPNAME="Media Car" VALSTR="C:\Program Files\MediaCar\MEDIACAR.exe">media car</P>
        </L>
        <O>...</O>
      </RULE>
    in delphi? Like the VALSTR parts.
    I'm not sure how to use it in Delphi, but the XML that djScript is using is the direction I'd encourage you to go. In your XML quoted above, you don't want to have the inner PROPNAME's. You want to basically have a generic property name that you can look up and see what it's value is, so you can launch that program.

    For example:

    Code:
    <RULE NAME="runApp" ID="RID_RunApp" TOPLEVEL="ACTIVE">
        <P>open</P>
        <L PROPNAME="appToRun">
          <P VALSTR="taskmgr.exe">task manager</P>
          <P VALSTR="notepad.exe">notepade</P>
          <P VALSTR="C:\Program Files\MediaCar\MEDIACAR.exe">media car</P>
        </L>
        <O>...</O>
      </RULE>
    Then, when you get a recognition event from SAPI, you can look at the rule id and/or name, and first see that it's the runApp rule (probably in your case statement). Then, you'll call a function in your code that is specific to running an application, passing the result into it. Inside there, you'll know that there will be a semantic property named "appToRun" and it'll have values like "taskmgr.exe", "notepade.exe", or "c:\program files\MediaCar\MEDIACAR.exe". You'll extract that string value from the property, and simply execute it.

    Quote Originally Posted by 0l33l
    And what is the advantage of having a properly configured XML file??
    You'll be able to view it in IE and other XML viewers without having them get upset. Future versions of SAPI may do better XML validation and require that the XML be well formed, too.
    2004 BMW 330Ci

    Audio: Alpine PXA-H701, XTANT 1.1i, PPI 4800, MB Quart QSD 216, JL W6v2
    Computer: Shuttle XPC P4 3GHz HT, 1G, 160GB HD, WinTV
    Software: StreetDeck ... soon with wicked cool speech integration ...

    Install (A/C/S): 100/100/90 %

  3. #233
    Newbie NTurkey's Avatar
    Join Date
    Sep 2004
    Location
    Sammamish, WA
    Posts
    31
    Quote Originally Posted by 0l33l
    I need serious help with the XML file and how to put it into delphi correctly
    Hopefully my last post will help with the XML file a bit.

    Quote Originally Posted by 0l33l
    Confused if i sohuld use 809 or 409 as my LANGID.
    Use 409.
    2004 BMW 330Ci

    Audio: Alpine PXA-H701, XTANT 1.1i, PPI 4800, MB Quart QSD 216, JL W6v2
    Computer: Shuttle XPC P4 3GHz HT, 1G, 160GB HD, WinTV
    Software: StreetDeck ... soon with wicked cool speech integration ...

    Install (A/C/S): 100/100/90 %

  4. #234
    My Village Called 0l33l's Avatar
    Join Date
    Jul 2004
    Location
    Berkeley, CA
    Posts
    10,520
    Quote Originally Posted by judoGTI
    Do you have the model number by chance? I found my creative mic SUCKS! haha.
    I got this one.
    Quote Originally Posted by NTurkey
    Hopefully my last post will help with the XML file a bit.

    Use 409.
    Thanks! I'll try that when I get home.

  5. #235
    Clover Grayscale's Avatar
    Join Date
    May 2004
    Location
    Arkansas
    Posts
    1,549
    i'm getting the same thing except usb version because i don't want the chance of picking up noise from the trunk to the front of the car/too lazy to run more wire.
    CarPC install is starting to come along again...

  6. #236
    My Village Called 0l33l's Avatar
    Join Date
    Jul 2004
    Location
    Berkeley, CA
    Posts
    10,520
    Quote Originally Posted by Grayscale
    i'm getting the same thing except usb version because i don't want the chance of picking up noise from the trunk to the front of the car/too lazy to run more wire.
    My carputer is going to be in the dash, so no long wire I take that you have a USB hub somewere upfront were you're just going to plug the mic in... right

    And yeh, I wanna split this thread up. Its like we have 2 threads: RoutisVoice and noice-canceling mic

  7. #237
    Raw Wave tbird2340's Avatar
    Join Date
    Oct 2003
    Location
    Poland, OH
    Posts
    1,971
    I just ordered a Jabra BT250 and a Bluetooth USB adapter... I can't wati!! GIDDY UP!!



    Current Vehicle: 2007 Dodge Nitro

    Second Vehicle: Sold it :( 2005 Dodge Ram 1500 Quad Cab

    First Vehicle: 2003 Ford Ranger

  8. #238
    Clover Grayscale's Avatar
    Join Date
    May 2004
    Location
    Arkansas
    Posts
    1,549
    rofl it sure is. yes i've got a usb hub up front. i had the comp up front but was having problems with noise and running wires, etc, plus i had like no space (small glovebox)...so yeah. I'll let ya'll know how the NOISE CANCELING MIC goes...

    off to the funeral home, my great grandfather died.
    CarPC install is starting to come along again...

  9. #239
    My Village Called 0l33l's Avatar
    Join Date
    Jul 2004
    Location
    Berkeley, CA
    Posts
    10,520
    Quote Originally Posted by Grayscale
    rofl it sure is. yes i've got a usb hub up front. i had the comp up front but was having problems with noise and running wires, etc, plus i had like no space (small glovebox)...so yeah. I'll let ya'll know how the NOISE CANCELING MIC goes...

    off to the funeral home, my great grandfather died.
    Sorry to hear about your loss

    There's not going to be any development of RoutisVoice today due to homework. I also need donations *please* (link in my sig) to fix my car I backed into my friend's Solara today, his bumper needs new paint, and I need to get my rear quarter panel fixed.

    And yes, I need to figure out how to get the proper XML to work with Delphi.

  10. #240
    Clover Grayscale's Avatar
    Join Date
    May 2004
    Location
    Arkansas
    Posts
    1,549
    i'm ok. you didn't happen to be looking at your car computer whilst backing up did you? *tsk tsk* jking. As soon as I get this fancy voice regonition stuff all tested out and running i'll be glad to donate! but i'd at least like to get to try the software first

    off to the familys' house now...
    CarPC install is starting to come along again...

Similar Threads

  1. Voice activated Light switch
    By surfer6262 in forum Off Topic
    Replies: 3
    Last Post: 10-03-2009, 07:48 AM
  2. Replies: 21
    Last Post: 03-07-2006, 11:43 PM
  3. Voice Activated software
    By heezer7 in forum Software & Software Development
    Replies: 3
    Last Post: 07-09-2004, 02:00 AM
  4. Voice Activated App - Need Team
    By kovan in forum Software & Software Development
    Replies: 0
    Last Post: 01-28-2004, 11:44 AM
  5. BMW pre-installed system - TFT ?
    By tsingsu in forum LCD/Display
    Replies: 11
    Last Post: 08-05-2002, 03:16 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •