alexa-voice-service

How to add single word invocation name alexa?

南笙酒味 提交于 2021-01-27 20:12:11
问题 I want to add a single word invocation name for Alexa, in documentation its mentioned that a single word is allowed. One-word invocation names are not allowed, unless: The invocation name is unique to your brand/intellectual property with proof of ownership established through legitimate documentation, or (German skills only) The invocation name is a compound of two or more words. In this case, the word must form an actual word in the skill's language to ensure that Alexa can recognize it.

How to make Alexa countdown in seconds

不羁的心 提交于 2021-01-27 11:53:45
问题 I want to be able to have alexa (audibly) countdown 15 seconds in my skill. I know I can just <break time="15s" /> in SSML. But that isn't audible. I also know I can just do: 15<break time="1s" /> 14<break time="1s" /> or better yet (to account for the time it takes to say the number) 15<break time="0.85s" /> 14<break time="0.85s" /> But that's going to be a ton of repeated code if I do this many times over. So I'm probably going to write a function that takes in a number and a number of

How to make Alexa countdown in seconds

馋奶兔 提交于 2021-01-27 11:52:12
问题 I want to be able to have alexa (audibly) countdown 15 seconds in my skill. I know I can just <break time="15s" /> in SSML. But that isn't audible. I also know I can just do: 15<break time="1s" /> 14<break time="1s" /> or better yet (to account for the time it takes to say the number) 15<break time="0.85s" /> 14<break time="0.85s" /> But that's going to be a ton of repeated code if I do this many times over. So I'm probably going to write a function that takes in a number and a number of

How to make Alexa countdown in seconds

坚强是说给别人听的谎言 提交于 2021-01-27 11:51:02
问题 I want to be able to have alexa (audibly) countdown 15 seconds in my skill. I know I can just <break time="15s" /> in SSML. But that isn't audible. I also know I can just do: 15<break time="1s" /> 14<break time="1s" /> or better yet (to account for the time it takes to say the number) 15<break time="0.85s" /> 14<break time="0.85s" /> But that's going to be a ton of repeated code if I do this many times over. So I'm probably going to write a function that takes in a number and a number of

How can I get Alexa working on my iOS app?

断了今生、忘了曾经 提交于 2020-01-13 04:54:06
问题 I have been checking out the Alexa Skills kit the past few days. I have also been poring through the documentations for both the Skills kit and the Voice Service. I am just having a little hiccup trying to understand the flow. I have implemented one of amazon's sample skills (favourite colour sample) in the developer console and also wrote a sample lambda function to handle the type of response that will be delivered. Its working on the test simulator and what left is basically getting lambda

Establishing HTTP2 connection with AVS (Python — requests library)

时光怂恿深爱的人放手 提交于 2020-01-06 21:45:12
问题 I'm following amazon's guide in creating a python application that can access Alexa. I have obtained my access/refresh tokens, and am trying to open a HTTP2 connection with AVS. Since I'm doing this in python, I've utilized the requests library to manage all my HTTP connections stuff. However, I can't seem to get past the first step of opening a connection with AVS. I think the problem is simply my syntax in my request, as I'm not sure how certain elements of the get request are supposed to

Alexa Skill AudioPlayer: Console test Support poor support/bugs

空扰寡人 提交于 2019-12-20 02:52:05
问题 I'm developing a skill to play my own music. I have troubles with AudioPlayer with the developer console test environment ( https://developer.amazon.com/alexa/console/ask/test/ ). Two questions: 1. AudioPlayer Built-in Intents doesn't run as expected (test simulator bug?) Alexa, play mymusicsSkill playing Wanderer track 1: Antelao Adrift Alexa, next What would you like to play next? Ask mymusicSkill next intent: next See also screenshot: BTW, my code: 'AMAZON.NextIntent': function () { this

how to design mobile card in alexa

╄→尐↘猪︶ㄣ 提交于 2019-12-11 17:14:46
问题 I have developed an app and it is functioning properly, however when it comes to designing, i am unable to achieve what is given in the example despite of doing the same code in the example. I want to achieve this design where image is in the center with title above and description down but what I am getting is this, side image, side title and description down. Please let me know how to achieve that. Here is my sample of my code "response" : { "outputSpeech" : { "type" : "SSML", "ssml" : "

Invoke Alexa device from lambda function

淺唱寂寞╮ 提交于 2019-12-11 06:29:48
问题 I am new in Alexa development. I have successfully create an Alexa skill with AWS lambda function and Node.js code. It's working fine with my Alexa echo plus device. e.g : Alexa, open "mySampleApp" Now, I need to invoke Alexa device to make it speak via from another lambda function. Is it possible? e.g: I just execute my lambda function. I need to make speech output via my Alexa echo plus device. 回答1: Sounds like you want to trigger a notification (make speech output) from outside of your

alexa skill user input for spelling out letters

半腔热情 提交于 2019-12-10 20:39:14
问题 I'd like Alexa to be able to accept a variable-length list of English letters to my custom skill. It will allow users to search based on a string. There's two steps to this: Getting good representation for individual letters that Alexa can understand Enumerating sample utterances with variable number of letters For the first, one way would be to define a custom slot that has as its enumerated values of the English alphabet: SLOT_LETTER ay bee see dee ee eff gee ... etc but that feels hacky.