Hello guys,
I connected Lg TV to home assistant.
I can turn on/off, change source to YouTube for example, control the sound, but can’t put exact video by url.
I’m trying to do it using script:
fish:
alias: Aquarium
sequence:
- service: media_extractor.play_media
data:
entity_id: media_player.tv_715
media_content_type: video/mp4
media_content_id: https://www.youtube.com/watch?v=7Y7QaIQET0E&t=37s
Also tried:
fish:
alias: Aquarium
sequence:
- service: media_extractor.play_media
entity_id: media_player.tv_715
data:
media_content_type: video/mp4
media_content_id: https://www.youtube.com/watch?v=7Y7QaIQET0E&t=37s
And of course tested such media_content_type
: video
, video/youtube
, audio/youtube
…
It doesn’t work; Logs show that script is called, but nothing.
I’m trying to call service media_extractor.play_media
with this:
{
"entity_id": "media_player.tv_715",
"media_content_type": "video/mp4",
"media_content_id": "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4"
}
Also tested with different media_content_type
.
It doesn’t work.
No errors in any case. Just that everything is called fine, but in result no video is played on the TV.
Could not find solution on forums.