-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathserver.js
122 lines (107 loc) · 3.49 KB
/
server.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
const express = require("express");
const { spawn } = require('child_process');
const { Console } = require("console");
const app = express();
const path = require('path');
let ejs = require('ejs');
var bodyParser = require('body-parser');
const fs = require("fs");
app.use(express.urlencoded());
app.use(express.json());
app.set('view engine', 'ejs');
const port = 3000
let inputLine = ""
let done = false
let dataString = ""
let requiredData = ""
var python = null
//static images file
app.use(express.static('public'));
app.use('/img', express.static('images'));
//Home page s2t.html
app.get("/", function (req, res) {
inputLine = ""
done = false
dataString = ""
requiredData = ""
if (python != null)
python.kill('SIGINT');
res.sendFile(path.join(__dirname + "/s2t.html"));
});
//Final speach file done.html
app.post("/speach", function (req, res) {
inputLine = req.body.textbox;
//res.sendFile(path.join(__dirname+"/done.html"));
//res.render('result', { done: done, islSyntax: requiredData, normalSyntax: inputLine })
if (done == false) {
isItDoneYet().then((msg) => {
console.log(msg)
console.log(inputLine)
if (done)
res.render('result', { done: done, islSyntax: requiredData, normalSyntax: inputLine })
console.log("data->\n" + dataString)
let startIndex = dataString.indexOf("ISL:{")
let endIndex = dataString.indexOf("}")
requiredData = dataString.substring(startIndex + 5, endIndex);
res.render('result', { done: done, islSyntax: requiredData, normalSyntax: inputLine })
//res.sendFile(path.join(__dirname + "/done.html"))
done = true;
}).catch((msg) => {
console.log(msg);
})
}
else{
res.render('result', { done: done, islSyntax: requiredData, normalSyntax: inputLine })
}
});
//done request video
app.get("/video", function (req, res) {
//res.sendFile('/data/samples/output/clipg.mp4', { root: __dirname });
const range = req.headers.range;
if (!range) {
res.status(400).send("Requires Range header");
}
// get video stats (about 61MB)
const videoPath = path.resolve(__dirname + "/data/samples/output/clipg.mp4");
const videoSize = fs.statSync(videoPath).size;
// Parse Range
// Example: "bytes=32324-"
const CHUNK_SIZE = 10 ** 6; // 1MB
const start = Number(range.replace(/\D/g, ""));
const end = Math.min(start + CHUNK_SIZE, videoSize - 1);
// Create headers
const contentLength = end - start + 1;
const headers = {
"Content-Range": `bytes ${start}-${end}/${videoSize}`,
"Accept-Ranges": "bytes",
"Content-Length": contentLength,
"Content-Type": "video/mp4",
};
// create video read stream for this particular chunk
var videoStream = fs.createReadStream(videoPath, { start, end });
// HTTP Status 206 for Partial Content
res.writeHead(206, headers);
// Stream the video chunk to the client
videoStream.pipe(res);
})
//this the python promise
const isItDoneYet = () => new Promise((resolve, reject) => {
python = spawn('python', ['speech_recog.py', inputLine])
let c = false
python.stdout.on('data', function (data) {
dataString += data.toString();
})
python.on('exit', (code) => {
console.log(`child process close all stdio with code ${code}`);
if (code == 0)
c = true;
if (c) {
const workDone = 'Here is the thing I built'
resolve(workDone)
} else {
const why = 'Sorry I failed to built it'
reject(why)
}
});
})
app.listen(port, () => console.log(`Example app listening on port ${port}!`))