blob: 51eb82bef01a413cf4f915aca9065c4961509c8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
package de.bjusystems.vdrmanager.data;
public class Vdr {
/**
* Use secure channel
*/
private boolean secure;
/** SVDRP host name or ip */
private String host;
/** SVDRP port */
private int port;
/** Password */
private String password;
/** should channels be filtered? */
private boolean filterChannels;
/** last channel to retrieve */
private String channelFilter;
/** Enable remote wakeup */
private boolean wakeupEnabled;
/** URL of the wakeup script */
private String wakeupUrl;
/** User for wakeup */
private String wakeupUser;
/** Password for wakeup */
private String wakeupPassword;
/**
* vdr mac for wol
*
* @since 0.2
*/
private String mac;
/**
* which wakeup method to use
*
* @since 0.2
*
*/
private String wakeupMethod;
/** Check for running VDR is enabled */
private boolean aliveCheckEnabled;
/** Intervall for alive test */
private int aliveCheckInterval;
/** Buffer before event */
private int timerPreMargin;
/** Buffer after event */
private int timerPostMargin;
/** Default priority */
private int timerDefaultPriority;
/** Default lifetime */
private int timerDefaultLifetime;
/** user defined epg search times */
private String epgSearchTimes;
/**
* Which port to use for streaming
*
* @since 0.2
*/
private int streamPort = 3000;
/**
* Which format to use for streaming
*
* @since 0.2
*/
private String streamFormat = "TS";
/**
* Do not send broadcasts, send directly to the host (router problem)
*
* @since 0.2
*/
private String wolCustomBroadcast = "";
/**
* Use remux ?
*/
private boolean enableRemux;
/**
* Remux command
*/
private String remuxCommand;
/**
* Remux command Parameter
*/
private String remuxParameter;
}
|