-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
83 lines (64 loc) · 1.66 KB
/
main.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
// main.js
// Modules to control appliication life and create native browser window
const { app, ipcMain, BrowserWindow } = require('electron')
const path = require('path')
const {systemPreferences} = require('electron')
systemPreferences.askForMediaAccess('camera')
const createWindow = () => {
// Create the browser window.
const mainWindow = new BrowserWindow({
width: 1280,
height: 720,
webPreferences: {
nodeIntegration: true,
preload: path.join(__dirname, './preload.js')
}
})
// and load the index.html of the app.
mainWindow.loadFile('index.html')
}
// Spawn window:
app.whenReady().then(() => {
createWindow()
app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) createWindow()
})
})
// Require OSC library:
var osc = require("osc");
// Spawn a UPD port, using sclangs default port:
var udpPort = new osc.UDPPort({
localAddress: "0.0.0.0",
localPort: 57121,
metadata: true
});
// Open the port:
udpPort.open();
// Recieve data from Mediapipe, send it through OSC:
ipcMain.on('custom-endpoint', (event, arg) => {
console.log(arg) // prints "ping"
// Have to return something when using this tranposrt thing
udpPort.send({
address: "/facemesh/mouth/height", // Height data
args: [
{
type: "f",
value: arg[0]
}
]
}, "127.0.0.1", 57120);
udpPort.send({
address: "/facemesh/mouth/width", // Width data
args: [
{
type: "f",
value: arg[1]
}
]
}, "127.0.0.1", 57120);
event.returnValue = 'pong'
})
// MacOs quit thing
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') app.quit()
})