Release Kanzi: Amazon Alexa skill for Kodi - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Supplementary Tools for Kodi (https://forum.kodi.tv/forumdisplay.php?fid=116) +--- Thread: Release Kanzi: Amazon Alexa skill for Kodi (/showthread.php?tid=254502) Pages:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
|
RE: Amazon Echo skill for Kodi - iminsandiego - 2016-04-03 I finally got this going after a couple of hours and then switching to heroku. This is a cool proof of concept, but you must manually add the names of tv shows and movies to the utterances file. Have you thought of a way to automate adding these names? If we could simply add a way to search our movies or tv shows, that would be ideal. RE: Amazon Echo skill for Kodi - m0ngr31 - 2016-04-03 You don't have to add every show, but the more, the better. Most of the slows in the utterances don dike, I don't even have. It works great for me. RE: Amazon Echo skill for Kodi - iminsandiego - 2016-04-03 I'm using the remote with my fire tv to control kodi, so most of the commands are unnecessary for me since navigation is awesome with the remote. The one major feature missing for me is voice search. I would like to say "kodi search for movie shrek" and have it open the search, automatically type shrek, and then press done. Any ideas how we can add that ability? RE: Amazon Echo skill for Kodi - m0ngr31 - 2016-04-04 I don't know if that will be possible with the way the Kodi API works. I'll look into it though. RE: Amazon Echo skill for Kodi - iminsandiego - 2016-04-05 Here's another Alexa-Kodi project that's very similar to what you are doing. https://www.reddit.com/r/amazonecho/comments/4082rl/alexa_skill_demo_netflix_kodi_streaming_media/ https://github.com/rsummers618/HTPC_Alexa_Skill I installed this one as well as yours. This one has the advantage of not requiring Heroku. It did work well for me. The features he mentioned like searching Netflix and Pulsar won't work on the Fire TV, but likely work well on some other platforms. He requires chrome launcher in order to call Netflix and that's not calling Chrome properly on FireTV. RE: Amazon Echo skill for Kodi - Gyroscope352 - 2016-04-05 Hey! Just discovered this yesterday and really excited to try it out. Is OpenShift still having problems? I'm getting the "There was a problem with the requested skill response" error when telling my Echo to "ask kodi", and "The remote endpoint could not be called, or the response it returned was invalid." error when testing on Amazon's web site. But it sounds like people are having trouble with Heroku as well? Which one is the more reliable choice at the moment? That other one posted by iminsandiego looks nice, but doesn't seem to be as powerful as m0ngr31's, at least in terms of the stuff I want my Echo to do. RE: Amazon Echo skill for Kodi - iminsandiego - 2016-04-06 (2016-04-05, 23:25)Gyroscope352 Wrote: Hey! Just discovered this yesterday and really excited to try it out. I didn't have any luck with OpenShift after a couple hours. Heroku was a little easier but you have to adapt m0ngr31's instructions a bit to get Heroku to work. RE: Amazon Echo skill for Kodi - Gyroscope352 - 2016-04-06 (2016-04-06, 00:01)iminsandiego Wrote: I didn't have any luck with OpenShift after a couple hours. Heroku was a little easier but you have to adapt m0ngr31's instructions a bit to get Heroku to work. Thanks!! I was a little confused at first but somehow managed to stumble my way through Heroku in just an hour or so and I have it running perfectly! This is so so so cool. THIS is the power of the Amazon Echo. I'm incredibly impressed. Hopefully I don't run into too many snags in the next few days (m0ngr31 has me all nervous about Heroku's limits, but we'll see how it works!) Thanks for putting all this together, m0ngr31. You rock. RE: Amazon Echo skill for Kodi - m0ngr31 - 2016-04-08 I updated the documentation, hopefully it's a little more clear now. I've also switched all the code/documentation to run off of Heroku now instead of Openshift. RE: Amazon Echo skill for Kodi - geman220 - 2016-04-08 Just wanted to report that I've been running flawlessly with OpenShift for about a month now. The only minor issue is you have to sort of "wake up" the service. If I haven't asked Alexa to play a movie recently the first time I ask "Alexa ask TV to play the movie Star Wars" it will respond "the requested skill took to long to respond". After that I can ask again and it will work. It will continue working after that until you don't make any requests for several hours. I could not get it to work at all on Heroku in any situation. Edit: To clarify things like "pause" "play" etc would work. But asking to play a show/movie or asking if there are new shows/movies would not work on Heroku. RE: Amazon Echo skill for Kodi - edru - 2016-04-08 nm-found post that addressed my issue. RE: Amazon Echo skill for Kodi - edru - 2016-04-08 (2016-02-03, 18:22)astro14 Wrote: I was able to get this working through my home server. If anyone is looking to modify the readme for implementation on their own server, here are the basic requirements. Thank you for this. This is exactly what I needed to get it to work. RE: Amazon Echo skill for Kodi - kevcompton - 2016-04-11 please ignore RE: Amazon Echo skill for Kodi - edru - 2016-04-11 Loving this setup. Favorite thing to do is to ask it to play a random show. Thanks to MakerMusings and yourself this is getting along nice. Just a few command requests: Clean Library Update Library Play newest episode of SHOW Play random unseen episode of SHOW RE: Amazon Echo skill for Kodi - m0ngr31 - 2016-04-13 I just pushed a pretty big update that should parse phrases better. I also updated to include those commands edru. |