Is there a reference of Loquendo tags (\item=...)?

In the demo site of Loquendo I noticed special tags such as "\item=cough_01" that produce sounds. They work in Captivate, is there a full reference of these sounds available?
Also I noticed that Umlauts (ä, ü etc.) are spoken correctly by the Loquendo demo, but not in Captivate even though its the same narrator. It seems as if Captivate converts these (ae, ue etc. ) before handing them on to the TTS engine?

Today we have had some success. We have managed to create new entries in our *.dbl file and they have been recognised within Captivate. Now the only thing we need a hand with is a phonics generator to create the phonetics for the voice to pronounce.
Below are the steps to get this working...
Download the software (Freeware)
Download SQLite 3.7.0: (You may not need this step, but it worked for me, so I just included it)
http://www.sqlite.org/download.html
Download SQLite Database Browser 2.0b1:
http://sourceforge.net/projects/sqlitebrowser/
Install both software packages.
(SQLite Database Browser only needs to be unzipped, and can self execute from anywhere.)
Backup database files
Make a copy of all the files in the following folder:
C:\Program Files (x86)\Adobe\Adobe Captivate 5\Loquendo\LTTS7\data\languages\English
(This is incase something goes drastically wrong- better to be safe than sorry)
Export Database to Edit
Open SQLite Database Browser
Open the current voice file pronunciation database (*.dbl):
C:\Program Files (x86)\Adobe\Adobe Captivate 5\Loquendo\LTTS7\data\languages\English\EnglishGb.dbl
When you look in the Browse Data tab, you should see that this database holds all the extra pronunciations for the voice to speak.
Export the database to a CSV file:
File > Export > Table as CSV file
Press Export
Save the file somewhere (Desktop worked for me) - make sure you give it an extension *.csv as it won't do it automatically.
Edit the Database file
Double click the *.csv file to open it in Excel. You should see that all the data is available.
Scroll to the bottom of the file (Line 2836)
Add any words you would like at the bottom of this list.
The First column indicates the word that you wish to change the pronunciation: voyeur
The Second column indicates the pronunciation: v w Aa: j `O:
The Third column (we think) is the type of pronunciation - we have just kept it at "ACC" and have had no issues.: ACC
There are further columns which can be edited - 7th provides and alternate spelling of the word (kilobyte - kb) - but these are the basics which are needed.
Once you have added in new rows to represent the newq pronunciations, you will need to sort the list alphabetically.
If you haven't done this before, scroll to the top of the file, highlight the top row, go to Data > Filter, and add an Auto filter. You will notice that drop down buttons appear on each column title.
Simply select Sort A-Z by the graphemica column.
Your new words should be now in order. Save the file (Ensure you save it as a CSV file, and not an excel file)
Create the new database
Here comes the destructive bit! (Make sure you have backed up these files!) Within the SQLite Database Browser delete the index file.
Edit > Delete Index (delete idx_lessico)
Next, delete the table.
Edit > Delete Table (delete lessico)
You should now have an empty database file with no data or no index file. It is now time to put the data back in and re-index the file.
Import the data back in from the CSV file you created.
File > Import > Table from CSV file
Before you can continue you will have to save the file. Click OK.
You will now be shown a sample of the data. Here you will need to:
give the table the name of "lessico"
Select the checkbox "Extract field names from the first line"
Click Create
The table will slowly be generated, and you will be told the Import is complete.
Now you will need to create a new index for the table.
Edit > Create Index
Give the index the name of "idx_lessico", and click Create.
Save the database file
File > Save
Now you are done! Test this to see if it works with your Captivate file...
Now... I still need help trying to find a phoneics generator. IF ANYONE CAN FIND ONE, PLEASE LET ME KNOW.

Similar Messages

  • BAPI_SALESORDER_CREATEFROMDAT2 with reference to a contract item

    Hi all,
    i'm having troubles creating an order with reference to a contract item on item level.
    My order is created and also a reference to the contract item is created on item level, but no conditiions are copied from the contract item (no conditions at all are filled)!
    Anyone with an idea?
    Many thanks!
    Siegfried
    Here my code:
    Order Header data
      ls_order_header_in-doc_type        = 'TA'.
      ls_order_header_in-sales_org       = i_basket_head-vkorg.
      ls_order_header_in-distr_chan      = i_basket_head-vtweg.
      ls_order_header_in-division          = i_basket_head-spart.
      ls_order_header_in-incoterms1      = i_basket_head-inco1.
      ls_order_header_in-incoterms2      = i_basket_head-inco2.
      ls_order_header_in-po_method       = 'INT'.
      ls_order_header_in-req_date_h      = i_basket_head-ketdat.
      ls_order_header_in-purch_no_c      = i_basket_head-bstnk.
      ls_order_header_in-purch_date      = sy-datum.  
      ls_order_header_in-refdoctype      = 'KM'.
    Order partners
      ls_order_partners-partn_role    = 'WE'.
      ls_order_partners-partn_numb    = i_basket_head-kunnr_we.
      APPEND ls_order_partners TO lt_order_partners.
      ls_order_partners-partn_role    = 'AG'.
      ls_order_partners-partn_numb    = i_basket_head-kunnr_ag.
      APPEND ls_order_partners TO lt_order_partners.
      CLEAR: lv_counter_posnr, lv_counter_sched.
      LOOP AT it_basket INTO ls_basket.
        lv_counter_posnr = lv_counter_posnr + 10.
        lv_counter_sched = lv_counter_sched + 1.
    Order items
        ls_order_items_in-itm_number    = lv_counter_posnr.
        ls_order_items_in-po_itm_no     = lv_counter_posnr.
        ls_order_items_in-material      = ls_basket-matnr.
        ls_order_items_in-ref_doc_ca = 'G'.
        ls_order_items_in-ref_doc       = ls_basket-vbeln.
        ls_order_items_in-ref_doc_it    = ls_basket-posnr.
       ls_order_items_in-target_qty    = ls_basket-quant.
        ls_order_items_in-target_qu    = 'TO'.
        ls_order_items_in-purch_date    = sy-datum.
        APPEND ls_order_items_in TO lt_order_items_in.
    Scheduling lines
        ls_order_schedules_in-itm_number = lv_counter_posnr.
        ls_order_schedules_in-sched_line = lv_counter_sched.
        ls_order_schedules_in-req_date   = i_basket_head-ketdat.
        ls_order_schedules_in-req_qty    = ls_basket-quant.
        APPEND ls_order_schedules_in TO lt_order_schedules_in.
      ENDLOOP.
      CLEAR: lv_salesdocument.
    Create R/3 sales order
      CALL FUNCTION 'BAPI_SALESORDER_CREATEFROMDAT2'
        EXPORTING
          order_header_in    = ls_order_header_in
        IMPORTING
          salesdocument     = lv_salesdocument
        TABLES
          return                  = lt_return
          order_items_in     = lt_order_items_in
          order_partners     = lt_order_partners
          order_schedules_in = lt_order_schedules_in.

    Hi
    how many contracts you have for this material / material group .
    if you have only one contract system automatically assigned to sc.
    assume that you dont assign any source of supply and cart came to cockpit
    take your item into cockpit and click propose source of supply . now all avaialble contract must be available for sourcing or
    you can manually enter the contract and item number in the cockpit and create a PO
    if you dont get a respective contract  for respective material - there is something wrong on the contract. what type of contract . what is the status of the contract
    muthuraman

  • How to create a .msg with a reference to a mail item with in the same mailbox.

    Hi,
    I want to achieve the following: I want to create a .msg message in a mailbox with some custom text and a reference to a mail item within the same mailbox but resides in a different folder.
    Is there a way to create a reference to a individual mail item with the same mailbox?
    In other words, I want to create a sort of symbolic link to a specific mail item.
    Can this be done with C# and EWS?
    Thanks, Darrell

    You can create hyperlinks using the Outlook: URL format eg Outlook :< ENTRYID> in the body of a message that refers to another Item in a Mailbox see
    http://blogs.msdn.com/b/pallavs/archive/2012/03/14/outlook-hyperlinks-for-public-folder-items-in-outlook-2010-does-not-work.aspx
    Cheers
    Glen

  • MIRO-Account type/account for invoice reference does not match item-F5350

    Hi gurus
    please help
    When I tried to cancel an MIRO invoice, it is giving me the error
    Account type/account for invoice reference does not match item". "F5350 "
    Please advise.
    thanks
    MSJ

    Hello,
    This seems to be a configuration issue or you might be entering the wrong details.
    This is a standard transaction. IF you feel there is nothing wrong, then search for OSS notes on http://service.sap.com to see if there is a solution to this problem.
    cheers,
    sushil joshi

  • Tagging item according to keywords

    hi
    is there any algorithm for tagging an item with the keywords and searching them according to these keywords.
    for example, in a library, a Java programming book can be tagged with the keyword "java, programming, object oriented".
    so, when a user search with any of these keyword, that book will be returned in the result.
    regards
    terence

    generally this is called an index. Just like the index of a book where you look up a word and find a list of which pages that word lives on.
    In a database you could keep a table where each row is a pair, a tag and a data item. If you querry this table on a single tag your drop is all the data items that matched the tag.
    Presumably in memory you could do the same thing. Your index would be something like a Map where the keys are strings and the data element associated with a single key is a list of objects that match that tag.
    I wouldn't exactly call this an algorithm it is more a data structure and how you do it depends more on where you do it. You were not clear on whether you are trying to tag items in a database or what.

  • BAPI-To create production orders with reference to sales order & item

    Hi,
    Can anyone tell me which is the best method to create open production orders?
    Is there any BAPI available for creating production orders with reference to sales order & item.
    I tried this BAPI "BAPI_PRODORD_CREATE".
    I am getting pop up to enter serial number while executing the custom program.
    Which table contains the serial number(effectivity parameters)?.

    I have custom screen fields on notification service!
    i think a bdc is better.

  • I have created a quotation in CRM system. I want that to be downloaded into ECC, so that, I can create a sales order there with reference to that quotation. So, what are the parameters that I need to set in CRM system so that my quotation gets replicated?

    Dear Experts,
    I have created a quotation in CRM system. I want that to be downloaded into ECC, so that, I can create a sales order there with reference to that quotation. What are the parameters that I need to set in CRM system so that my quotation gets replicated without any error?
    Please help me in this regard. An early and in detail step by step guidance is highly appreciated.
    Thanks,
    SMTP

    It may be best to recreate the folder and the smart playlists from scratch.
    tt2

  • I brought a new computer is there any way to put the items that i have on my iphone and ipad on my itunes with out erasing and reformating my divices.

    I brought a new computer is there any way to put the items that i have on my iphone and ipad in my itunes. I know the music and apps i paid for but what about the songs and photos. that are not paid for. and having it sync with out it telling me that it has to erase all my things.

    See Recover your iTunes library from your iPod or iOS device.
    tt2

  • Is there a reference test code for Android to see if GPU acceleration is working on a device or not?

    The subject says it all:
    Is there a reference test code (available for downloading) for Android to see if GPU acceleration is working on a device or not once the AIR RC1 with GPU is installed ?
    Perhaps something 'like' away3d info panel which shows if GPU is active or not...
    I will try to build one in the meantime.  Just didnt want to reinvent the wheel here.
    TIA for any pointers.  //GH

    I agree with the above posts, it would be great to have a place with a list of already known problems, and a way for those of us with the time and interest to participate in making the FiOS experience better. Several thoughts:
    1) Send a PM to a moderator here asking to participate in a test, or asking for improvements to the Forum. I have done that, some of the improvements I suggested have occurred (thanks Kathleen and CharlotteS), hoping more will; it can't hurt. And I understand my request to be a beta tester has been forward to development. At least one poster put that kind of request in a forum post and I think his was also forwarded.
    2) Go to the following Verizon Products Trial site and sign up to test new things: https://www36.verizon.com/MM/Protected/TestTrack/SignIn.aspx. No guarantees, not much on the site right now, but if you sign up you might get to participate in the future.
    3) Consider using the Verizon Direct forum at http://www.dslreports.com to report problems rather than the FSC (or after a frustrating experience with the FSC). You have to be a registered user to post in that forum, but I have had a good experience using it. Verizon employees monitor the forum and respond, and only they and you can see the details of your and their posts (one of the things I have suggested to the moderators here is something like Verizon Direct here). 
    I am retired, I have time to put into an effort to improve FiOS TV. Plus I have quite a bit of experience in testing new computer hardware and software before announcment and/or delivery to customers (IBM), so I think I could help (and I really don't think I could hurt it...). Plus in two more days I will have had FiOS TV for three full years, I have gone through all of the good (and a little bad.....) along the way.
    FWIW...
    Justin
    Verizon FiOS TV, Internet, and phone
    IMG 1.5.0
    Keller, TX

  • There were problems downloading some purchased items.

    All episodes of Under cover boss season 2 downloaded apart from unifirst.
    After contacting Apple support I'e tried downloading on a different network and a different computer (Imac, then macbook and then ipad).
    I keep getting the following error.....
    There were problems downloading some purchased items.
    For more information on the items that could not be downloaded, click below.
    There was a problem downloading “UniFirst / Undercover Boss, Season 2 / Undercover Boss”. An unknown error occurred (-50).
    Please check that the connection to the network is active and try again.
    There was a problem downloading “UniFirst / Undercover Boss, Season 2 / Undercover Boss”. An unknown error occurred (-50).
    Please check that the connection to the network is active and try again.
    Your help would be appreciated

    Perhaps try the "Error -50," "-5000," "8003," "8008," or "-42023" section in the Specific Conditions and Alert Messages: (Mac OS X / Windows) section of the following document:
    iTunes: Advanced iTunes Store troubleshooting

  • Is there a way go get the item number of the current item?

    In an item with multiple instances: Is there a way to get the item number of the current item? If for instance, I am on the 3rd item, is there some kind of “GET CURRENT RECORD NUMBER” built-in that would return a ‘3' to the program?
    Thanks
    Edited by: WayneFMcKinstry on Apr 9, 2010 10:50 AM

    If i am getting you correctly that in tabular item you want to know the current record or current item you can try this...
    For current record
    :SYSTEM.CURSOR_RECORD;
    or
    :SYSTEM.CURRENT_RECORD;for current item
    :SYSTEM.CURSOR_ITEM;-Ammad

  • Tagged items web part issue SP 2013

    Hi,
    we have configured Content tag cloud and we have two different issues.
    1. we have configured to show the tags that are tagged under the current url by all users, but when we click on the tag, it shows all the documents that are tagged with that specific tag (from different sites), is this a known behavior.
    2. For many of the tags, we don't see the documents in the Tagged items web part (some only shows in popular within 60 days tab but not in All tab)
    We have run the full crawl and social maintenance timer job to fix some other issues earlier. I also read somewhere that we need to activate the content type syndication hub, but we already have many tags working fine. what is the relation to the content
    type syndication hub.
    Any help would be really appreciated. Thanks.

    Hi Senthil,
    #1. Yes. If we click a tag in the Tag Cloud web part, it will redirect use to the tag profile page for this tag.
    And all the items tagged by the tag will be displayed in this tag profile page.
    #2. This issue may be due to the incremental crawl miss some tagged items or tags.
    I recommend to run a full crawl and then check the results.
    Per my knowledge, it has nothing to do with the content type syndication hub.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Is there a  reference for the flows tables/views?

    Hi,
    for my own htmldb-forum I want to find the last login time of somebody, so I could determine which will be new forum messages for this user.
    Where can I find these informations? Is there a reference for the Flows tables and views?
    Bye,
    Jens

    heheh for learning purpose I been thinking of developing an app like what you have there.
    Is yours done ?
    Can we get have a look ?
    thanks

  • Is there any limit on Number of items that can be created in SBO2005B

    Is there any limit on Number of items that can be created in SAP Business One 2005B.
    We are working for button manufacturer.
    Each button will have type,color, size, thickness.
    There are about 100 types, 40 colors, 30 sizes, 10 thickness, 500 models.
    It looks to be approximately above 30lacs item codes has to be created.
    Is there any performance issues or any other known issues towards the large item lists.

    Hi,
    There is no real limit on the number of items you can create (well, the item code is a 20 character key so theoretically the limit is the total number of possible combinations of letters and characters in that key).
    Performance can be an issue with a large inventory, as well as database size (particularly if you have a large inventory and a large number of warehouses). Some issues such as the speed of lookups can be avoided by changing system settings but other issues such as the speed of inventory reports are inevitable going to take longer for larger inventories.
    Have you done any research on looking for SBO addons for the clothing industry? It might be worth searching the CPSN for such addons (ie ones that can deal with sizes, colours etc) as these may help greatly in keeping the number of stock items down to a minimum.
    Kind Regards,
    Owen

  • Is there a means to get an item count within folders in Yosemite?

    Is there a means to get an item count within folders in Yosemite?

    Yes.
    Turn on 'Show Status bar'

Maybe you are looking for

  • How to find batches for "stock for vendor".

    Hi all, My requirement is as follows. when we execute MMBE for any material. It will display the stock of material in different Storage locations of the plant with respective matches. for example: MATERIAL 12345 PLANT 1234                            

  • What does 'backup' mean in the 'about this mac,' 'storage' window?  Where would I find those files?

    I need to delete some files to create space and noticed that 'backup' files are taking up a lot of space.  Where are these backup files located?

  • I want to delete a pin in Maps

    I've created some pins in Maps that I want to remove, but this is no longer possible. I've Googled it several times, but none of the answers apply. I guess this has been changed yet again in iOS8. I'm gathering that Apple doesn't want it's users to j

  • JSF - Duplicate items in menuBar

    This is the original post: Re: JSF - Duplicate items in menuBar I was wondering if anyone ever figured out why the menu item beans being loaded onto the menuBar twice? I have the same problem. And I also have another problem where the submenu items d

  • [locked] Protect from copy

    Hi all, I have 2 question that hope can be answer by others here. 1st: if I was developing an interactive presentation or elearning application using Flash, how do i protect it from being copy. I heard that we have to set the CRC seting ect' but I'm