forked from daveyijzermans/grandiose
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.js
101 lines (83 loc) · 3.67 KB
/
index.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
/* Copyright 2018 Streampunk Media Ltd.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
const binary = require('node-pre-gyp')
const path = require('path')
const binding_path = binary.find(path.resolve(path.join(__dirname, './package.json')))
const addon = require(binding_path)
const COLOR_FORMAT_BGRX_BGRA = 0 // No alpha channel: BGRX, Alpha channel: BGRA
const COLOR_FORMAT_UYVY_BGRA = 1 // No alpha channel: UYVY, Alpha channel: BGRA
const COLOR_FORMAT_RGBX_RGBA = 2 // No alpha channel: RGBX, Alpha channel: RGBA
const COLOR_FORMAT_UYVY_RGBA = 3 // No alpha channel: UYVY, Alpha channel: RGBA
// On Windows there are some APIs that require bottom to top images in RGBA format. Specifying
// this format will return images in this format. The image data pointer will still point to the
// "top" of the image, althought he stride will be negative. You can get the "bottom" line of the image
// using : video_data.p_data + (video_data.yres - 1)*video_data.line_stride_in_bytes
const COLOR_FORMAT_BGRX_BGRA_FLIPPED = 200
const COLOR_FORMAT_FASTEST = 100
const BANDWIDTH_METADATA_ONLY = -10 // Receive metadata.
const BANDWIDTH_AUDIO_ONLY = 10 // Receive metadata, audio.
const BANDWIDTH_LOWEST = 0 // Receive metadata, audio, video at a lower bandwidth and resolution.
const BANDWIDTH_HIGHEST = 100 // Receive metadata, audio, video at full resolution.
const FORMAT_TYPE_PROGRESSIVE = 1
const FORMAT_TYPE_INTERLACED = 0
const FORMAT_TYPE_FIELD_0 = 2
const FORMAT_TYPE_FIELD_1 = 3
// Default NDI audio format
// Channels stored one after the other in each block - 32-bit floating point values
const AUDIO_FORMAT_FLOAT_32_SEPARATE = 0
// Alternative NDI audio foramt
// Channels stored as channel-interleaved 32-bit floating point values
const AUDIO_FORMAT_FLOAT_32_INTERLEAVED = 1
// Alternative NDI audio format
// Channels stored as channel-interleaved 16-bit integer values
const AUDIO_FORMAT_INT_16_INTERLEAVED = 2
// Find method for NDI library
const find = function (...args) {
if (args.length === 0) return addon.find()
// If groups is passed as array,
// then reduce to comma-concatenated string
if (Array.isArray(args[0].groups)) {
args[0].groups = args[0].groups.reduce((x, y) => x + ',' + y)
}
// If extra IP addresses is passed as array,
// then reduce to comma-concatenated string
if (Array.isArray(args[0].extraIPs)) {
args[0].extraIPs = args[0].extraIPs.reduce((x, y) => x + ',' + y)
}
return addon.find.apply(null, args)
}
module.exports = {
// NDI library core functions
// NDI Find
find,
// NDI Receive
receive: addon.receive,
// NDI Send
send: addon.send, // Send audio
sendVideo: addon.sendVideo,
// Helper methods
version: addon.version,
isSupportedCPU: addon.isSupportedCPU,
// NDI Util constants
COLOR_FORMAT_BGRX_BGRA,
COLOR_FORMAT_UYVY_BGRA,
COLOR_FORMAT_RGBX_RGBA,
COLOR_FORMAT_UYVY_RGBA,
COLOR_FORMAT_BGRX_BGRA_FLIPPED, COLOR_FORMAT_FASTEST,
BANDWIDTH_METADATA_ONLY, BANDWIDTH_AUDIO_ONLY,
BANDWIDTH_LOWEST, BANDWIDTH_HIGHEST,
FORMAT_TYPE_PROGRESSIVE, FORMAT_TYPE_INTERLACED,
FORMAT_TYPE_FIELD_0, FORMAT_TYPE_FIELD_1,
AUDIO_FORMAT_FLOAT_32_SEPARATE,
AUDIO_FORMAT_FLOAT_32_INTERLEAVED,
AUDIO_FORMAT_INT_16_INTERLEAVED
}