-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpostProcess.js
59 lines (52 loc) · 1.97 KB
/
postProcess.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
const { spawn } = require("child_process");
const path = require('path');
var isWin = process.platform === "win32";
const CHRONOSENSE_ROOT_DIR = path.join(path.resolve(__dirname), '../');
const FFMPEG_DIR = path.join(CHRONOSENSE_ROOT_DIR, 'ffmpeg');
process.on('message', (msg) => {
let pp = null;
// console.log('Message from parent:', msg);
dirName = msg.dirName;
fileName = msg.fileName;
pp = new postProcesser(dirName, fileName)
pp.postProcessVideoFile();
pp = null;
});
class postProcesser {
#c = null;
#dirName = null;
#fileName = null;
constructor(dirName, fileName){
this.#dirName = dirName;
this.#fileName = fileName;
}
postProcessVideoFile() {
if (isWin) {
// process.send("isWin true");
this.#c = spawn(path.join(FFMPEG_DIR,"ffmpeg.exe"), [
"-i",
path.join(this.#dirName, "raw", this.#fileName),
path.join(this.#dirName, this.#fileName.substring(0, this.#fileName.length - 5).concat(".mp4"))
], {detached: true});
process.send({ pid: this.#c.pid, child_state: "processing" });
}
else {
// process.send("isWin false");
this.#c = spawn("ffmpeg", [
"-i",
'"'+path.join(this.#dirName, "raw", this.#fileName)+'"',
'"'+path.join(this.#dirName, this.#fileName.substring(0, this.#fileName.length - 5).concat(".mp4"))+'"'
], {detached: true, shell: true, PATH: process.env.PATH});
process.send({ pid: this.#c.pid, child_state: "processing" });
}
// this.#c.stdout.on('data', (data) => {
// process.send(`stdout: ${data}`);
// });
// this.#c.stderr.on('data', (data) => {
// process.send(`stderr: ${data}`);
// });
// this.#c.on('close', () => {
// process.send({ pid: this.#c.pid, child_state: "done" });
// });
}
}