-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathindex.js
executable file
·269 lines (265 loc) · 8.92 KB
/
index.js
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
var events = require('events');
var eventEmitter = new events.EventEmitter();
var omx_dbus = require('./lib/omxp_dbus');
//TODO fix this to make user independent
omx_dbus.on('changeStatus', function(status) {
eventEmitter.emit('changeStatus', status);
var diff = status.duration - status.pos;
if (diff > 2000000 && diff < 7000000){
eventEmitter.emit('aboutToFinish');
}
});
omx_dbus.on('finish', function() {
eventEmitter.emit('finish');
});
/**
* Open OmxPlayer, with the given parameter
*
* @path {String} The file or folder path
* @options {Object} The options available
*/
module.exports = eventEmitter;
module.exports.open = omx_dbus.openPlayer;
module.exports.playPause = function(cb) { //checked
omx_dbus.method('PlayPause', function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
};
module.exports.pause = function(cb) { //checked IDEM playPause
omx_dbus.method('Pause', function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
};
module.exports.stop = function(cb) { //checked IDEM Stop
omx_dbus.method('Stop', function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
};
module.exports.stop = function(cb) { //checked IDEM Stop
omx_dbus.method('Stop', function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
};
module.exports.getStatus = function(cb) { //checked
omx_dbus.propertyRead('PlaybackStatus', function(err, status) {
cb(err, status);
});
};
module.exports.getDuration = function(cb) { //checked
omx_dbus.propertyRead('Duration', function(err, status) {
cb(err, status);
});
};
module.exports.getPosition = function(cb) { //checked
omx_dbus.propertyRead('Position', function(err, pos) {
cb(err, Math.round(pos / 10000));
});
};
module.exports.setPosition = function(pos, cb) { //checked
pos = pos * 10000;
omx_dbus.method('SetPosition', ['/not/used', pos], function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
};
module.exports.seek = function(offset, cb) { //checked
omx_dbus.method('Seek', [offset], function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
};
module.exports.listAudio = function(cb) { //checked
omx_dbus.method('ListAudio', function(err, audioStreams) {
cb(err, audioStreams);
});
};
module.exports.selectAudio = function(audioStreamId, cb) { //checked
omx_dbus.method('SelectAudio', [audioStreamId], function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
};
module.exports.nextAudio = function(cb) { //checked
omx_dbus.method('Action', [7], function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
};
module.exports.listAudio = function(cb) { //checked
omx_dbus.method('ListAudio', function(err, audioStreams) {
cb(err, audioStreams);
});
};
module.exports.selectAudio = function(audioStreamId, cb) { //checked
omx_dbus.method('SelectAudio', [audioStreamId], function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
};
module.exports.nextAudio = function(cb) { //checked
omx_dbus.method('Action', [7], function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
};
module.exports.previousAudio = function(cb) { //checked
omx_dbus.method('Action', [6], function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
};
module.exports.getVolume = function(cb) { //checked
omx_dbus.propertyRead('Volume', function(err, vol) {
cb(err, vol);
});
};
module.exports.getVolume = function(cb) { //checked
omx_dbus.propertyRead('Volume', function(err, vol) {
cb(err, vol);
});
};
module.exports.setVolume = function(vol, cb) { //checked *not oficially but Working
if (vol <= 1.0 && vol >= 0.0) {
omx_dbus.setVolume(vol, function(err, resp) {
return typeof cb === 'function' ? cb(err, resp) : {};
});
} else {
return cb(new Error('Volume should be between 0.0 - 1.0'));
}
};
module.exports.volumeUp = function(cb) { //checked
omx_dbus.method('Action', [18], function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
};
module.exports.volumeDown = function(cb) { //checked
omx_dbus.method('Action', [17], function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
};
module.exports.listSubtitles = function(cb) { //checked
omx_dbus.method('ListSubtitles', function(err, subtitleStreams) {
cb(err, subtitleStreams);
});
};
module.exports.listSubtitles = function(cb) { //checked
omx_dbus.method('ListSubtitles', function(err, subtitleStreams) {
cb(err, subtitleStreams);
});
};
module.exports.toggleSubtitles = function(cb) { //checked not tested (I have no subtitles)
omx_dbus.method('Action', [12], function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
};
module.exports.nextSubtitle = function(cb) { //checked
omx_dbus.method('Action', [11], function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
};
module.exports.nextSubtitle = function(cb) { //checked
omx_dbus.method('Action', [11], function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
};
module.exports.previousSubtitle = function(cb) { //checked
omx_dbus.method('Action', [10], function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
};
module.exports.previousSubtitle = function(cb) { //checked
omx_dbus.method('Action', [10], function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
};
module.exports.hideSubtitles = function(cb) { //checked not tested (I have no subtitles)
omx_dbus.method('Action', [30], function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
};
module.exports.showSubtitles = function(cb) { //checked not tested (I have no subtitles)
omx_dbus.method('Action', [31], function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
};
module.exports.setAlpha = function(alpha, cb) { //checked
if (alpha >= 0 && alpha <= 255) {
omx_dbus.method('SetAlpha', ['/not/used', alpha], function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
} else {
return cb(new Error('Alpha should be between 0 - 255'));
}
};
module.exports.setVideoPos = function(x1, y1, x2, y2, cb) { //checked
var vidPos = x1.toString() + ' ' + y1.toString() + ' ' + x2.toString() + ' ' + y2.toString();
omx_dbus.method('VideoPos', ['/not/used', vidPos], function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
};
module.exports.setVideoCropPos = function(x1, y1, x2, y2, cb) { //checked
var vidPos = x1.toString() + ' ' + y1.toString() + ' ' + x2.toString() + ' ' + y2.toString();
omx_dbus.method('SetVideoCropPos', ['/not/used', vidPos], function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
};
module.exports.setAspectMode = function(aspect, cb) { //checked
var available_aspects = ['letterbox', 'fill', 'stretch', 'default'];
if (available_aspects.indexOf(aspect) > -1) {
omx_dbus.method('SetAspectMode', ['/not/used', aspect], function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
} else {
throw new Error('Not an available aspect use one of: ' + available_aspects.join(','));
}
};
module.exports.hideVideo = function(cb) { //checked
omx_dbus.method('Action', [28], function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
};
module.exports.unhideVideo = function(cb) { //checked
omx_dbus.method('Action', [29], function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
};
module.exports.getSource = function(cb) { //checked
omx_dbus.propertyRead('GetSource', function(err, vol) {
cb(err, vol);
});
};
module.exports.getMinRate = function(cb) { //checked
omx_dbus.propertyRead('MinimumRate', function(err, vol) {
cb(err, vol);
});
};
module.exports.getMaxRate = function(cb) { //checked
omx_dbus.propertyRead('MaximumRate', function(err, vol) {
cb(err, vol);
});
};
module.exports.reduceRate = function(cb) { //checked
omx_dbus.method('Action', [1], function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
};
module.exports.increaceRate = function(cb) { //checked
omx_dbus.method('Action', [2], function(err) {
return typeof cb === 'function' ? cb(err) : {};
});
};
//=========================Not working functions
// module.exports.quit = function(cb) { //not working
// omx_dbus.method('Quit', function(err) {
// return typeof cb === 'function' ? cb(err) : {};
// });
// };
// module.exports.mute = function(cb) { //not working
// omx_dbus.method('Mute', function(err) {
// cb(err);
// });
// };
// module.exports.getRate = function(cb) { //not working
// omx_dbus.propertyRead('Rate', function(err, vol) {
// cb(err, vol);
// });
// };
// module.exports.play = function(cb) { //not working
// omx_dbus.method('Play', function(err) {
// return typeof cb === 'function' ? cb(err) : {};
// });
// };
//=========================EN OF NOT WORKING FUNCTIONS