Project

General

Profile

Htsp » History » Version 100

Jaroslav Kysela, 2014-10-19 21:08

1 75 Adam Sutton
h1. Home Tv Streaming Protocol (HTSP) - Version 10
2 1 Andreas Smas
3
h2. General
4 58 sbi -
5
HTSP is a TCP based protocol primarily intended for streaming of live TV and related meta data such as channels, group of channels (called tags in HTSP) and electronic program guide (EPG) information.
6
7 61 Adam Sutton
The transmission and reception of a channel over HTSP is referred to as a subscription. A single HTSP session can handle as many concurrent subscriptions as the bandwidth and CPU permits.
8 1 Andreas Smas
9 61 Adam Sutton
The HTSP server in tvheadend has a payload-aware scheduler for prioritizing more important packets (such as I-frames) before less important ones (such as B-frames). This makes HTSP suitable for long-distance transmissions and/or paths with non-perfect delivery.
10 1 Andreas Smas
(It has been tested with a server in Stockholm and the client in Berlin).
11
12 17 Andreas Smas
For information about the HTSP wire format please read [[htsmsgbinary|HTSMSG binary format]]
13 1 Andreas Smas
14 61 Adam Sutton
If you're looking to develop a new client, there are several existing client implementations from which you might be able to gain knowledge:
15
16
* "XBMC":https://github.com/opdenkamp/xbmc/tree/master/xbmc/pvrclients/tvheadend
17
* "Showtime":https://github.com/andoma/showtime/tree/master/src/backend/htsp
18 65 John Törnblom
* "TVHGuide":https://github.com/john-tornblom/TVHGuide
19 69 Adam Sutton
* "PyHTSP":https://github.com/adamsutton/tvheadend/tree/master/lib/py/tvh/htsp.py (This is a demo client and is WIP, it has limited functionality).
20 1 Andreas Smas
21 22 Andreas Smas
----
22 18 Andreas Smas
23 84 Jaroslav Kysela
h2. Protocol Changes
24 83 Jaroslav Kysela
25 100 Jaroslav Kysela
h3. v13..v14
26
27
* added getChannel method
28
29 85 Jaroslav Kysela
h3. v12..v13
30
31
* added addAutorecEntry method
32
* added deleteAutorecEntry method
33 92 Jaroslav Kysela
* added autorecEntryAdd, autorecEntryUpdate, autorecEntryDelete server-to-client methods
34 85 Jaroslav Kysela
* extended channelAdd server-to-client method
35 87 Jaroslav Kysela
** added channelNumberMinor (for {major}.{minor} channel numbers)
36
* extended dvrEntryAdd and dvrEntryUpdate server-to-client methods
37 88 Jaroslav Kysela
** added eventId, autorecId, startExtra, stopExtra, retention, priority, contentType fields
38 97 Jaroslav Kysela
* extended addDvrEntry method
39
** added retention
40
* extended updateDvrEntry method
41
** added retention, priority
42
* extended epgQuery method
43
** added minduration, maxduration
44 85 Jaroslav Kysela
* added subscriptionGrace server-to-client method
45 97 Jaroslav Kysela
46 85 Jaroslav Kysela
47 83 Jaroslav Kysela
h3. v11..v12
48
49
* added subscriptionFilterStream method
50
* added getDvrCutpoints method
51
52
53
h3. v10..v11
54
55 86 Jaroslav Kysela
* added audio_type in the subscriptionStart server-to-client method
56 83 Jaroslav Kysela
* added getCodecs method
57
58 58 sbi -
h2. Communication
59
60
61 69 Adam Sutton
This communication is currently implemented by using htsmsg's. All strings are encoded as UTF-8.
62 1 Andreas Smas
63
There are two distinct ways for communication within HTSP.
64
65 28 Andreas Smas
Apart from this there is a number of messages that needs to be exchanged during login, see the login section below.
66
67 1 Andreas Smas
68 58 sbi -
h3. RPC communication
69
70
71 1 Andreas Smas
There is a normal RPC way of doing things. I.e. the client sends a request and the server responds with a reply. All the RPC methods are listed below as the 'Client to Server' methods. Apart from all message fields listed within each message type the client can add an additional field:
72 18 Andreas Smas
73 17 Andreas Smas
RPC request extra fields:
74 58 sbi -
<pre>
75 28 Andreas Smas
seq              int  optional   Sequence number. This field will be echoed back by the server in the reply.
76 1 Andreas Smas
username         str  optional   Username, in combination with 'digest' this can be used to raise the privileges
77
                                 for the session in combination with invocation of a method. 
78 28 Andreas Smas
digest           bin  optional   Used to raise privileges.
79 58 sbi -
</pre>
80 18 Andreas Smas
81 1 Andreas Smas
The followings field should be used by the client to match the reply with the request.
82
All replies are guaranteed to arrive in the same order as the requests.
83
Even so, probably the best way to implement the request-reply client is by taking advantage of the 'seq' field.
84
85
RPC reply extra fields:
86 58 sbi -
<pre>
87 18 Andreas Smas
seq              int  optional   Sequence number. Same as in the request.
88 19 Andreas Smas
error            str  optional   If present an error has occurred and the text describes the error.
89
noaccess         int  optional   If present and set to '1' the user is prohibited from invoking the method due to 
90 1 Andreas Smas
                                 access restrictions. 
91 58 sbi -
</pre>
92 1 Andreas Smas
93 18 Andreas Smas
94 58 sbi -
h3. Streaming communication
95
96
97 19 Andreas Smas
For streaming of live TV and various related messages the server will continuously push data to the client.
98 1 Andreas Smas
These messages are referred to as asynchronous messages and always have the 'method' field set and never have the 'seq' field set.
99
Also, the client can enable an additional asyncMetadata mode and by doing so it will be notified by the server when meta data changes. (EPG updates, creation of channels and tags, etc). 
100
101 34 Andreas Smas
102 58 sbi -
h3. Authentication
103
104
105 29 Andreas Smas
In Tvheadend, each method has an associated access restriction. Currently there is only one restriction (Streaming). However, this may change in the future.
106 1 Andreas Smas
107
Privileges for these restrictions may be granted in two ways: Username + Password and/or Source IP address.
108
Therefore it is possible to gain permissions to the system without entering a username and password.
109
While this is really useful it also complicates the authentication schema a bit.
110
Upon connect the initial privileges will be raised based on the source address.
111
112
Before any username / password based authentication has taken place the client must have
113 34 Andreas Smas
obtained a challenge (which stays fixed for the session). This is done via the 'hello' method.
114 1 Andreas Smas
115
In principle it's possible to use two different authentication idioms with HTSP.
116
Depending on how your application works one or another may be more suitable.
117
While they do not really differ from a protocol point of view it's worth mentioning a bit about them here:
118
119
120 58 sbi -
h3. Initial login authentication
121
122
123 1 Andreas Smas
The client performs all of its authentication using the 'login' method.
124
125
It may choose to send:
126 58 sbi -
* Username and password: Privileges will be raised based on these credentials.
127
* Username only: Privileges will be based on just the source address. The username will be used for various logging purposes.
128
* Nothing: Privileges will be based on just the source address.
129 1 Andreas Smas
130
If no privileges are granted after the login message has been received by the server (i.e. both network and username + password based)
131
the server will reply with 'noaccess' set to 1. A client that only employs initial login should honor this flag and ask the
132
user for a username + password and retry by using the 'authenticate' method. I.e. it should not send the 'login' method again.
133
134
135 58 sbi -
h3. On-demand authentication
136
137
138 1 Andreas Smas
The client performs all of its authentication when it needs to.
139
140
When using this method, the client will check every RPC reply for the 'noaccess' field.
141
If it set to 1 it whould ask the user for username + password and retry the request but also
142 58 sbi -
add 'username' and 'digest' to the original message. (See _RPC request extra fields_ above)
143 1 Andreas Smas
144
Typically it would not send a username or digest during login.
145 29 Andreas Smas
146
----
147 34 Andreas Smas
148 66 Adam Sutton
h2. Client to Server (RPC) methods
149 34 Andreas Smas
150
h3. hello
151 58 sbi -
152
Used to identify the client toward the server and to get the session challenge used to
153 1 Andreas Smas
hash passwords into digests. The client can request a different version of the HTSP
154 66 Adam Sutton
protocol with this method. If no 'hello' message is sent the server assumes latest version
155 1 Andreas Smas
is to be used.
156 34 Andreas Smas
157 66 Adam Sutton
Client/Server should select lowest common version, if this is not possible connection should be terminated.
158 1 Andreas Smas
159
Request message fields:
160
<pre>
161 66 Adam Sutton
htspversion        u32   required   Client preferred HTSP version.
162
clientname         str   required   Client software name.
163
clientversion      str   required   Client software version.
164 58 sbi -
</pre>
165 1 Andreas Smas
166
Reply message fields:
167 34 Andreas Smas
<pre>
168 66 Adam Sutton
htspversion        u32   required   The server supports all versions of the protocol up to and including this number.
169
servername         str   required   Server software name.
170
serverversion      str   required   Server software version.
171
servercapability   str[] required   Server capabilities (Added in version 6)
172 1 Andreas Smas
challenge          bin   required   32 bytes randomized data used to generate authentication digests
173 73 Adam Sutton
webroot            str   optional   Server HTTP webroot (Added in version 8)
174
                                    Note: any access to TVH webserver should include this at start of URL path
175 1 Andreas Smas
</pre>
176
177 70 Adam Sutton
Note: possible values for servercapability[]:
178
<pre>
179
cwc                Descrambling available
180
v4l                Analogue TV available
181
linuxdvb           Linux DVB API available
182 1 Andreas Smas
imagecache         Image caching available
183 73 Adam Sutton
timeshift          Timeshifting available (Added in version 9).
184 70 Adam Sutton
</pre>
185
186 58 sbi -
h3. authenticate
187 1 Andreas Smas
188
This can be used to issue authentication without doing anything else.
189
If no privileges are gained it will return with 'noaccess' set to 1.
190
191 33 Andreas Smas
Request message fields:
192 1 Andreas Smas
<pre>
193 66 Adam Sutton
None   
194 33 Andreas Smas
</pre>
195 58 sbi -
196
Reply message fields:
197
<pre>
198 66 Adam Sutton
noaccess           u32   optional   If set to 1, no privileges were granted.
199 33 Andreas Smas
</pre>
200 1 Andreas Smas
201
----
202
203 66 Adam Sutton
h3. getDiskSpace (Added in version 3)
204 58 sbi -
205 66 Adam Sutton
Return diskspace status from Tvheadend's PVR storage
206 1 Andreas Smas
207 66 Adam Sutton
Request message fields:
208
<pre>
209
None
210
</pre>
211 1 Andreas Smas
212 66 Adam Sutton
Reply message fields:
213
<pre>
214
freediskspace      s64   required   Bytes available.
215
totaldiskspace     s64   required   Total capacity.
216
</pre>
217 1 Andreas Smas
218 66 Adam Sutton
h3. getSysTime (Added in version 3)
219 1 Andreas Smas
220 66 Adam Sutton
Return system time on the server.
221
222 1 Andreas Smas
Request message fields:
223
<pre>
224
None
225
</pre>
226
227
Reply message fields:
228 58 sbi -
<pre>
229 66 Adam Sutton
time               s64  required   UNIX time.
230
timezone           s32  required   Minutes west of GMT.
231 1 Andreas Smas
</pre>
232 23 Andreas Smas
233 1 Andreas Smas
----
234
235 66 Adam Sutton
h3. enableAsyncMetadata
236 1 Andreas Smas
237 66 Adam Sutton
When this is enabled the client will get continuous updates from the server about added, update or deleted channels, tags, dvr and epg entries.
238 1 Andreas Smas
239 66 Adam Sutton
An interactive application that presents the user with information about these things should probably enable this and the implement the various server to client methods.
240 1 Andreas Smas
241
Request message fields:
242
<pre>
243 66 Adam Sutton
epg                u32   optional   Set to 1, to include EPG data in async, implied by epgMaxTime (Added in version 6).
244
lastUpdate         s64   optional   Only provide metadata that has changed since this time (Added in version 6).
245
epgMaxTime         s64   optional   Maximum time to return EPG data up to (Added in version 6)
246
language           str   optional   RFC 2616 compatible language list (Added in version 6)
247 1 Andreas Smas
</pre>
248
249
Reply message fields:
250
<pre>
251 66 Adam Sutton
None
252 1 Andreas Smas
</pre>
253
254 66 Adam Sutton
Once the reply as been sent the initial data set will be provided, and then updates will arrive asynchronously after that. The initial data dump is sent using the following messages:
255 1 Andreas Smas
256 66 Adam Sutton
<pre>
257
tagAdd                   optional
258
channelAdd               optional
259
tagUpdate                optional
260
dvrEntryAdd              optional
261
eventAdd                 optional   (Added in version 6)
262
initialSyncComplete      required
263
</pre>
264 1 Andreas Smas
265 66 Adam Sutton
----
266 1 Andreas Smas
267 66 Adam Sutton
h3. getEvent
268 1 Andreas Smas
269 66 Adam Sutton
Request information about the given event. An event typically corresponds to a program on a channel.
270 1 Andreas Smas
271 66 Adam Sutton
The language field in the request allows preference for languages to be requested for the various string fields.
272
273 1 Andreas Smas
Request message fields:
274 45 mdd -
<pre>
275 66 Adam Sutton
eventId            u32   required   Event ID.
276
language           str   optional   RFC 2616 compatible language list (Added in version 6)
277 1 Andreas Smas
</pre>
278
279
Reply message fields:
280
<pre>
281 66 Adam Sutton
see eventAdd
282 1 Andreas Smas
</pre>
283
284 66 Adam Sutton
h3. getEvents (Added in version 4)
285 1 Andreas Smas
286 66 Adam Sutton
Request information about a set of events. If no options are specified the entire EPG database will be returned.
287 57 sbi -
288 58 sbi -
Request message fields:
289 1 Andreas Smas
<pre>
290 66 Adam Sutton
eventId            u32   optional   Event ID to begin from (Optional since version 6)
291
channelId          u32   optional   Channel ID to get data for (Added in version 6)
292
numFollowing       u32   optional   Number of events to add (Optional since version 6)
293
maxTime            u64   optional   Maximum time to return data up to (Added in version 6)
294
language           str   optional   RFC 2616 compatible language list (Added in version 6)
295 1 Andreas Smas
</pre>
296
297
Reply message fields:
298
<pre>
299 66 Adam Sutton
events             msg[] required   List of events, using response message fields from eventAdd
300 1 Andreas Smas
</pre>
301 45 mdd -
302 66 Adam Sutton
h3. epgQuery (Added in version 4)
303 1 Andreas Smas
304 66 Adam Sutton
Query the EPG (event titles) and optionally restrict to channel/tag/content type.
305 1 Andreas Smas
306 66 Adam Sutton
Request message fields:
307
<pre>
308
query              str   required  Title regular expression to search for
309
channelId          u32   optional  [[ChannelId]] to restrict search to
310
tagId              u32   optional  [[TagId]] to restrict search to
311
contentType        u32   optional  DVB content type to restrict search to
312 98 Jaroslav Kysela
minduration        u32   optional  Minimal duration in seconds (Added in version 13)
313
maxduration        u32   optional  Maximal duration in seconds (Added in version 13)
314 66 Adam Sutton
language           str   optional  RFC 2616 compatible language list for title (Added in version 6)
315
full               u32   optional  Output full event list rather than just IDs
316
</pre>
317 1 Andreas Smas
318 66 Adam Sutton
Reply message fields:
319 1 Andreas Smas
320 66 Adam Sutton
if full == 1
321
<pre>
322
events             msg[] optional   List of events, using response message fields from eventAdd
323
</pre>
324
else
325
<pre>
326
eventIds           u32[] optional  List of eventIds that match the query
327
</pre>
328 1 Andreas Smas
329 66 Adam Sutton
h3. getEpgObject
330
331
Get detailed EPG Object info.
332
333 58 sbi -
Request message fields:
334 1 Andreas Smas
<pre>
335 66 Adam Sutton
id                 u32   required  Object ID
336
type               u32   optional  Object type
337 1 Andreas Smas
</pre>
338 58 sbi -
339 1 Andreas Smas
Reply message fields:
340 66 Adam Sutton
341 1 Andreas Smas
<pre>
342 66 Adam Sutton
TODO
343 1 Andreas Smas
</pre>
344
345 58 sbi -
----
346 1 Andreas Smas
347 66 Adam Sutton
h3. addDvrEntry (Added in version 4)
348 1 Andreas Smas
349 66 Adam Sutton
Create a new DVR entry. Either eventId or channelId, start and stop must be specified.
350 1 Andreas Smas
351
Request message fields:
352
<pre>
353 66 Adam Sutton
eventId            u32   optional   Event ID (Optional since version 5).
354
channelId          u32   optional   Channel ID (Added in version 5)
355
start              s64   optional   Time to start recording (Added in version 5)
356
stop               s64   optional   Time to stop recording (Added in version 5)
357 96 Jaroslav Kysela
retention          u32   optional   Retention time in days (Added in version 13)
358 66 Adam Sutton
creator            str   optional   Name of the event creator (Added in version 5)
359
priority           u32   optional   Recording priority (Added in version 5)
360
startExtra         s64   optional   Pre-recording buffer in minutes (Added in version 5)
361
stopExtra          s64   optional   Post-recording buffer in minutes (Added in version 5)
362
title              str   optional   Recording title, if no eventId (Added in version 6)
363
description        str   optional   Recording description, if no eventId (Added in version 5)
364
configName         str   optional   DVR configuration name
365 40 Andreas Smas
</pre>
366 1 Andreas Smas
367
Reply message fields:
368
<pre>
369 66 Adam Sutton
success            u32   required   1 if entry was added, 0 otherwise
370
id                 u32   optional   ID of created DVR entry
371
error              str   optional   English clear text of error message
372 1 Andreas Smas
</pre>
373
374 66 Adam Sutton
h3. updateDvrEntry (Added in version 5)
375 1 Andreas Smas
376 66 Adam Sutton
Update an existing DVR entry.
377 1 Andreas Smas
378
Request message fields:
379
<pre>
380 66 Adam Sutton
id                 u32   required   DVR Entry ID
381
start              s64   optional   New start time
382
stop               s64   optional   New stop time
383
title              str   optional   New entry title
384
description        str   optional   New entry description (Added in version 6)
385
startExtra         s64   optional   New pre-record buffer (Added in version 6)
386
stopExtra          s64   optional   New post-record buffer (Added in version 6)
387
configName         str   optional   New DVR configuration name
388 99 Jaroslav Kysela
retention          u32   optional   Retention in days (Added in version 13)
389
priority           u32   optional   Recording priority (Added in version 13)
390 1 Andreas Smas
</pre>
391
392
Reply message fields:
393
<pre>
394 66 Adam Sutton
success            u32   required   1 if update as successful, otherwise 0
395
error              str   optional   Error message if update failed
396 40 Andreas Smas
</pre>
397
398 66 Adam Sutton
h3. cancelDvrEntry (Added in version 5)
399 1 Andreas Smas
400 66 Adam Sutton
Cancel an existing recording, but don't remove the entry from the database.
401 1 Andreas Smas
402 66 Adam Sutton
Request message fields:
403
<pre>
404
id                 u32   required   dvrEnryId to delete
405
</pre>
406 1 Andreas Smas
407 66 Adam Sutton
Reply message fields:
408
<pre>
409
success            int   required   1 if entry was cancelled
410
error              str   optional   Error message if cancellation failed
411
</pre>
412 1 Andreas Smas
413 66 Adam Sutton
h3. deleteDvrEntry (Added in version 4)
414
415
Delete an existing DVR entry from the database.
416
417
Request message fields:
418 1 Andreas Smas
<pre>
419 66 Adam Sutton
id                 u32   required   DVR Entry ID
420 1 Andreas Smas
</pre>
421
422 11 Andreas Smas
Reply message fields:
423 1 Andreas Smas
<pre>
424 66 Adam Sutton
success            u32   required   1 if entry was removed
425
error              str   optional   Error message if the delete fails
426 1 Andreas Smas
</pre>
427
428 91 Jaroslav Kysela
h3. addAutorecEntry (Added in version 13)
429
430
Create a new Autorec DVR entry. Title must be specified.
431
432
Request message fields:
433
<pre>
434
title              str   required   Title for the recordings.
435
configName         str   optional   DVR Configuration Name / UUID.
436
channelId          u32   optional   Channel ID.
437
minDuration        u32   optional   Minimal duration in seconds (0 = Any).
438
maxDuration        u32   optional   Maximal duration in seconds (0 = Any).
439
daysOfWeek         u32   optional   Bitmask - Days of week (0x01 = Monday, 0x40 = Sunday, 0x7f = Whole Week, 0 = Not set).
440
priority           u32   optional   Priority (0 = Important, 1 = High, 2 = Normal, 3 = Low, 4 = Unimportant, 5 = Not set).
441
approxTime         u32   optional   Minutes from midnight (up to 24*60).
442
startExtra         s64   optional   Extra start minutes (pre-time).
443
stopExtra          s64   optional   Extra stop minutes (post-time).
444
comment            str   optional   User Comment.
445
</pre>
446
447
Reply message fields:
448
<pre>
449
success            u32   required   1 if entry was added, 0 otherwise
450 93 Jaroslav Kysela
id                 str   optional   ID (string!) of created autorec DVR entry
451 91 Jaroslav Kysela
error              str   optional   English clear text of error message
452
</pre>
453
454
h3. deleteAutorecEntry (Added in version 13)
455
456
Delete an existing autorec DVR entry from the database.
457
458
Request message fields:
459
<pre>
460 94 Jaroslav Kysela
id                 str   required   Autorec DVR Entry ID (string!)
461 91 Jaroslav Kysela
</pre>
462
463
Reply message fields:
464
<pre>
465
success            u32   required   1 if entry was removed
466
error              str   optional   Error message if the delete fails
467
</pre>
468
469 83 Jaroslav Kysela
h3. getDvrCutpoints (Added in version 12)
470
471
Get DVR cutpoints.
472
473
Request message fields:
474
<pre>
475
id                 u32   required   DVR Entry ID
476
</pre>
477
478
Reply message fields:
479
<pre>
480
cutpoints          msg[] optional   List of cutpoint entries, if a file is found and has some valid data.
481
</pre>
482
483
Cutpoint fields:
484
<pre>
485
start              u32   required   Cut start time in ms.
486
end                u32   required   Cut end time in ms.
487
type               u32   required   Action type: 
488
                                      0=Cut, 1=Mute, 2=Scene, 
489
                                      3=Commercial break.
490
</pre>
491
492 1 Andreas Smas
----
493
494 66 Adam Sutton
h3. getTicket (Added in version 5)
495 1 Andreas Smas
496 66 Adam Sutton
Get a ticket to allow access to a channel or recording via HTTP
497 1 Andreas Smas
498 66 Adam Sutton
Request message fields:
499 1 Andreas Smas
<pre>
500 66 Adam Sutton
channelId          u32  optional   Channel to gain access for
501
dvrId              u32  optional   DVR file to gain access for
502 1 Andreas Smas
</pre>
503
504
Reply message fields:
505
<pre>
506 66 Adam Sutton
path               str  required   The full path for access URL (no scheme, host or port)
507
ticket             str  required   The ticket to pass in the URL query string
508 1 Andreas Smas
</pre>
509
510 66 Adam Sutton
h3. subscribe
511 1 Andreas Smas
512 66 Adam Sutton
Request subscription to the given channel. 
513 1 Andreas Smas
514 66 Adam Sutton
Request message fields:
515
<pre>
516
channelId          u32   required   ID for channel. 
517
subscriptionId     u32   required   Subscription ID. Selected by client. This value is not interpreted by the server in any form. 
518
                                    The value is used from now on in all messages related to the subscription.
519 1 Andreas Smas
weight             u32   optional   Weighting of this subscription (same as recording priority).
520 73 Adam Sutton
90khz              u32   optional   Request PTS/DTS in default 90kHz timebase, default is 1MHz (Added in version 7)
521
normts             u32   optional   Request PTS/DTS normalisation (Added in version 7)
522
                                    Note: this will mean missing timestamps are added, first packet should be ~0 and will always be an i-frame.
523
                                    Note: this is implied if timeshiftPeriod is enabled
524
queueDepth         u32   optional   Change the default packet queue lengths, default 500000 bytes (Added in version 7)
525
                                    Note: I-frame depth is 3*queueDepth, P-frame is 2*queueDepth and B-frame is queueDepth
526
timeshiftPeriod    u32   optional   The number of seconds to keep in the timeshift buffer (Added in version 9)
527
                                    Note: this may be bounded by server configuration settings
528 11 Andreas Smas
</pre>
529 66 Adam Sutton
530 1 Andreas Smas
Reply message fields:
531
<pre>
532 73 Adam Sutton
90khz              u32   optional   Indicates 90khz timestamps will be used
533
normts             u32   optional   Indicates timestamps will be normalised (and fixed)
534
timeshiftPeriod    u32   optional   The actual timeshiftPeriod to be used
535 66 Adam Sutton
</pre>
536 1 Andreas Smas
537 66 Adam Sutton
h3. unsubscribe
538
539
Stop a subscription.
540
541
Request message fields:
542 1 Andreas Smas
<pre>
543 66 Adam Sutton
subscriptionId     u32   required   Subscription ID.
544 58 sbi -
</pre>
545
546 11 Andreas Smas
Reply message fields:
547 1 Andreas Smas
<pre>
548 66 Adam Sutton
None
549 58 sbi -
</pre>
550 11 Andreas Smas
551 66 Adam Sutton
h3. subscriptionChangeWeight (Added in version 5)
552 1 Andreas Smas
553 66 Adam Sutton
Change the weight of an existing subscription
554 1 Andreas Smas
555 66 Adam Sutton
Request message fields:
556
<pre>
557
subscriptionId     u32   required   Subscription ID.
558
weight             u32   optional   The new subscription weight.
559 1 Andreas Smas
</pre>
560
561
Reply message fields:
562
<pre>
563 69 Adam Sutton
None
564 1 Andreas Smas
</pre>
565
566 73 Adam Sutton
h3. subscriptionSkip (Added in version 9)
567
568
Skip a timeshift enabled subscription. The response will be asynchronous subscriptionSkip().
569
570
Request message fields:
571
<pre>
572
subscriptionId     u32   required   Subscription ID.
573
absolute           u32   optional   The skip request is absolute
574
time               u64   optional   Specify skip using time (units are as for PTS)
575
size               u64   optional   Specify skip using size (Not currently used)
576
</pre>
577
578
Reply message fields:
579
<pre>
580
None
581
</pre>
582
583
h3. subscriptionSeek (Added in version 9)
584
585
Synonym for subscriptionSkip
586
587
h3. subscriptionSpeed (Added in version 9)
588
589
Set the playback speed for the subscription. The response will be asynchronous subscriptionSpeed().
590
591
Request message fields:
592
<pre>
593
subscriptionId     u32   required   Subscription ID.
594
speed              u32   required   Specify speed (0=pause, 100=1x fwd, -100=1x backward)
595
</pre>
596
597
Reply message fields:
598
<pre>
599
None
600
</pre>
601
602
h3. subscriptionLive (Added in version 9)
603
604
Return a timeshifted session to live. Reply will be asynchronous subscriptionSkip().
605
606
Request message fields:
607
<pre>
608
subscriptionId     u32   required   Subscription ID.
609
</pre>
610
611
Reply message fields:
612
<pre>
613
None
614 82 Jaroslav Kysela
</pre>
615 1 Andreas Smas
616 83 Jaroslav Kysela
h3. subscriptionFilterStream (Added in version 12)
617 1 Andreas Smas
618 83 Jaroslav Kysela
Enable or disable specified streams by index.
619
620
Request message fields:
621
<pre>
622
subscriptionId     u32        required   Subscription ID.
623
enable             list[u32]  optional   Enable stream indexes
624
disable            list[u32]  optional   Disable (filter out) stream indexes
625
</pre>
626
627
Reply message fields:
628
<pre>
629
None
630
</pre>
631
632
h3. getCodecs (Added in version 11, Removed in version 16)
633
634 82 Jaroslav Kysela
Return a list of encoders (codecs).
635
636 1 Andreas Smas
Reply message fields:
637 82 Jaroslav Kysela
<pre>
638 83 Jaroslav Kysela
encoders           list[str]  optional   Supported encoders
639 82 Jaroslav Kysela
</pre>
640
641 70 Adam Sutton
h3. fileOpen (Added in version 8)
642 69 Adam Sutton
643
Open a file within the Tvheadend file system. This is now the preferred method (in place of HTTP) for accessing recordings.
644
645
Accessing recordings via HTSP will overcome the limitations of standard HTTP streaming which cannot handle both skipping and growing files (i.e. in-progress recordings) at the same time.
646
647 1 Andreas Smas
Request message fields:
648 69 Adam Sutton
<pre>
649 70 Adam Sutton
file               str   required   File path to open
650 1 Andreas Smas
</pre>
651
652 70 Adam Sutton
Valid file paths:
653
<pre>
654
/dvrfile/ID        will open the file associated with DVR entry ID
655 74 Adam Sutton
/imagecache/ID     will open the file associated with imagecache entry ID (Note: only works for HTSPv10+)
656 70 Adam Sutton
</pre>
657
658 69 Adam Sutton
Reply message fields:
659
<pre>
660
id                 u32   required   The file handle used for further file operations
661
size               u64   optional   The size of the file in bytes
662 1 Andreas Smas
mtime              u64   optional   The last time the file was modified
663 69 Adam Sutton
</pre>
664
665 70 Adam Sutton
h3. fileRead (Added in version 8)
666 69 Adam Sutton
667 1 Andreas Smas
Read data from a file.
668
669 69 Adam Sutton
Request message fields:
670
<pre>
671
id                 u32   required   The file handle used for further file operations
672 70 Adam Sutton
size               u64   required   The amount of data to read
673
offset             u64   optional   Offset into the file to read (default is current position)
674 69 Adam Sutton
</pre>
675 1 Andreas Smas
676 69 Adam Sutton
Reply message fields:
677
<pre>
678
data               bin   required   The data read from the file (size may be less than requested)
679
</pre>
680
681 70 Adam Sutton
h3. fileClose (Added in version 8)
682 69 Adam Sutton
683
Close an opened file.
684
685
Request message fields:
686
<pre>
687 1 Andreas Smas
id                 u32   required   The file handle to be closed
688 69 Adam Sutton
</pre>
689
690
Reply message fields:
691
<pre>
692
None
693
</pre>
694 70 Adam Sutton
695 69 Adam Sutton
h3. fileStat (Added in version 8)
696
697
Get status of a file.
698
699
Request message fields:
700
<pre>
701
id                 u32   required   The file handle to be stat'd
702 1 Andreas Smas
</pre>
703
704
Reply message fields:
705
<pre>
706
size               u64   optional   The size of the file in bytes
707
mtime              u64   optional   The last time the file was modified
708
</pre>
709 70 Adam Sutton
710
h3. fileSeek (Added in version 8)
711
712
Seek to position in a file.
713
714
Request message fields:
715
<pre>
716
id                 u32   required   The file handle to be stat'd
717
offset             u64   required   The position to seek in the file
718
whence             str   required   Where to seek relative to (default=SEEK_SET)
719
</pre>
720
721
Note: valid values for whence
722
<pre>
723
SEEK_SET           Seek relative to start of file
724
SEEK_CUR           Seek relative to current position in file
725 72 Adam Sutton
SEEK_END           Seek relative (backwards) to end of file
726 70 Adam Sutton
</pre>
727
728
Reply message fields:
729
<pre>
730
offset             u64   optional   The new absolute position within the file
731
</pre>
732 66 Adam Sutton
733 1 Andreas Smas
h1. Server to Client methods
734
735
----
736
737
h3. channelAdd
738
739
A new channel has been created on the server.
740
741
Message fields:
742
<pre>
743
channelId          u32   required   ID of channel.
744 66 Adam Sutton
channelNumber      u32   required   Channel number, 0 means unconfigured.
745 90 Jaroslav Kysela
channelNumberMinor u32   optional   Minor channel number (Added in version 13).
746 1 Andreas Smas
channelName        str   required   Name of channel.
747 70 Adam Sutton
channelIcon        str   optional   URL to an icon representative for the channel
748
                                    (For v8+ clients this could be a relative /imagecache/ID URL
749 73 Adam Sutton
                                     intended to be fed to fileOpen() or HTTP server)
750 66 Adam Sutton
eventId            u32   optional   ID of the current event on this channel.
751
nextEventId        u32   optional   ID of the next event on the channel.
752
tags               u32[] optional   Tags this channel is mapped to.
753
services           msg[] optional   List of available services (Added in version 5)
754 13 Andreas Smas
</pre>
755 1 Andreas Smas
756 66 Adam Sutton
Service fields:
757 1 Andreas Smas
<pre>
758 66 Adam Sutton
name               str   required   Service name
759
type               str   required   Service type
760
caid               u32   optional   Encryption CA ID
761
caname             str   optional   Encryption CA name
762 11 Andreas Smas
</pre>
763 1 Andreas Smas
764 66 Adam Sutton
h3. channelUpdate
765 11 Andreas Smas
766 66 Adam Sutton
Same as channelAdd, but all fields (except channelId) are optional.
767
768 58 sbi -
h3. channelDelete
769 1 Andreas Smas
770
A channel has been deleted on the server.
771 58 sbi -
772
Message fields:
773 1 Andreas Smas
<pre>
774 66 Adam Sutton
channelId          u32   required   ID of channel.
775 1 Andreas Smas
</pre>
776
777
----
778
779
h3. tagAdd
780 11 Andreas Smas
781 1 Andreas Smas
A new tag has been created on the server.
782
783
Message fields:
784
<pre>
785 66 Adam Sutton
tagId              u32   required   ID of tag.
786
tagName            str   required   Name of tag.
787
tagIcon            str   optional   URL to an icon representative for the channel.
788
tagTitledIcon      u32   optional   Icon includes a title
789
members            u32[] optional   Channel IDs of those that belong to the tag
790 1 Andreas Smas
</pre>
791 11 Andreas Smas
792 39 elupus -
h3. tagUpdate
793 58 sbi -
794 66 Adam Sutton
Same as tagAdd, but all fields (except tagId) are optional.
795 11 Andreas Smas
796
h3. tagDelete
797 1 Andreas Smas
798 58 sbi -
A tag has been deleted from the server.
799 1 Andreas Smas
800
Message fields:
801
<pre>
802 66 Adam Sutton
tagId              u32   required   ID of tag.
803 58 sbi -
</pre>
804
805 12 Andreas Smas
----
806 1 Andreas Smas
807 66 Adam Sutton
h3. dvrEntryAdd (Added in version 4)
808 58 sbi -
809 1 Andreas Smas
A new recording has been created on the server.
810 58 sbi -
811 1 Andreas Smas
Message fields:
812 2 Andreas Smas
<pre>
813 66 Adam Sutton
id                 u32   required   ID of dvrEntry.
814
channel            u32   required   Channel of dvrEntry.
815
start              s64   required   Time of when this entry was scheduled to start recording.
816
stop               s64   required   Time of when this entry was scheduled to stop recording.
817 89 Jaroslav Kysela
startExtra         s64   required   Extra start time (pre-time) in minutes (Added in version 13).
818
stopExtra          s64   required   Extra stop time (post-time) in minutes (Added in version 13).
819
retention          s64   required   DVR Entry retention time in days.
820
priority           u32   required   Priority (0 = Important, 1 = High, 2 = Normal, 3 = Low, 4 = Unimportant, 5 = Not set) (Added in version 13).
821
eventId            u32   optional   Associated EPG Event ID (Added in version 13).
822
autorecId          u32   optional   Associated Autorec ID (Added in version 13).
823
contentType        u32   optional   Content Type (like in the DVB standard) (Added in version 13).
824 66 Adam Sutton
title              str   optional   Title of recording
825
summary            str   optional   Short description of the recording (Added in version 6).
826
description        str   optional   Long description of the recording.
827
state              str   required   Recording state
828
error              str   optional   Plain english error description (e.g. "Aborted by user").
829 48 mdd -
</pre>
830 1 Andreas Smas
831 66 Adam Sutton
TODO: recording states
832 48 mdd -
833
h3. dvrEntryUpdate
834
835 66 Adam Sutton
Message fields:
836
<pre>
837
Same as dvrEntryAdd, but all fields (except id) are optional.
838
</pre>
839 51 elupus -
840 66 Adam Sutton
h3. dvrEntryDelete (Added in version 4)
841 58 sbi -
842 66 Adam Sutton
A recording has been deleted from the server.
843 58 sbi -
844 48 mdd -
Message fields:
845
<pre>
846 66 Adam Sutton
id                 u32   required   ID of recording to delete.
847 1 Andreas Smas
</pre>
848 48 mdd -
849 58 sbi -
----
850 48 mdd -
851 95 Jaroslav Kysela
h3. autorecEntryAdd (Added in version 13)
852
853
A new autorec recording has been created on the server.
854
855
Message fields:
856
<pre>
857
id                 str   required   ID (string!) of dvrAutorecEntry.
858
enabled            u32   required   If autorec entry is enabled (activated).
859
minDuration        u32   required   Minimal duration in seconds (0 = Any).
860
maxDuration        u32   required   Maximal duration in seconds (0 = Any).
861
retention          u32   required   Retention time (in days).
862
daysOfWeek         u32   required   Bitmask - Days of week (0x01 = Monday, 0x40 = Sunday, 0x7f = Whole Week, 0 = Not set).
863
priority           u32   required   Priority (0 = Important, 1 = High, 2 = Normal, 3 = Low, 4 = Unimportant, 5 = Not set).
864
approxTime         u32   required   Minutes from midnight (up to 24*60).
865
startExtra         s64   required   Extra start minutes (pre-time).
866
stopExtra          s64   required   Extra stop minutes (post-time).
867
title              str   optional   Title.
868
channel            u32   optional   Channel ID.
869
</pre>
870
871
h3. autorecEntryUpdate (Added in version 13)
872
873
Message fields:
874
<pre>
875
Same as autorecEntryUpdate but all fields (except id) are optional.
876
</pre>
877
878
h3. autorecEntryDelete (Added in version 13)
879
880
Message fields:
881
<pre>
882
id                 str   required   Autorec Entry ID (string!)
883
</pre>
884
885
----
886
887 66 Adam Sutton
h3. eventAdd (Added in version 6)
888 48 mdd -
889 66 Adam Sutton
Message fields:
890
<pre>
891
eventId            u32   required   Event ID
892
channelId          u32   required   The channel this event is related to.
893
start              u64   required   Start time of event, UNIX time.
894
stop               u64   required   Ending time of event, UNIX time.
895
title              str   optional   Title of event.
896
summary            str   optional   Short description of the event (Added in version 6).
897
description        str   optional   Long description of the event.
898
serieslinkId       u32   optional   Series Link ID (Added in version 6).
899
episodeId          u32   optional   Episode ID (Added in version 6).
900
seasonId           u32   optional   Season ID (Added in version 6).
901
brandId            u32   optional   Brand ID (Added in version 6).
902
contentType        u32   optional   DVB content code (Added in version 4, Modified in version 6*).
903
ageRating          u32   optional   Minimum age rating (Added in version 6).
904
starRating         u32   optional   Star rating (1-5) (Added in version 6).
905
firstAired         s64   optional   Original broadcast time, UNIX time (Added in version 6).
906
seasonNumber       u32   optional   Season number (Added in version 6).
907
seasonCount        u32   optional   Show season count (Added in version 6).
908
episodeNumber      u32   optional   Episode number (Added in version 6).
909
episodeCount       u32   optional   Season episode count (Added in version 6).
910
partNumber         u32   optional   Multi-part episode part number (Added in version 6).
911
partCount          u32   optional   Multi-part episode part count (Added in version 6).
912
episodeOnscreen    str   optional   Textual representation of episode number (Added in version 6).
913
image              str   optional   URL to a still capture from the episode (Added in version 6).
914
dvrId              u32   optional   ID of a recording (Added in version 5).
915
nextEventId        u32   optional   ID of next event on the same channel.
916
</pre>
917 48 mdd -
918 66 Adam Sutton
* *contentType previously had the major DVB category in the bottom 4 bits, 
919
  however in v6 this has been changed to properly match DVB, so top 4 bits
920
  as major category and bottom 4 bits has sub-category. Clients requesting
921
  v5 or lower will get the old output.
922 48 mdd -
923 66 Adam Sutton
h3. eventUpdate (Added in version 6)
924 35 Andreas Smas
925 58 sbi -
Message fields:
926
<pre>
927 66 Adam Sutton
Same as eventAdd but all fields (except eventId) are optional.
928 35 Andreas Smas
</pre>
929 58 sbi -
930 77 John Törnblom
h3. eventDelete (Added in version 6)
931 35 Andreas Smas
932 66 Adam Sutton
Message fields:
933
<pre>
934
eventId            u32   required   Event ID
935
</pre>
936 14 Andreas Smas
937 66 Adam Sutton
---
938 14 Andreas Smas
939 66 Adam Sutton
h3. initialSyncCompleted (Added in version 2)
940 14 Andreas Smas
941 66 Adam Sutton
Sent after all the initial metadata has been sent when session has been set to async mode.
942 38 Andreas Smas
943
Message fields:
944 14 Andreas Smas
<pre>
945
</pre>
946
947
----
948
949
h3. subscriptionStart
950 53 Andreas Smas
951 66 Adam Sutton
Asynchronous message output when a new subscription is successfully started.
952 14 Andreas Smas
953
Message fields:
954 1 Andreas Smas
<pre>
955 66 Adam Sutton
subscriptionId     u32   required   Subscription ID.
956
streams            msg[] required   Array of messages with stream information
957
sourceinfo         msg   optional   Source information.
958
</pre>
959 37 Andreas Smas
960 66 Adam Sutton
Stream message fields:
961
<pre>
962
index              u32   required   Index for this stream
963
type               str   required   Type of stream
964 80 Jaroslav Kysela
meta               bin   optional   Codec metadata (private data) (Added in version 17)
965 66 Adam Sutton
language           str   optional   Language for stream
966
Video components only:
967
width              u32   optional   Width of video in pixels
968
height             u32   optional   Height of video in pixels
969 68 Andreas Smas
aspect_num         u32   optional   Aspect ratio numerator (Added in version 5) *Can be incorrect and should not be relied upon*
970
aspect_den         u32   optional   Aspect ratio denonminator (Added in version 5) *Can be incorrect and should not be relied upon*
971 66 Adam Sutton
Audio components only:
972 76 Dave Chapman
audio_type         u32   optional   Audio type - 0=Normal; 1=Clean effects; 2=Hearing impaired; 3=Visually impaired commentary; 4-255=Reserved (Added in version 11)
973 66 Adam Sutton
channels           u32   optional   Number of audio channels (Added in version 5)
974
rate               u32   optional   Audio bitrate (Added in version 5)
975
Subtitle components only:
976
composition_id     u32   optional   ??? (Added in version 5)
977
ancillary_id       u32   optional   ??? (Added in version 5)
978
</pre>
979 2 Andreas Smas
980 66 Adam Sutton
Sourceinfo message fields:
981
<pre>
982
adapter            str   optional   Adapter name
983
mux                str   optional   Transponder name
984
network            str   optional   Network name
985
provider           str   optional   ???
986
service            str   optional   Service name
987
</pre>
988 15 Andreas Smas
989 66 Adam Sutton
Video Stream types:
990 1 Andreas Smas
<pre>
991 79 Jaroslav Kysela
MPEG2VIDEO                    MPEG2 video, meta field is present (configuration blocks)
992
H264                          H264 video, meta field is present (configuration blocks)
993
HEVC                          HEVC video, meta field is present (configuration blocks)
994 66 Adam Sutton
</pre>
995 15 Andreas Smas
996 1 Andreas Smas
Audio Stream types:
997
<pre>
998 66 Adam Sutton
MPEG2AUDIO                    MPEG2 audio (MP2)
999
AC3                           AC3 audio
1000 79 Jaroslav Kysela
AAC                           ADTS framed AAC (one AAC packet per ADTS frame), meta field is present (MPEG4 config)
1001 66 Adam Sutton
EAC3                          Enhanced AC3 audio
1002 79 Jaroslav Kysela
VORBIS                        Vorbis audio, meta field is present with the main vorbis header
1003 16 Andreas Smas
</pre>
1004
1005 66 Adam Sutton
Subtitle Stream types:
1006
<pre>
1007
TELETEXT                      ???
1008
DVBSUB                        ???
1009
</pre>
1010 55 Lars Op den Kamp -
1011
h3. subscriptionStop
1012
1013 66 Adam Sutton
A subscription has been stopped.
1014 55 Lars Op den Kamp -
1015
Message fields:
1016
<pre>
1017 66 Adam Sutton
subscriptionId     u32   required   Subscription ID.
1018 1 Andreas Smas
status             str   optional   Error message if subscription stopped unexpectedly.
1019
</pre>
1020
1021 73 Adam Sutton
h3. subscriptionSkip (Added version 9)
1022
1023
A subscription has been skipped.
1024
1025
Message fields:
1026
<pre>
1027
subscriptionId     u32   required   Subscription ID.
1028
error              u32   optional   The last skip command caused an error.
1029
absolute           u32   optional   Indicates the output is absolute (Note: should always be 1 at the moment)
1030
time               u64   optional   The time the subscription has skipped to.
1031
size               u64   optional   The position in the file we've skipped to (Note: not currently used).
1032
</pre>
1033
1034
h3. subscriptionSpeed (Added version 9)
1035
1036
A subscription's playback speed has changed.
1037
1038
This can happen even without a speed request, should playback reach either end of the buffer.
1039
1040
Message fields:
1041
<pre>
1042
subscriptionId     u32   required   Subscription ID.
1043
speed              u32   required   The new speed of the subscription
1044
</pre>
1045
1046 55 Lars Op den Kamp -
h3. subscriptionStatus
1047
1048 66 Adam Sutton
Subscription status update.
1049 58 sbi -
1050
Message fields:
1051
<pre>
1052 66 Adam Sutton
subscriptionId     u32   required   Subscription ID.
1053
status             str   optional   English clear text of error status. Absence of this field means that the status is OK. 
1054 16 Andreas Smas
</pre>
1055 58 sbi -
1056 16 Andreas Smas
h3. queueStatus
1057
1058 1 Andreas Smas
The queueStatus message is sent every second during normal data delivery.
1059 60 John Törnblom
1060
The transmit scheduler have different drop thresholds for different frame types.
1061 66 Adam Sutton
1062 1 Andreas Smas
If congestion occurs it will favor dropping B-frames before P-frames before I-frames.
1063
All audio is recognized as I-frames. 
1064 58 sbi -
1065 1 Andreas Smas
Message fields:
1066
<pre>
1067 66 Adam Sutton
subscriptionId     u32   required   Subscription ID.
1068
packets            u32   required   Number of data packets in queue.
1069
bytes              u32   required   Number of bytes in queue.
1070
delay              u32   optional   Estimated delay of queue (in µs).
1071 1 Andreas Smas
Bdrops             u32   required   Number of B-frames dropped
1072 66 Adam Sutton
Pdrops             u32   required   Number of P-frames dropped
1073
Idrops             u32   required   Number of I-frames dropped
1074 73 Adam Sutton
delay              s64   required   Delta between first and last DTS (Added in version 9)
1075 1 Andreas Smas
</pre>
1076
1077
h3. signalStatus
1078
1079
The signalStatus message is sent every second during normal data delivery.
1080
1081
The optional fields may not have been implemented or may not be supported by the active adapter.
1082
1083
Message fields:
1084
<pre>
1085 66 Adam Sutton
subscriptionId     u32   required   Subscription ID.
1086
feStatus           str   required   Frontend status.
1087
feSNR              u32   optional   Signal to noise ratio.
1088 1 Andreas Smas
feSignal           u32   optional   Signal status percentage.
1089
feBER              u32   optional   Bit error rate.
1090
feUNC              u32   optional   Uncorrected blocks.
1091 73 Adam Sutton
</pre>
1092
1093
h3. timeshiftStatus
1094
1095
Provide status every second about the timeshift buffer.
1096
1097
Message fields:
1098
<pre>
1099
subscriptionId     u32   required   Subscription ID.
1100
full               u32   required   Indicates whether the buffer is full
1101
shift              s64   required   Current position relative to live
1102
start              s64   optional   PTS of the first frame in the buffer
1103
end                s64   optional   PTS of the last frame in the buffer
1104 1 Andreas Smas
</pre>
1105
1106
h3. muxpkt
1107
1108
Streaming data.
1109
1110
Message fields:
1111
<pre>
1112 66 Adam Sutton
subscriptionId     u32   required   Subscription ID.
1113
frametype          u32   required   Type of frame as ASCII value: 'I', 'P', 'B'
1114
stream             u32   required   Stream index. Corresponds to the streams reported in the subscriptionStart message.
1115
dts                s64   optional   Decode Time Stamp in µs.
1116
pts                s64   optional   Presentation Time Stamp in µs.
1117
duration           u32   required   Duration of frame in µs.
1118
payload            bin   required   Actual frame data.
1119 1 Andreas Smas
</pre>
1120 81 Jaroslav Kysela
1121
Note: From protocol version 17, the H264 payload does not contain the H264 configuration blocks (they are only in the meta field - see start message).