forked from rolanddenis/bbb-recorder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
export.js
246 lines (206 loc) · 7.34 KB
/
export.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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
const puppeteer = require('puppeteer');
const Xvfb = require('xvfb');
const fs = require('fs');
const os = require('os');
const homedir = os.homedir();
const downloaddir = homedir + "/Downloads";
const platform = os.platform();
const { copyToPath, playbackFile } = require('./env');
const spawn = require('child_process').spawn;
var xvfb = new Xvfb({
silent: true,
xvfb_args: ["-screen", "0", "1280x800x24", "-ac", "-nolisten", "tcp", "-dpi", "96", "+extension", "RANDR"]
});
var width = 1280;
var height = 720;
var options = {
headless: false,
args: [
'--enable-usermedia-screen-capturing',
'--allow-http-screen-capture',
'--auto-select-desktop-capture-source=bbbrecorder',
'--load-extension=' + __dirname,
'--disable-extensions-except=' + __dirname,
'--disable-infobars',
'--no-sandbox',
'--shm-size=1gb',
'--disable-dev-shm-usage',
'--start-fullscreen',
'--app=https://www.google.com/',
`--window-size=${width},${height}`,
],
}
if(platform == "linux"){
options.executablePath = "/usr/bin/google-chrome"
}else if(platform == "darwin"){
options.executablePath = "/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome"
}
async function main() {
let browser, page;
try{
if(platform == "linux"){
xvfb.startSync()
}
var url = process.argv[2];
if(!url){
console.warn('URL undefined!');
process.exit(1);
}
// Verify if recording URL has the correct format
var urlRegex = new RegExp('^https?:\\/\\/.*\\/playback\\/presentation\\/2\\.0\\/' + playbackFile + '\\?meetingId=[a-z0-9]{40}-[0-9]{13}');
if(!urlRegex.test(url)){
console.warn('Invalid recording URL!');
process.exit(1);
}
var exportname = process.argv[3];
// Use meeting ID as export name if it isn't defined or if its value is "MEETING_ID"
if(!exportname || exportname == "MEETING_ID"){
exportname = url.split("=")[1] + '.webm';
}
var duration = process.argv[4];
// If duration isn't defined, set it in 0
if(!duration){
duration = 0;
// Check if duration is a natural number
}else if(!Number.isInteger(Number(duration)) || duration < 0){
console.warn('Duration must be a natural number!');
process.exit(1);
}
var convert = process.argv[5]
if(!convert){
convert = false
}else if(convert !== "true" && convert !== "false"){
console.warn("Invalid convert value!");
process.exit(1);
}
browser = await puppeteer.launch(options)
const pages = await browser.pages()
page = pages[0]
page.on('console', msg => {
var m = msg.text();
//console.log('PAGE LOG:', m) // uncomment if you need
});
await page._client.send('Emulation.clearDeviceMetricsOverride')
// Catch URL unreachable error
await page.goto(url, {waitUntil: 'networkidle2'}).catch(e => {
console.error('Recording URL unreachable!');
process.exit(2);
})
await page.setBypassCSP(true)
// Check if recording exists (search "Recording not found" message)
var loadMsg = await page.evaluate(() => {
return document.getElementById("load-msg").textContent;
});
if(loadMsg == "Recording not found"){
console.warn("Recording not found!");
process.exit(1);
}
// Get recording duration
var recDuration = await page.evaluate(() => {
return document.getElementById("video").duration;
});
// If duration was set to 0 or is greater than recDuration, use recDuration value
if(duration == 0 || duration > recDuration){
duration = recDuration;
}
await page.waitForSelector('button[class=acorn-play-button]');
await page.$eval('#navbar', element => element.style.display = "none");
await page.$eval('#chat-area', element => element.style.display = "none");
await page.$eval('#copyright', element => element.style.display = "none");
await page.$eval('#side-section', element => {
element.classList.remove("small-4");
element.classList.add("small-2");
});
await page.$eval('#main-section', element => {
element.classList.remove("small-8");
element.classList.add("small-10");
});
await page.$eval('.acorn-controls', element => element.style.opacity = "0");
await page.click('button[class=acorn-play-button]', {waitUntil: 'domcontentloaded'});
await page.evaluate((x) => {
console.log("REC_START");
window.postMessage({type: 'REC_START'}, '*')
})
// Perform any actions that have to be captured in the exported video
await page.waitFor((duration * 1000))
await page.evaluate(filename=>{
window.postMessage({type: 'SET_EXPORT_PATH', filename: filename}, '*')
window.postMessage({type: 'REC_STOP'}, '*')
}, exportname)
// Wait for download of webm to complete
await page.waitForSelector('html.downloadComplete', {timeout: 0})
if(convert){
convertAndCopy(exportname)
}else{
copyOnly(exportname)
}
}catch(err) {
console.log(err)
} finally {
page.close && await page.close()
browser.close && await browser.close()
if(platform == "linux"){
xvfb.stopSync()
}
}
}
main()
function convertAndCopy(filename){
var copyFromPath = downloaddir;
var onlyfileName = filename.split(".webm")
var mp4File = onlyfileName[0] + ".mp4"
var copyFrom = copyFromPath + "/" + filename + ""
var copyTo = copyToPath + "/" + mp4File;
if(!fs.existsSync(copyToPath)){
fs.mkdirSync(copyToPath);
}
console.log(copyTo);
console.log(copyFrom);
const ls = spawn('ffmpeg',
[ '-y',
'-i "' + copyFrom + '"',
'-c:v libx264',
'-preset slow',
'-tune stillimage',
'-movflags faststart',
'-profile:v high',
'-level 4.2',
'-max_muxing_queue_size 9999',
'-vf mpdecimate',
'-vsync vfr "' + copyTo + '"'
],
{
shell: true
}
);
ls.stdout.on('data', (data) => {
console.log(`stdout: ${data}`);
});
ls.stderr.on('data', (data) => {
console.error(`stderr: ${data}`);
});
ls.on('close', (code) => {
console.log(`child process exited with code ${code}`);
if(code == 0)
{
console.log("Convertion done to here: " + copyTo)
fs.unlinkSync(copyFrom);
console.log('successfully deleted ' + copyFrom);
}
});
}
function copyOnly(filename){
var copyFrom = downloaddir + filename;
var copyTo = copyToPath + "/" + filename;
if(!fs.existsSync(copyToPath)){
fs.mkdirSync(copyToPath);
}
try {
fs.copyFileSync(copyFrom, copyTo)
console.log('successfully copied ' + copyTo);
fs.unlinkSync(copyFrom);
console.log('successfully delete ' + copyFrom);
} catch (err) {
console.log(err)
}
}