forked from 131/h264-live-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathffmpeg.js
68 lines (50 loc) · 1.5 KB
/
ffmpeg.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
"use strict";
const spawn = require('child_process').spawn;
const merge = require('mout/object/merge');
const Server = require('./_server');
class FFMpegServer extends Server {
constructor(server, opts) {
super(server, merge({
fps : 15,
}, opts));
}
get_feed() {
var args = [
"-f", "gdigrab",
"-framerate", this.options.fps,
"-offset_x", 10,
"-offset_y", 20,
"-video_size", this.options.width + 'x' + this.options.height,
'-i', 'desktop',
'-pix_fmt', 'yuv420p',
'-c:v', 'libx264',
'-vprofile', 'baseline',
'-tune', 'zerolatency',
'-f' ,'rawvideo',
'-'
];
//https://trac.ffmpeg.org/wiki/Limiting%20the%20output%20bitrate
var args = [
"-f", "dshow",
"-i", "video=Integrated Webcam" ,
"-framerate", this.options.fps,
"-video_size", this.options.width + 'x' + this.options.height,
'-pix_fmt', 'yuv420p',
'-c:v', 'libx264',
'-b:v', '600k',
'-bufsize', '600k',
'-vprofile', 'baseline',
'-tune', 'zerolatency',
'-f' ,'rawvideo',
'-'
];
console.log("ffmpeg " + args.join(' '));
var streamer = spawn('ffmpeg', args);
//streamer.stderr.pipe(process.stderr);
streamer.on("exit", function(code){
console.log("Failure", code);
});
return streamer.stdout;
}
};
module.exports = FFMpegServer;