I have a requirement to write an application which would take an audio file and identity precisely at which points in the file specific words are being spoken. These are not English words, but rather Aramaic words, so would have to be added as additional vocabulary. Does MS speech recognition support this? Thanks
Does MS speech support custom vocabulary
50 Views Asked by user1052610 At
1
There are 1 best solutions below
Related Questions in MICROSOFT-SPEECH-API
- How to increase the time for which the Microsoft Speech Service SDK listens in a single go?
- Speech recognition API python
- How to implement word-by-word display with Microsoft Text to Speech?
- Is there an API to invoke Windows Dictation Commands programmatically?
- Why Microsoft Cognitive Speech Api is sending "Bad Request" even with all the requirements fulfilled
- How to configure the webhook properly so that i receive notifications when the transcription is completed
- How to convert MultipartFile properly to match for Microsoft AudioConfig?
- Does MS speech support custom vocabulary
- How Can I use the output of recognized speech to implement into PyWebIo (WebApp framework ) (using put(text))
- Cannot assign value of type '(Type1?, Type2?)' to type 'TypeDef' (aka '(Type1, Type2) -> ()')
- How to hit Microsoft language detection API through POSTMAN
- Microsoft Speech To text (SPXERR_AUDIO_SYS_LIBRARY_NOT_FOUND)
- Does Azure's Speech to Text service accept Webm audio and does it offer an output with timestamps?
- Using data from server instead of file to transcribe for Microsoft azure speech SDK
- E2247 'TSpVoice::Voice' is not accessible
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Yes. There are several options, depending on the specificities of your specific words.
One is simply using
phrase list: https://learn.microsoft.com/en-US/azure/cognitive-services/speech-service/improve-accuracy-phrase-list?tabs=terminal&pivots=programming-language-csharpOne is called
Custom Speech: https://learn.microsoft.com/en-US/azure/cognitive-services/speech-service/custom-speech-overviewThe 1st one is easier to test and implement, as you will not need audio data for the training.