Hi,
I wanted to do a EPG for a channel I have created, it shows the same videos 24/7 but I just need to advise on tweaking the EPG.
I created a channel for it using the fixed.ini
<channel update="f" site="fixed" site_id="00:00-23:59##title:My Test##subtitle:My Test##description: Made up TV Show#category:#entertainment##presenter:Fringe####" xmltv_id="24/7 TV show">24/7 Tv show</channel>
and its does work, it produces a EPG information
<?xml version="1.0" encoding="UTF-8"?>
<tv generator-info-name="WebGrab+Plus/w MDB & REX Postprocess -- version V2.1.5 -- Jan van Straaten" generator-info-url="http://www.webgrabplus.com">
<channel id="24/7 TV show">
<display-name lang="en">24/7 Tv show</display-name>
</channel>
<programme start="20180315000000 +0000" stop="20180315235900 +0000" channel="24/7 TV show">
<title lang="en">My Test</title>
<sub-title lang="en">My Test</sub-title>
<desc lang="en">Made up TV Show#category:#entertainment.(n)</desc>
<credits>
<presenter>Fringe</presenter>
</credits>
</programme>
</tv>
I know how to add details etc etc, what I can't seem to figure out is how to make it split into 1 hour sections, currently it produces a EPG data for singe 24hr period entry but I like it to show this
</channel>
<programme start="20180315000000 +0000" stop="20180315005900 +0000" channel="24/7 TV show">
<title lang="en">My Test</title>
<sub-title lang="en">My Test</sub-title>
<desc lang="en">Made up TV Show#category:#entertainment.(n)</desc>
<credits>
<presenter>Fringe</presenter>
</credits>
</programme>
</tv>
</channel>
<programme start="20180315010000 +0000" stop="20180315015900 +0000" channel="24/7 TV show">
<title lang="en">My Test</title>
<sub-title lang="en">My Test</sub-title>
<desc lang="en">Made up TV Show#category:#entertainment.(n)</desc>
<credits>
<presenter>Fringe</presenter>
</credits>
</programme>
</tv>
and so on for the full 24hr period, so what do I need to edit/add on the config.xml so it does what I need?
Cheers