Results 21 to 30 of 891
-
2019-09-25, 15:57 #21
- Join Date
- Jan 2010
- Location
- Hertfordshire
- Posts
- 6,262
-
2019-09-25, 21:10 #22
- Join Date
- Feb 2008
- Posts
- 5,126
A lot of LMS users access live radio via a Favourites list. This option seems missing from the skill ... ?
LMS server: O2 Joggler with Jivelite, Pi Zero W with PcP 6.0
Amp: Denon PMA-50
Players/Speakers: Touch, Logitech Radios, Sonos Play 1s & Beam, Libratone Zipp, GGMM E2 & E3, Yamaha WXAD-010, Loewe Airspeaker, Google Chromecast Audio, Home Mini & Nest Hub, Amazon Echo 2,3 and Show5, Pioneer WX-SMA1, Roberts S1, O2 Joggler, Cisco Joggler, Fiio M6, Avantree Priva BT transmitter
------------------------------------------------------------------------------------
-
2019-09-26, 00:22 #23
It's not account or region related. From the skill's logs, I can see that the error being returned by ngrok is that the tunnel with the name you are entering does not exist. This is very likely because you are starting the tunnel with the ./ngrok http 9000 command and then killing it again with ctrl-c or some other means. The tunnel shuts down the moment the ngrok process terminates on your machine. Try opening it in its own terminal session and leaving it run while you test the skill. You should see lots of POST /jsonrpc.js 200 [OK] type stuff in the ngrok log display as the skill communicates with your LMS.
I also can see that your tunnel username and password are blank which is ok to test quickly, but not for a permanent setup. if I were you I'd use the option with
./ngrok http -auth "user:password" 9000
and use a username and password during tunnel setup. You then enter those values into the 2nd and 3rd fields on the account linking form, under the server path.Last edited by philchillbill; 2019-09-26 at 00:24.
-
2019-09-26, 00:38 #24
- Join Date
- Jan 2010
- Location
- Hertfordshire
- Posts
- 6,262
I realised where to put the username and password while lying in bed. For some reason I thought the skill was asking for any LMS password details. I blame the wine and the late hour. I'll try again this morning.
I did use ctrl-C before I closed the terminal at the end of my tests and previously when I changed the region. I see now I probably shouldn't have done that.
Sent from my SM-G900F using Tapatalk
-
2019-09-26, 00:41 #25
-
2019-09-26, 01:40 #26
- Join Date
- Feb 2008
- Posts
- 5,126
LMS server: O2 Joggler with Jivelite, Pi Zero W with PcP 6.0
Amp: Denon PMA-50
Players/Speakers: Touch, Logitech Radios, Sonos Play 1s & Beam, Libratone Zipp, GGMM E2 & E3, Yamaha WXAD-010, Loewe Airspeaker, Google Chromecast Audio, Home Mini & Nest Hub, Amazon Echo 2,3 and Show5, Pioneer WX-SMA1, Roberts S1, O2 Joggler, Cisco Joggler, Fiio M6, Avantree Priva BT transmitter
------------------------------------------------------------------------------------
-
2019-09-26, 02:32 #27
- Join Date
- Jan 2010
- Location
- Hertfordshire
- Posts
- 6,262
Finally getting somewhere. Four players are recognised. When I say "Alexa tell media server to start playback" I get "the skill Plex can help with that did you want to enable it"
Sent from my SM-G900F using Tapatalk
-
2019-09-26, 02:55 #28
- Join Date
- Feb 2011
- Location
- Cheshire, UK
- Posts
- 5,497
Although my router supports SSL Web Proxy the firmware is too old to allow for a LetsEncrypt Cert - bugger!
I have loads of servers up in the cloud with Certs but none have VPN's back to here so I have opted for ngrok for the time being and it has taken me a couple of minutes to get it set up and running with auth. Now I just need to daemonise it on start up somehow but I have a day or two until my Echo Dot arrives.
For those wondering about the region mentioned above - the options are - us, eu, ap, au, sa, jp, in
My start command is therefore
./ngrok http -region=eu -auth "usernameassword" 9000
VB2.4 storage QNAP TS419p (NFS)
Living Room Joggler & Pi4/Khadas -> Onkyo TXNR686 -> Celestion F20s
Office Joggler & Pi3 -> Denon RCD N8 -> Celestion F10s
Dining Room SB Boom
Kitchen UE Radio (upgraded to SB Radio)
Bedroom (Bedside) Pi Zero+DAC ->ToppingTP21 ->AKG Headphones
Bedroom (TV) & Bathroom SB Touch ->Denon AVR ->Mordaunt Short M10s + Kef ceiling speakers
Guest Room Joggler > Topping Amp -> Wharfedale Modus Cubes
Everything controlled by iPeng & Material on iOS
-
2019-09-26, 03:11 #29
- Join Date
- Jan 2010
- Location
- Hertfordshire
- Posts
- 6,262
Region seems to be unnecessary. I will be interested to hear your impressions when your echo arrives to see if you have the same issues as I have.
If you are running on a Pi I would also be interested in your solution to auto start the server. It might be worth looking at the MusicIP on Raspberry Pi thread to see how it was done there.
Sent from my SM-G900F using TapatalkLast edited by slartibartfast; 2019-09-26 at 03:16.
-
2019-09-26, 03:16 #30
- Join Date
- Feb 2011
- Location
- Cheshire, UK
- Posts
- 5,497
For those wondering how to run ngrok as a background task
./ngrok http -log=stdout -region=eu -auth userassword 9000 > ngrok.log &
This disables the console and outputs to a log file
./ngrok http -log=stdout -region=eu -auth userassword 9000 > /dev/null &
This disables the console and outputs to /dev/null
You then need to go to the ngrok dashboard to find your hostname or http://127.0.0.1:4040 (but I can't do the latter as I have no GUI on the LMS machine)VB2.4 storage QNAP TS419p (NFS)
Living Room Joggler & Pi4/Khadas -> Onkyo TXNR686 -> Celestion F20s
Office Joggler & Pi3 -> Denon RCD N8 -> Celestion F10s
Dining Room SB Boom
Kitchen UE Radio (upgraded to SB Radio)
Bedroom (Bedside) Pi Zero+DAC ->ToppingTP21 ->AKG Headphones
Bedroom (TV) & Bathroom SB Touch ->Denon AVR ->Mordaunt Short M10s + Kef ceiling speakers
Guest Room Joggler > Topping Amp -> Wharfedale Modus Cubes
Everything controlled by iPeng & Material on iOS