Difference between revisions of "LiveChannelsPlayback"

From Gvp-public
Jump to navigation Jump to search
Line 53: Line 53:
 
{{!}} int
 
{{!}} int
 
{{!}} Internal (MiB) ID of the channel.
 
{{!}} Internal (MiB) ID of the channel.
 +
{{!}}- valign="top"
 +
 +
! isExternal
 +
{{!}} bool
 +
{{!}} bgcolor="#7DC04E" {{!}} '''NEW IN 3.0!''' Indicates if the channel is external or not.
 
{{!}}- valign="top"
 
{{!}}- valign="top"
  
Line 63: Line 68:
 
{{!}} String
 
{{!}} String
 
{{!}} Channel name.
 
{{!}} Channel name.
 +
{{!}}- valign="top"
 +
 +
! PlaybackInfos
 +
{{!}} Array of [[PlaybackInfo]] object
 +
{{!}} bgcolor="#7DC04E" {{!}} '''NEW IN 3.0!''' Playback info for specific device types requested in deviceTypes filter.
 
{{!}}- valign="top"
 
{{!}}- valign="top"
  
Line 85: Line 95:
 
{{!}}- valign="top"
 
{{!}}- valign="top"
  
! PlaybackInfos
+
! Title
{{!}} Array of [[PlaybackInfo]] object
+
{{!}} String
{{!}} bgcolor="#7DC04E" {{!}} '''NEW IN 3.0!''' Playback info for specific device types requested in deviceTypes filter.
+
{{!}} bgcolor="#7DC04E" {{!}} '''NEW IN 3.0!''' Title of the LiveChannelsPlayback
{{!}}- valign="top"
 
 
 
! External
 
{{!}}  
 
{{!}} bgcolor="#7DC04E" {{!}} '''NEW IN 3.0!'''  
 
 
{{!}}- valign="top"
 
{{!}}- valign="top"
  
Line 99: Line 104:
 
|Example=
 
|Example=
 
{
 
{
:        "ID": 235,
+
:        "ID": 250,
:        "Name": "La 1",
+
:        "Name": "Disney Junior",
 +
:        "Title": "Disney Junior",
 
:        "Description": "",
 
:        "Description": "",
 
:        "Active": true,
 
:        "Active": true,
:        "IsPlayback": true,
 
 
:        "Ppv": false,
 
:        "Ppv": false,
:        "Dvr": false,
+
:        "Dvr": true,
 
:        "RequiresPin": false,
 
:        "RequiresPin": false,
:        "CallLetter": "La1",
+
:        "CallLetter": "DisnJ",
 
:        "ChannelNumber": 1,
 
:        "ChannelNumber": 1,
:        "EpgLiveChannelReferenceId": "1",
+
:        "EpgLiveChannelReferenceId": "16",
:        "Genres": array of genres id,
+
:        "Genres": [],
:        "Icons": Array of [[Image|Image]] objects,
+
:        "Icons": [
:        "ResizableImages": Array of [[Image|Image]] objects,
+
::            Array of [[Image|Image]] objects
:        "TimeShift": true
+
:        ],
 +
:        "ResizableImages": [
 +
::            Array of [[Image|Image]] objects
 +
:        ],
 +
:        "TimeShift": false,
 +
:        "IsPlayback": true,
 
:        "PlaybackInfos": [
 
:        "PlaybackInfos": [
::       Array of [[PlaybackInfo]] object
+
::             Array of [[PlaybackInfo]] object
 
:        ],
 
:        ],
:         "External": ""
+
:       "IsExternal": false
 
}
 
}
 +
  
 
|KnownIssues=
 
|KnownIssues=
Line 138: Line 149:
 
{{!}} Added PlaybackInfos
 
{{!}} Added PlaybackInfos
 
{{!}}  Alberto Los Santos
 
{{!}}  Alberto Los Santos
 +
{{!}}- valign="top"
 +
 +
! 3.0
 +
{{!}} Added:
 +
* Title
 +
* isExternal
 +
{{!}}  Ricardo Calvo
 
{{!}}- valign="top"
 
{{!}}- valign="top"
  

Revision as of 18:24, 25 March 2015

Represents the information for a live schedule, mainly from data coming from EPG ingestion.

Members

Field Data Type Description
Active bool Live channel Active true/false
CallLetter String Channel call letter
ChannelNumber int Channel number
Description String Channel description
Dvr bool Whether the channel has DVR enabled
EpgLiveChannelReferenceId String EPG Live Channel Reference ID (channel ID as appearing in EPG)
Genres array of int List of genres IDs associated to channel
Icons Array of Image object Icon images associated to the channel
ID int Internal (MiB) ID of the channel.
isExternal bool NEW IN 3.0! Indicates if the channel is external or not.
IsPlayback bool Whether the channel has playback enabled
Name String Channel name.
PlaybackInfos Array of PlaybackInfo object NEW IN 3.0! Playback info for specific device types requested in deviceTypes filter.
Ppv bool PPV channel true/false
RequiresPin bool Channel requiring PIN true/false
ResizableImages Array of Images object It provides the list of original images (non resized) associated with this channel. The application should use the Thumbox Service to perform dynamic resizing of the images in order to adapt them to the User Interface.
TimeShift bool NEW IN 2.3! Channel with TimeShift (RestartTV) capabilities true/false
Title String NEW IN 3.0! Title of the LiveChannelsPlayback


Example

{

"ID": 250,
"Name": "Disney Junior",
"Title": "Disney Junior",
"Description": "",
"Active": true,
"Ppv": false,
"Dvr": true,
"RequiresPin": false,
"CallLetter": "DisnJ",
"ChannelNumber": 1,
"EpgLiveChannelReferenceId": "16",
"Genres": [],
"Icons": [
Array of Image objects
],
"ResizableImages": [
Array of Image objects
],
"TimeShift": false,
"IsPlayback": true,
"PlaybackInfos": [
Array of PlaybackInfo object
],
"IsExternal": false

}


Known issues

None


Version history

API Version Number Change description Changes author
1.0 Initial data type implementation
3.0 Added PlaybackInfos Alberto Los Santos
3.0 Added:
  • Title
  • isExternal
Ricardo Calvo


See also