forked from 131/h264-live-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatic.js
37 lines (24 loc) · 951 Bytes
/
static.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
"use strict";
const fs = require('fs');
const Throttle = require('stream-throttle').Throttle;
const merge = require('mout/object/merge');
const Server = require('./_server');
class StaticFeed extends Server {
constructor(server, opts) {
super(server, merge({
video_path : null,
video_duration : 0,
}, opts));
}
get_feed() {
var source = this.options.video_path;
//throttle for "real time simulation"
var sourceThrottleRate = Math.floor(fs.statSync(source)['size'] / this.options.video_duration);
console.log("Generate a throttle rate of %s kBps", Math.floor(sourceThrottleRate/1024));
var readStream = fs.createReadStream(source);
readStream = readStream.pipe(new Throttle({rate: sourceThrottleRate}));
console.log("Generate a static feed from ", source);
return readStream;
}
}
module.exports = StaticFeed;