/home/hts/.hts/tvheadend/channels
This folder contains a series of numbered files, each one corresponding to a channel; each file includes references to the tags, e.g.
hts@Server:~/.hts/tvheadend/channels$ more 406
{
"name": "BBC ONE HD",
"tags": [
3,
5,
1,
7
],
"dvr_extra_time_pre": 0,
"dvr_extra_time_post": 0,
"channel_number": 141
}
and changing to ../channeltags then gives the corresponding tag files:
hts@Server:~/.hts/tvheadend/channeltags$ more 3
{
"enabled": 0,
"internal": 0,
"titledIcon": 0,
"name": "",
"comment": "",
"icon": "",
"id": 3
}
hts@Server:~/.hts/tvheadend/channeltags$ more 5
{
"enabled": 1,
"internal": 0,
"titledIcon": 0,
"name": "BBC HD",
"comment": "",
"icon": "",
"id": 5
}
hts@Server:~/.hts/tvheadend/channeltags$ more 1
{
"enabled": 1,
"internal": 0,
"titledIcon": 0,
"name": "TV channels",
"comment": "",
"icon": "",
"id": 1
}
hts@Server:~/.hts/tvheadend/channeltags$ more 7
{
"enabled": 1,
"internal": 0,
"titledIcon": 0,
"name": "HDTV",
"comment": "",
"icon": "",
"id": 7
}
hts@Server:~/.hts/tvheadend/channeltags$