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 - Yardley - 2018-03-26 (2018-03-24, 19:54)bigjpayne90 Wrote: I gave up and used this https://forum.kodi.tv/showthread.php?tid=327562 beta skill.Thanks for pointing that out. Can't believe how easy it was to implement that one even across multiple kodi instances. I love that I don't have to say "ask kodi to play movie name" and can just say "alexa play movie name". Only thing so far that doesn't work properly is that saying "stop" pauses the video instead of stopping it. RE: Amazon Echo skill for Kodi - m0ngr31 - 2018-03-27 Looks like there might be a version conflict issue or something for those of you who are having issues with Zappa. I'll look into it. In the meantime, try Heroku and see if that works. RE: Amazon Echo skill for Kodi - micks_in - 2018-03-27 Thanks m0ngr31. I look forward to hearing an update from you soon on how to resolve the issue. Also, i was trying to Heroku a try but seems like Kaffeine is giving an error when i try to ask it to "give a shot to my app". it simply says "something went wrong". so i cannot use Heroku either unless there is a way to keep it awake and kaffeine issue is resolved. RE: Amazon Echo skill for Kodi - m0ngr31 - 2018-03-27 Did you try it without Kaffiene? Just curious to see if it worked. RE: Amazon Echo skill for Kodi - Yardley - 2018-03-29 When I was trying to configure this skill last week, I was able to switch to the old skills kit development console. I no longer see that option and I have no idea how to use the new interface. All instructions/tutorials online show the older interface. Any idea how I can access the old interface? RE: Amazon Echo skill for Kodi - miststlkr - 2018-03-30 (2018-03-13, 01:13)QueenBuzzo Wrote: Edit: I've found the solution. I needed to opt-out of the new skill builder and have now the old interface and was able to set everything up.I am running in to the same issues and not seeing a way to opt out of the new beta interface. Could someone help me out? RE: Amazon Echo skill for Kodi - Yardley - 2018-03-30 (2018-03-30, 03:11)miststlkr Wrote:I have a feeling this is no longer possible. Dammit all to hell.(2018-03-13, 01:13)QueenBuzzo Wrote: Edit: I've found the solution. I needed to opt-out of the new skill builder and have now the old interface and was able to set everything up.I am running in to the same issues and not seeing a way to opt out of the new beta interface. Could someone help me out? RE: Amazon Echo skill for Kodi - miststlkr - 2018-03-30 I'm getting that impression as well. I tried looking it up and everyone says "it's on the bottom of the dashboard" but either I'm blind or I'm looking in the wrong place... or it's gone. I'm so close, it would be great to figure out the last couple of steps. RE: Amazon Echo skill for Kodi - m0ngr31 - 2018-03-30 It's okay to stick with the new interface. Sometime in the next few days (once I get some new documentation written up), there will be a whole new system in place. It will simplify the procedure by quite a bit. RE: Amazon Echo skill for Kodi - miststlkr - 2018-03-30 In that case I'll await your update. Thanks! RE: Amazon Echo skill for Kodi - m0ngr31 - 2018-04-03 Okay, here's the update. Tried to make it a bit easier to get going and support the new changes Amazon has made to the skill editor tool. Updated docs are here -> https://lexigr.am/ RE: Amazon Echo skill for Kodi - miststlkr - 2018-04-04 That is really cool. I am running into a problem because it is trying to use port 9090 and kodi (still on v16) is already using that port. I tried changing the lexigram port in lwa.js to port 9091 but got an unhandled exception when I ran it again after that Quote:miststlkr@htpc:~$ lexigram login UPDATE: killed Kodi, changed back to 9090 and tried again with the same result RE: Amazon Echo skill for Kodi - m0ngr31 - 2018-04-04 Try doing an `npm uninstall -g lexigram-cli` and then reinstall it to see if that works. RE: Amazon Echo skill for Kodi - miststlkr - 2018-04-04 I suspect that I am missing something with the login part. The credentials are not being detected and it never asks for them Quote:miststlkr@htpc:~$ npm uninstall -g lexigram-cli RE: Amazon Echo skill for Kodi - m0ngr31 - 2018-04-04 Try `rm -rf ~/.ask` and just use the default profile. |