Hi,
I have LG WebOS TV which can be controlled in HASSIO automations. I have a PIR sensor(at door) which changes source from HDMI-3(connected to Set-top box) to HDMI-2(connected to CCTV camera outside door) when motion is detected and back to HDMI-3 when motion stops.
In short : When motion is detected, I see the CCTV output on TV for that duration.
So I wanted to use TTS so that I can hear a message from the TV.
In logs, I see as below : **
-------------------------------
Error executing service ServiceCall media_player.play_media: media_content_id=http://192.168.1.110:8123/api/tts_proxy/669fb92c17b8930dbb84f4c07c1b6a7119313ee8_en_-_google.mp3, media_content_type=music
Traceback (most recent call last):
** File “/usr/lib/python3.6/site-packages/homeassistant/core.py”, line 1002, in _event_to_service_call
** await service_handler.func(service_call)**
** File “/usr/lib/python3.6/site-packages/homeassistant/components/media_player/init.py”, line 402, in async_service_handler**
** yield from getattr(player, method[‘method’])(params)
** File “/usr/lib/python3.6/concurrent/futures/thread.py”, line 56, in run**
** result = self.fn(self.args, self.kwargs)
** File “/usr/lib/python3.6/site-packages/homeassistant/components/media_player/init.py”, line 693, in play_media*
** raise NotImplementedError()**
NotImplementedError
-------------------------------
If I put this link “http://192.168.1.110:8123/api/tts_proxy/669fb92c17b8930dbb84f4c07c1b6a7119313ee8_en_-_google.mp3” in a browser on PC, the mp3 file which gets created for the voice message runs correctly but on the TV i hear nothing.
Can someone help ?