mirror of
https://github.com/vexorian/dizquetv.git
synced 2025-12-10 00:28:08 -06:00
Page:
API reference
Pages
"sky guide" Theme by Allanbuzzy
API reference
Adding dizqueTV as a DVR in Plex
Channel that plays TV shows during the day and movies always at 19:00
Configure dizqueTV service in Linux (SystemD)
Custom Themes by JimnyCricket
Flex 101
Home
Issues playing the channels
Music Video Channel Recipe
Notes regarding sharing the IPTV stream with remote computers
Plex Loses Non dizqueTV Channel Mappings
Plugins
Raspberry guide
Sharing your channel with kosmi.io
Step 1: Get dizqueTV running
Step 2: Configure Plex in dizqueTV
Step 3: Install and configure ffmpeg.
Step 4: Setup a test channel and test it in the TV Guide
Stream always cuts off after the same number of minutes
Upgrading dizqueTV
Versions
Clone
2
API reference
vexorian edited this page 2020-10-16 13:29:56 -04:00
Table of Contents
POST /api/channel-tools/time-slots
{
"programs": <programs that will be used in the time slots>
"schedule" : <schedule json>
}
Programs object is in the same format as the programs list in the channel json.
Example schedule object:
"schedule": {
"lateness": 0,
"maxDays": 365,
"slots": [
{
"time": 23400000,
"showId": "tv.Sheep In The Big City",
"order": "next"
},
{
"time": 54000000,
"showId": "flex.",
"order": "next"
},
{
"time": 75600000,
"showId": "movie.",
"order": "shuffle"
},
{
"time": 79200000,
"showId": "flex.",
"order": "shuffle"
},
{
"time": 80100000,
"showId": "tv.Looney Tunes",
"order": "shuffle"
}
],
"pad": 1,
"timeZoneOffset": 240
}
showId for a tv show starts with tv. followed by the show's title. Movies are movie., Redirects are in the format redirect.channelNumber, e.g redirect.3 will redirect to channel 3. Times are milliseconds since the start of a day. timeZoneOffset is in minutes. pad is 1 if all times are allowed, 2 if only even times are allowed. Normally you'd want something like pad = 1800000 so that the allowed times are :00 and :30.