How can I use curl to invoke HPE Haven's Speech Recognition API? I only get a json response containing something called a jobID. Where's the speech recognition result?
HPE Haven: How to Invoke Speech Recognition API Using Curl?
138 Views Asked by BSalita At
1
There are 1 best solutions below
Related Questions in WINDOWS
- how to play a sounds in c# forms?
- Echo behaviour of Microsoft Windows Telnet Client
- Getting error while running spark-shell on my system; pyspark is running fine
- DirectX 9 With No SDK Installed - How To Translate a D3DMATRIX?
- Gradle 8.7 cannot find installed JDK 22 in IntelliJ
- 'IOException: The cloud file provider is not running', when trying to delete 'cloud' folder
- Cannot load modules/mod_dav_svn.so into server
- Issue with launching application after updating ElectronJs to version 28.0.0 on Windows and Linux
- 32-bit applications do not display some files in Windows 10
- 'bun' is not recognized as an internal or external command
- mkssecreenshotmgr taking a screenshot
- Next js installation in windows 7 os
- Can't resize a partition using Mini Tool?
- Is there any way to set a printer as default according with Active Directory Policy Security Group and PC hostname?
- Electron Printing not working on Windows (Works on Mac)
Related Questions in CURL
- How to "Enable mobile data" on a Huawei E3372 4G USB dongle using a bash script in Windows
- Issue with sending POST request using Python requests library
- Is there a way to upload a file in digital ocean object storage using php curl
- Curl URL syntax for uploading files
- How to set Postman Settings to mimic the effect the -k option of curl
- Postman Webservice PHP Curl Code POST request giving forbidden error when run in local
- Facebook cURL for custom conversion tracking API error 100
- Can not submit VAT Return to https://test-api.service.hmrc.gov.uk/organisations/vat/{vrn}/returns
- curl does not work in EC2 instance due to some limitation?
- How to solve error: RPC failed; curl 18 transfer closed with outstanding read data remaining fatal: early EOF
- CURL got Could not resolve host: my subdomain
- How to list all folders with more then 10 artifacts in artifactory repo using CURL?
- Add existing product to order with shopware 6 api
- Trying to use LogMeIn API to access list of users in a node in PHP
- Istio Egress Gateway Configuration
Related Questions in SPEECH-RECOGNITION
- How to Avoid Speech Recognition from Recognizing Speaker Playback in Unity
- recognize_google fails with WinError 10060
- React native voice isn't detecting my voice
- Comparing analog signal from Electret mic with samples
- Unable to convert Speech to Text using Azure Speech-to-Text service
- Python Script Not Generating Sync Map Despite Successful Command Line Execution
- Automatic speech recognition from scratch
- google speech transcribe-streaming-audio with single_utterance and time limit
- Azure AI Speech Service - No punctuation on Recognized return
- How to get the microphone to record sound with Google Speech recognition on Raspberry Pi 3?
- How to fix the below mention error in python
- How to increase the time for which the Microsoft Speech Service SDK listens in a single go?
- Make real time prediction with Keras
- AttributeError: module 'speech_recognition' has no attribute 'Microphone'
- Is there any way to do this without writing the file to memory first?
Related Questions in HP-HAVEN
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 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?
HPE Haven's Speech Recognition API can be called by using two
curlcommands. The firstcurlposts the audio/video file and returns a json object containing ajobID. A secondcurlcommand can retrieve the speech recognition result by referencing thejobID. Extracting thejobIDand passing it to the second command can be tricky. Below is a Windows batch file that performs the whole process ultimately displaying the recognized text. This procedure uses thejqprogram available at https://stedolan.github.io/jq/ to manipulate the json responses.