forked from xat/castnow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
executable file
·368 lines (309 loc) · 9.16 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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
#!/usr/bin/env node
var player = require('chromecast-player')();
var opts = require('minimist')(process.argv.slice(2));
var chalk = require('chalk');
var keypress = require('keypress');
var ui = require('playerui')();
var circulate = require('array-loop');
var xtend = require('xtend');
var unformatTime = require('./utils/unformat-time');
var debug = require('debug')('castnow');
var debouncedSeeker = require('debounced-seeker');
var noop = function() {};
// plugins
var directories = require('./plugins/directories');
var localfile = require('./plugins/localfile');
var torrent = require('./plugins/torrent');
var transcode = require('./plugins/transcode');
var subtitles = require('./plugins/subtitles');
var stdin = require('./plugins/stdin');
if (opts.help) {
return console.log([
'',
'Usage: castnow [<media>, <media>, ...] [OPTIONS]',
'',
'Option Meaning',
'--tomp4 Convert file to mp4 during playback',
'--device <name> The name of the Chromecast device that should be used',
'--address <ip> The IP address or hostname of your Chromecast device',
'--subtitles <path/url> Path or URL to an SRT or VTT file',
'--subtitle-scale <scale> Subtitle font scale',
'--subtitle-color <color> Subtitle font RGBA color',
'--subtitle-port <port> Specify the port to be used for serving subtitles',
'--myip <ip> Your local IP address',
'--quiet No output',
'--peerflix-* <value> Pass options to peerflix',
'--ffmpeg-* <value> Pass options to ffmpeg',
'--type <type> Explicitly set the mime-type (e.g. "video/mp4")',
'--bypass-srt-encoding Disable automatic UTF-8 encoding of SRT subtitles',
'--seek <hh:mm:ss> Seek to the specified time on start using the format hh:mm:ss or mm:ss',
'--loop Loop over playlist, or file, forever',
'--volume-step <step> Step at which the volume changes. Helpful for speakers that are softer or louder than normal. Value ranges from 0 to 1 (e.g. ".05")',
'--localfile-port <port> Specify the port to be used for serving a local file',
'--transcode-port <port> Specify the port to be used for serving a transcoded file',
'--torrent-port <port> Specify the port to be used for serving a torrented file',
'--stdin-port <port> Specify the port to be used for serving a file read from stdin',
'--help This help screen',
'',
'Player controls',
'',
'Key Action',
'space Toggle between play and pause',
'm Toggle mute',
'up Volume Up',
'down Volume Down',
'left Seek backward',
'right Seek forward',
'n Next in playlist',
's Stop playback',
'quit Quit',
''
].join('\n'));
}
if (opts._.length) {
opts.playlist = opts._.map(function(item) {
return {
path: item
};
});
}
delete opts._;
if (opts.quiet || process.env.DEBUG) {
ui.hide();
}
var volumeStep = 0.05;
var stepOption = opts['volume-step'];
if (stepOption) {
var parsed = parseFloat(stepOption);
if (isNaN(parsed)) {
fatalError('invalid --volume-step');
}
if (parsed < 0 || parsed > 1) {
fatalError('--volume-step must be between 0 and 1');
}
volumeStep = parsed;
}
debug('volume step: %s', volumeStep);
ui.showLabels('state');
function fatalError(err) {
ui.hide(err);
debug(err);
console.log(chalk.red(err));
process.exit();
}
var last = function(fn, l) {
return function() {
var args = Array.prototype.slice.call(arguments);
args.push(l);
l = fn.apply(null, args);
return l;
};
};
var ctrl = function(err, p, ctx) {
if (err) {
ui.hide();
debug('player error: %o', err);
console.log(chalk.red(err));
process.exit();
}
var playlist = ctx.options.playlist;
var volume;
keypress(process.stdin);
process.stdin.setRawMode(true);
process.stdin.resume();
ctx.once('closed', function() {
ui.hide();
console.log(chalk.red('lost connection'));
process.exit();
});
// get initial volume
p.getVolume(function(err, status) {
volume = status;
});
if (!ctx.options.disableTimeline) {
p.on('position', function(pos) {
ui.setProgress(pos.percent);
ui.render();
});
}
var seek = debouncedSeeker(function(offset) {
if (ctx.options.disableSeek || offset === 0) return;
var seconds = Math.max(0, (p.getPosition() / 1000) + offset);
debug('seeking to %s', seconds);
p.seek(seconds);
}, 500);
var updateTitle = function() {
p.getStatus(function(err, status) {
if (!status || !status.media ||
!status.media.metadata ||
!status.media.metadata.title) return;
var metadata = status.media.metadata;
var title;
if (metadata.artist) {
title = metadata.artist + ' - ' + metadata.title;
} else {
title = metadata.title;
}
ui.setLabel('source', 'Source', title);
ui.showLabels('state', 'source');
ui.render();
});
};
var initialSeek = function() {
var seconds = unformatTime(ctx.options.seek);
debug('seeking to %s', seconds);
p.seek(seconds);
};
p.on('playing', updateTitle);
if (!ctx.options.disableSeek && ctx.options.seek) {
p.once('playing', initialSeek);
}
updateTitle();
var nextInPlaylist = function() {
if (ctx.mode !== 'launch') return;
if (!playlist.length) return process.exit();
p.stop(function() {
ui.showLabels('state');
debug('loading next in playlist: %o', playlist[0]);
p.load(playlist[0], noop);
var file = playlist.shift();
if (ctx.options.loop) playlist.push(file)
});
};
p.on('status', last(function(status, memo) {
if (status.playerState !== 'IDLE') return;
if (status.idleReason !== 'FINISHED') return;
if (memo && memo.playerState === 'IDLE') return;
nextInPlaylist();
return status;
}));
var keyMappings = {
// toggle between play / pause
space: function() {
if (p.currentSession.playerState === 'PLAYING') {
p.pause();
} else if (p.currentSession.playerState === 'PAUSED') {
p.play();
}
},
// toggle between mute / unmute
m: function() {
if(!volume) {
return;
} else if (volume.muted) {
p.unmute(function(err, status) {
if (err) return;
volume = status;
});
} else {
p.mute(function(err, status) {
if (err) return;
volume = status;
});
}
},
// volume up
up: function() {
if (!volume || volume.level >= 1) {
return;
}
var newVolume = Math.min(volume.level + volumeStep, 1);
p.setVolume(newVolume, function(err, status) {
if (err) {
return;
}
debug("volume up: %s", status.level);
volume = status;
});
},
// volume down
down: function() {
if (!volume || volume.level <= 0) {
return;
}
var newVolume = Math.max(volume.level - volumeStep, 0);
p.setVolume(newVolume, function(err, status) {
if (err) {
return;
}
debug("volume down: %s", status.level);
volume = status;
});
},
// next item in playlist
n: function() {
nextInPlaylist();
},
// stop playback
s: function() {
p.stop();
},
// quit
q: function() {
process.exit();
},
// Rewind, one "seekCount" per press
left: function() {
seek(-30);
},
// Forward, one "seekCount" per press
right: function() {
seek(30);
}
};
process.stdin.on('keypress', function(ch, key) {
if (key && key.name && keyMappings[key.name]) {
debug('key pressed: %s', key.name);
keyMappings[key.name]();
}
if (key && key.ctrl && key.name == 'c') {
process.exit();
}
});
};
var capitalize = function(str) {
return str.substr(0, 1).toUpperCase() + str.substr(1);
};
var logState = (function() {
var inter;
var dots = circulate(['.', '..', '...', '....']);
return function(status) {
if (inter) clearInterval(inter);
debug('player status: %s', status);
inter = setInterval(function() {
ui.setLabel('state', 'State', capitalize(status) + dots());
ui.render();
}, 300);
};
})();
player.use(function(ctx, next) {
ctx.on('status', logState);
next();
});
player.use(stdin);
player.use(directories);
player.use(torrent);
player.use(localfile);
player.use(transcode);
player.use(subtitles);
player.use(function(ctx, next) {
if (ctx.mode !== 'launch') return next();
ctx.options = xtend(ctx.options, ctx.options.playlist[0]);
var file = ctx.options.playlist.shift();
if (ctx.options.loop) ctx.options.playlist.push(file);
next();
});
if (!opts.playlist) {
debug('attaching...');
player.attach(opts, ctrl);
} else {
debug('launching...');
player.launch(opts, ctrl);
}
process.on('SIGINT', function() {
process.exit();
});
process.on('exit', function() {
ui.hide();
});
module.exports = player;