-
Notifications
You must be signed in to change notification settings - Fork 243
/
index.js
executable file
·492 lines (422 loc) · 13.1 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
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
#!/usr/bin/env node
var fs = require('fs');
var path = require('path');
var player = require('chromecast-player')();
var chalk = require('chalk');
var keypress = require('keypress');
var ui = require('playerui')();
var circulate = require('array-loop');
var xtend = require('xtend');
var shuffle = require('array-shuffle');
var unformatTime = require('./utils/unformat-time');
var debug = require('debug')('castnow');
var debouncedSeeker = require('debounced-seeker');
var mime = require('mime');
var noop = function() {};
// plugins
var directories = require('./plugins/directories');
var xspf = require('./plugins/xspf');
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');
var home = process.env[(process.platform == 'win32') ? 'USERPROFILE' : 'HOME'];
var rcOpts = [];
try {
rcOpts = fs.readFileSync(path.join(home, '.castnowrc')).toString().trim().split(/\s+/);
} catch(err) {}
var optConfig = {
boolean: "tomp4 quiet bypass-srt-encoding loop shuffle recursive exit help".split(/\s+/),
string: "device address subtitles subtitle-scale subtitle-color subtitle-port myip type seek volume-step localfile-port transcode-port torrent-port stdin-port command".split(/\s+/)
}
var args = rcOpts.concat(process.argv.slice(2));
var opts = require('minimist')(args, optConfig);
// Eliminate duplicate option values, prefering the final option value.
for (var opt in opts) {
if (opts.hasOwnProperty(opt) && opt[0].toLowerCase() != opt[0].toUpperCase() && Array.isArray(opts[opt]))
opts[opt] = opts[opt].pop()
}
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',
'--shuffle Play in random order',
'--recursive List all files in directories recursively',
'--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',
'--command <key1>,<key2> Execute key command(s) (where each <key> is one of the keys listed below)',
'--exit Exit when playback begins or --command completes',
'--help This help screen',
'',
'Player controls',
'',
'Key Action',
'space Toggle between play and pause',
'm Toggle mute',
't Toggle subtitles',
'up Volume Up',
'down Volume Down',
'left Seek backward',
'right Seek forward',
'p Previous in playlist',
'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 || opts.exit || 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 playlist_history = ctx.options.playlist_history;
var volume;
var is_keyboard_interactive = process.stdin.isTTY || false;
if (is_keyboard_interactive) {
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 seekImmediate = 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);
};
if (opts.exit) {
// cannot debounce or seek never executes before we exit
var seek = seekImmediate;
} else {
var seek = debouncedSeeker(function(offset) {
// handles seeking offset = seconds
seekImmediate(offset);
}, 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);
else
playlist_history.push(file);
});
};
var previousInPlaylist = function() {
if (ctx.options.loop) {
playlist.unshift(playlist.pop());
playlist.unshift(playlist.pop());
nextInPlaylist();
}
else if (0 < playlist_history.length) {
playlist.unshift(playlist_history.pop());
if (0 < playlist_history.length) playlist.unshift(playlist_history.pop());
nextInPlaylist();
}
};
p.on('status', last(function(status, memo) {
if (opts.exit && status.playerState == 'PLAYING') process.exit();
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;
});
}
},
t: function() {
if (!p.currentSession.media.tracks) { return }
var sessionRequestBody = {
type: 'EDIT_TRACKS_INFO'
}
sessionRequestBody.activeTrackIds = p.currentSession.activeTrackIds ? [] : [1];
p.sessionRequest(sessionRequestBody);
},
// 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();
},
// previous item in playlist
p: function() {
previousInPlaylist();
},
// 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);
}
};
if (is_keyboard_interactive) {
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();
}
});
}
if (opts.command) {
var commands = opts.command.split(",");
commands.forEach(function(command) {
if (!keyMappings[command]) {
fatalError('invalid --command: ' + command);
}
});
var index = 0;
function run_commands() {
if (index < commands.length) {
var command = commands[index++];
keyMappings[command]();
p.getStatus(run_commands);
} else {
if (opts.exit) {
process.exit();
}
}
}
p.getStatus(run_commands);
}
};
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(xspf);
player.use(localfile);
player.use(transcode);
player.use(subtitles);
player.use(function(ctx, next) {
if (ctx.mode !== 'launch') return next();
if (ctx.options.type)
// If a --type has been provided, then respect it.
ctx.options.playlist.map(function(item) {item.type = ctx.options.type;});
else {
ctx.options.playlist.map(function(item){
if (!item.type) {
// These will be URLs (the MIME type for files is filled in by the localfile plugin).
var mimeType = mime.lookup(item.path);
var type = mimeType.split('/')[0];
if (type === 'audio' || type === 'video') item.type = mimeType;
}
});
}
next()
});
player.use(function(ctx, next) {
if (ctx.mode !== 'launch') return next();
if (ctx.options.shuffle)
ctx.options.playlist = shuffle(ctx.options.playlist);
ctx.options = xtend(ctx.options, ctx.options.playlist[0]);
var file = ctx.options.playlist.shift();
if (ctx.options.loop)
ctx.options.playlist.push(file);
else
ctx.options.playlist_history = [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;