Hey,
i’ve got osmc running on my rpi2 with tvheadend from the app store for live tv.
Is there a way to always switch to a certain tv station at a predefined time? Like switch to channel 2 each morning at 7am?
Thank you in advance for your advice.
Hey,
i’ve got osmc running on my rpi2 with tvheadend from the app store for live tv.
Is there a way to always switch to a certain tv station at a predefined time? Like switch to channel 2 each morning at 7am?
Thank you in advance for your advice.
No ideas?
To be honest I believe you would have much better success with your question on the Kodi Forum Kodi Community Forum - Tvheadend
Anyhow a quite diry workaround you could try is to setup a cron job (install cron from app store first) that calls a script at the respective time and in the script you have curl executing a JSON request.
#!/bin/bash
curl --silent -H "Content-type: application/json" -X POST -d '{"jsonrpc": "2.0", "method": "Player.Open", "params": {"item":{"channelid":11}}}' http://<YOUR USER>:<YOUR PASSWORD>@localhost:<YOUR PORT>/jsonrpc