-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstream.js
169 lines (153 loc) · 5.15 KB
/
stream.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
"use strict";
// Stream.js
var throttle = require('advanced-throttle');
var transcoder = require('stream-transcoder');
var ytdl = require('ytdl-core');
var Stream = function (cpu, config) {
var _config;
var _streams = {};
var _latestStream;
var _clients = {};
var _loaders = {};
var _cpu;
var streamThroughFFmpeg = function(input, eventlisteners = undefined) {
if (input === undefined) {
console.error("Empty stream");
return;
}
if (_streams[_latestStream] && _streams[_latestStream] !== undefined) {
_streams[_latestStream]["throttle"].end();
_streams[_latestStream]["input"].end();
}
_latestStream = new Date().getTime();
var me = 0 + _latestStream;
var bitrate = _config["bitDepth"] * _config["sampleRate"] * _config["channels"];
var t = new throttle({ bps: bitrate / 8 });
_streams[me] = { throttle: t, input: input["stream"] };
var trans = new transcoder(input["stream"])
.format('s' + _config["bitDepth"] + 'le')
.sampleRate(_config["sampleRate"])
.channels(_config["channels"])
.audioBitrate(bitrate)
.on('error', function() {
console.error("Error while transcoding!");
_cpu.module("events").trigger("stream.end");
})
.on('metadata', function(metadata) {
// metadata.input.duration = duration in milliseconds
var duration = Math.floor(metadata.input.duration / 1000);
if (duration != input["track"].getDuration()) {
input["track"].setDuration(duration);
this.cpu().module("socket").emit("durationChanged");
}
}.bind(this));
if (eventlisteners !== undefined) {
for (var ev in eventlisteners) {
if (eventlisteners.hasOwnProperty(ev) && typeof(ev) === 'string' &&typeof(eventlisteners[ev]) === 'function') {
trans.on(ev, eventlisteners[ev]);
}
}
}
var a = trans._compileArguments();
a.push('pipe:1');
var ffmpegstream = trans._exec(a);
ffmpegstream.stdout.on('data', function(data) {
t.write(data);
});
t.on('data', function(chunk) {
if (_latestStream != me) {
return;
}
for (var k in _clients) {
if (_clients.hasOwnProperty(k) && _clients[k] !== undefined) {
_clients[k].write(chunk);
}
}
})
.on('timechanged', function(time) {
if (_latestStream != me) {
return;
}
if (input["track"].getDuration() >= 0 && time >= input["track"].getDuration()) {
_cpu.module("util").log("next");
_cpu.module("events").trigger("socket.receive.next", { 'data': { 'force': true } });
this.pauseStream();
} else {
_cpu.module("runtime").set("playback_time", time);
_cpu.module("socket").emit("playbackTimeChanged");
}
})
.on('end', function() {
if (me == _latestStream) {
_cpu.module("events").trigger("stream.end");
}
}.bind(this));
}
// Constructor
function Stream(cpu, config) {
if (!(this instanceof Stream)) {
return new Stream(cpu, config);
}
var defaults = {
bitDepth: 16,
sampleRate: 44100,
channels: 2
};
_cpu = cpu;
_config = _cpu.extend(defaults, config || {});
}
Stream.prototype.cpu = function() {
return _cpu;
}
Stream.prototype.addLoader = function(service, loader) {
_loaders[service] = loader;
};
Stream.prototype.delLoader = function(service) {
delete _loaders[service];
};
Stream.prototype.addClient = function(id, stream) {
_clients[id] = stream;
_cpu.module("util").log("Stream: client " + id + " connected");
};
Stream.prototype.delClient = function(id) {
delete _clients[id];
_cpu.module("util").log("Stream: client " + id + " disconnected");
};
Stream.prototype.load = function(track) {
this.stop();
var service = track.getService();
var path = track.getPath();
if (typeof service === "string" && _loaders[service] !== undefined) {
_loaders[service].call(this, this, track);
}
};
Stream.prototype.play = function(input, eventlisteners) {
if (input !== undefined) {
streamThroughFFmpeg.call(this, input, eventlisteners);
} else {
if (!!_streams[_latestStream] && !!_streams[_latestStream]["throttle"]) {
_streams[_latestStream]["throttle"].resumeStream();
} else {
_cpu.module("events").trigger("stream.end");
}
}
};
Stream.prototype.pause = function() {
_streams[_latestStream]["throttle"].pauseStream();
};
Stream.prototype.stop = function() {
for (var k in _streams) {
if (_streams.hasOwnProperty(k) && _streams[k] != undefined) {
console.log("stopping " + k);
_streams[k]["throttle"].destroy();
delete _streams[k];
}
}
};
Stream.prototype.next = function(service, path) {
this.stop();
this.load(service, path);
};
return new Stream(cpu, config);
};
var exports = module.exports = Stream;