Audio Voice to Text Amazon LexHow can I get jQuery to perform a synchronous, rather than asynchronous, Ajax request?Get the browser viewport dimensions with JavaScriptGet selected text from a drop-down list (select box) using jQueryStrip all non-numeric characters from string in JavaScriptCreate a file in memory for user to download, not through serverHow to decide when to use Node.js?Using node.js as a simple web serverUpgrade Node.js to the latest version on Mac OSUsing Amazon Lex with twilioIntegrate Amazon Lex with Voice assistant
Large drywall patch supports
Integer addition + constant, is it a group?
How does it work when somebody invests in my business?
Is it okay for two “sein” to be next to each other?
Closest Prime Number
What does this 7 mean above the f flat
Purchasing a ticket for someone else in another country?
What can we do to stop prior company from asking us questions?
Customer Requests (Sometimes) Drive Me Bonkers!
What is the best translation for "slot" in the context of multiplayer video games?
Is HostGator storing my password in plaintext?
Is exact Kanji stroke length important?
Where does the Z80 processor start executing from?
Is expanding the research of a group into machine learning as a PhD student risky?
Is there a good way to store credentials outside of a password manager?
Is a stroke of luck acceptable after a series of unfavorable events?
Anatomically Correct Strange Women In Ponds Distributing Swords
Valid Badminton Score?
How did Doctor Strange see the winning outcome in Avengers: Infinity War?
How can I kill an app using Terminal?
I'm in charge of equipment buying but no one's ever happy with what I choose. How to fix this?
Failed to fetch jessie backports repository
How do I find the solutions of the following equation?
Two monoidal structures and copowering
Audio Voice to Text Amazon Lex
How can I get jQuery to perform a synchronous, rather than asynchronous, Ajax request?Get the browser viewport dimensions with JavaScriptGet selected text from a drop-down list (select box) using jQueryStrip all non-numeric characters from string in JavaScriptCreate a file in memory for user to download, not through serverHow to decide when to use Node.js?Using node.js as a simple web serverUpgrade Node.js to the latest version on Mac OSUsing Amazon Lex with twilioIntegrate Amazon Lex with Voice assistant
I want to convert audio file to text using Amazon Lex.Is there any javascript sdk provided by Amazon to do so?.I am writing to a nodejs application to achieve this
javascript node.js aws-lambda amazon-lex amazon-sdk
add a comment |
I want to convert audio file to text using Amazon Lex.Is there any javascript sdk provided by Amazon to do so?.I am writing to a nodejs application to achieve this
javascript node.js aws-lambda amazon-lex amazon-sdk
add a comment |
I want to convert audio file to text using Amazon Lex.Is there any javascript sdk provided by Amazon to do so?.I am writing to a nodejs application to achieve this
javascript node.js aws-lambda amazon-lex amazon-sdk
I want to convert audio file to text using Amazon Lex.Is there any javascript sdk provided by Amazon to do so?.I am writing to a nodejs application to achieve this
javascript node.js aws-lambda amazon-lex amazon-sdk
javascript node.js aws-lambda amazon-lex amazon-sdk
asked Mar 21 at 15:49
DharamDharam
548
548
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Yes, you can use the Amazon API "Lex Runtime Service" with the Javascript SDK.
With that, you can send audio files using the PostContent Method.
Here are the audio formats that are allowed:
PostContent Documentation
contentType
You pass this value as the Content-Type HTTP header.
Indicates the audio format or text. The header value must start with one of the following prefixes:
PCM format, audio data must be in little-endian byte order.
audio/l16; rate=16000; channels=1
audio/x-l16; sample-rate=16000; channel-count=1
audio/lpcm; sample-rate=8000; sample-size-bits=16; channel-count=1; is-big-endian=false
Opus format
audio/x-cbr-opus-with-preamble; preamble-size=0; bit-rate=256000; frame-size-milliseconds=4
Text format
text/plain; charset=utf-8
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55284341%2faudio-voice-to-text-amazon-lex%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Yes, you can use the Amazon API "Lex Runtime Service" with the Javascript SDK.
With that, you can send audio files using the PostContent Method.
Here are the audio formats that are allowed:
PostContent Documentation
contentType
You pass this value as the Content-Type HTTP header.
Indicates the audio format or text. The header value must start with one of the following prefixes:
PCM format, audio data must be in little-endian byte order.
audio/l16; rate=16000; channels=1
audio/x-l16; sample-rate=16000; channel-count=1
audio/lpcm; sample-rate=8000; sample-size-bits=16; channel-count=1; is-big-endian=false
Opus format
audio/x-cbr-opus-with-preamble; preamble-size=0; bit-rate=256000; frame-size-milliseconds=4
Text format
text/plain; charset=utf-8
add a comment |
Yes, you can use the Amazon API "Lex Runtime Service" with the Javascript SDK.
With that, you can send audio files using the PostContent Method.
Here are the audio formats that are allowed:
PostContent Documentation
contentType
You pass this value as the Content-Type HTTP header.
Indicates the audio format or text. The header value must start with one of the following prefixes:
PCM format, audio data must be in little-endian byte order.
audio/l16; rate=16000; channels=1
audio/x-l16; sample-rate=16000; channel-count=1
audio/lpcm; sample-rate=8000; sample-size-bits=16; channel-count=1; is-big-endian=false
Opus format
audio/x-cbr-opus-with-preamble; preamble-size=0; bit-rate=256000; frame-size-milliseconds=4
Text format
text/plain; charset=utf-8
add a comment |
Yes, you can use the Amazon API "Lex Runtime Service" with the Javascript SDK.
With that, you can send audio files using the PostContent Method.
Here are the audio formats that are allowed:
PostContent Documentation
contentType
You pass this value as the Content-Type HTTP header.
Indicates the audio format or text. The header value must start with one of the following prefixes:
PCM format, audio data must be in little-endian byte order.
audio/l16; rate=16000; channels=1
audio/x-l16; sample-rate=16000; channel-count=1
audio/lpcm; sample-rate=8000; sample-size-bits=16; channel-count=1; is-big-endian=false
Opus format
audio/x-cbr-opus-with-preamble; preamble-size=0; bit-rate=256000; frame-size-milliseconds=4
Text format
text/plain; charset=utf-8
Yes, you can use the Amazon API "Lex Runtime Service" with the Javascript SDK.
With that, you can send audio files using the PostContent Method.
Here are the audio formats that are allowed:
PostContent Documentation
contentType
You pass this value as the Content-Type HTTP header.
Indicates the audio format or text. The header value must start with one of the following prefixes:
PCM format, audio data must be in little-endian byte order.
audio/l16; rate=16000; channels=1
audio/x-l16; sample-rate=16000; channel-count=1
audio/lpcm; sample-rate=8000; sample-size-bits=16; channel-count=1; is-big-endian=false
Opus format
audio/x-cbr-opus-with-preamble; preamble-size=0; bit-rate=256000; frame-size-milliseconds=4
Text format
text/plain; charset=utf-8
answered Mar 21 at 16:33
Jay A. LittleJay A. Little
1,5872622
1,5872622
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55284341%2faudio-voice-to-text-amazon-lex%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown