epg/siteini.pack/Misc/fixed_info.txt
freearhey a597b11307 Init
2021-03-09 22:46:37 +03:00

41 lines
No EOL
2.6 KiB
Text
Executable file

* this siteini can create fixed channels with fixed show(s)
**************************************************************************************************
* configure your config file
**************************************************************************************************
01. in the config file define one (or more) channel(s) like below:
eg. 1 show a day:
<channel update="f" site="fixed" site_id="00:00-23:59##title:Full Day Show##subtitle:All day long##description:24h schedule##category:film#_#entertainment##presenter:me#_#myself#_#Irene####" xmltv_id="dummy001">dummy001</channel>
eg. 2 shows a day:
<channel update="f" site="fixed" site_id="00:00-12:00##title:First Show##subtitle:Half a day long##description:12h schedule (part 1)####12:00-23:59##title:Last Show##subtitle:Half a day long##description:12h schedule (part 2)" xmltv_id="dummy002">dummy002</channel>
The format of site_id is pretty simple.
a. nn:nn-nn:nn the start-stop times for this show
b. ##title:xxxxx the title of this show
. (optional) ##subtitle:xxxx the subtitle of this show
. (optional) ##description:xxxx the description of this show
. (optional) ##category:xxxx the category/categories of this show with #_# as a separator between multiple values
. (optional) ##director:xxxx the director(s) of this show with #_# as a separator between multiple values
. (optional) ##actor:xxxx the actor(s) of this show with #_# as a separator between multiple values
. (optional) ##presenter:xxxx the presenter(s) of this show with #_# as a separator between multiple values
. (optional) ##writer:xxxx the writer(s) of this show with #_# as a separator between multiple values
. (optional) ##producer:xxxx the producer(s) of this show with #_# as a separator between multiple values
. (optional) ##composer:xxxx the composer(s) of this show with #_# as a separator between multiple values
. (optional) ##commentator:xxxx the commentator(s) of this show with #_# as a separator between multiple values
z. #### closing tag for this show
You can create as many shows as you like / day. Just be sure that when you create a 1 day show, the start and end time are not the same. So 00:00-00:-00 will NOT work. Just make it 00:00-23:59.
FYI:
If you have many shows on a day, are want to have much details, the config line can become pretty long. In xml, you can split your lines easily like:
<channel update="f" site="fixed" site_id="
00:00-23:50
##title:Full Day Show
##subtitle:All day long
##description:24h schedule
####"
xmltv_id="dummy001">dummy001</channel>