@norskvideo/norsk-studio-built-ins 1.27.0-2025-04-02-36e9667e → 1.27.0-2025-04-04-1ee9db09
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/info.js +43 -93
- package/client/output.preview/styles.css +4 -3
- package/client/style.css +43 -14
- package/lib/output.preview/runtime.js +1 -0
- package/lib/output.preview/runtime.js.map +1 -1
- package/lib/output.whep/runtime.js +1 -0
- package/lib/output.whep/runtime.js.map +1 -1
- package/lib/processor.browserOverlay/runtime.js +3 -1
- package/lib/processor.browserOverlay/runtime.js.map +1 -1
- package/lib/processor.fixedLadder/info.d.ts +0 -12
- package/lib/processor.fixedLadder/info.js +0 -77
- package/lib/processor.fixedLadder/info.js.map +1 -1
- package/lib/processor.fixedLadder/runtime.d.ts +1 -3
- package/lib/processor.fixedLadder/runtime.js.map +1 -1
- package/lib/processor.fixedLadder/types.d.ts +1 -118
- package/lib/processor.fixedLadder/types.yaml +3 -287
- package/lib/processor.makeProgram/info.js +7 -4
- package/lib/processor.makeProgram/info.js.map +1 -1
- package/lib/processor.makeProgram/runtime.js +2 -2
- package/lib/processor.makeProgram/runtime.js.map +1 -1
- package/lib/processor.onscreenGraphic/runtime.js +3 -1
- package/lib/processor.onscreenGraphic/runtime.js.map +1 -1
- package/lib/shared/srt-caller-metrics.js +1 -1
- package/lib/shared/srt-caller-metrics.js.map +1 -1
- package/lib/shared/srt-listener-metrics.js +3 -3
- package/lib/shared/srt-listener-metrics.js.map +1 -1
- package/lib/shared/stream-statistics-view.js +5 -7
- package/lib/shared/stream-statistics-view.js.map +1 -1
- package/lib/test/auto-cmaf.js +3 -3
- package/lib/test/auto-cmaf.js.map +1 -1
- package/lib/test/browser-overlay.js +3 -3
- package/lib/test/browser-overlay.js.map +1 -1
- package/lib/test/cascading-switch.js +4 -4
- package/lib/test/cascading-switch.js.map +1 -1
- package/lib/test/fixed-ladder.js +3 -3
- package/lib/test/fixed-ladder.js.map +1 -1
- package/lib/test/multiview.js +8 -8
- package/lib/test/multiview.js.map +1 -1
- package/lib/test/onscreen-graphic.js +9 -9
- package/lib/test/onscreen-graphic.js.map +1 -1
- package/lib/test/preview.js +1 -1
- package/lib/test/preview.js.map +1 -1
- package/lib/test/rtmp-input.js +8 -8
- package/lib/test/rtmp-input.js.map +1 -1
- package/lib/test/rtmp-output.js +10 -10
- package/lib/test/rtmp-output.js.map +1 -1
- package/lib/test/srt-input-caller.js +1 -1
- package/lib/test/srt-input-caller.js.map +1 -1
- package/lib/test/srt-input-listener.js +12 -12
- package/lib/test/srt-input-listener.js.map +1 -1
- package/lib/test/srt-output-caller.js +3 -3
- package/lib/test/srt-output-caller.js.map +1 -1
- package/lib/test/srt-output-listener.js +3 -3
- package/lib/test/srt-output-listener.js.map +1 -1
- package/lib/test/udp-output.js +1 -1
- package/lib/test/udp-output.js.map +1 -1
- package/lib/test/whep-output.js +142 -208
- package/lib/test/whep-output.js.map +1 -1
- package/package.json +9 -9
@@ -6,10 +6,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.rungNames = void 0;
|
7
7
|
exports.default = default_1;
|
8
8
|
exports.createSoftwareRung = createSoftwareRung;
|
9
|
-
exports.createMa35dRung = createMa35dRung;
|
10
9
|
exports.createNvidiaRung = createNvidiaRung;
|
11
10
|
exports.createQuadraRung = createQuadraRung;
|
12
|
-
exports.createLoganRung = createLoganRung;
|
13
11
|
const config_1 = require("@norskvideo/norsk-studio/lib/shared/config");
|
14
12
|
const rung_view_1 = __importDefault(require("./rung-view"));
|
15
13
|
const codec_editor_1 = __importDefault(require("./codec-editor"));
|
@@ -79,9 +77,7 @@ function default_1({ defineComponent, common: { FrameRates }, }) {
|
|
79
77
|
name: x.name,
|
80
78
|
software: createRungImpl({ name: `hack_${x.width}x${x.height}`, bitrate: 5_000, threads: 4 }),
|
81
79
|
quadra: createQuadraRungImpl({ name: `hack_${x.width}x${x.height}`, bitrate: 5_000_000 }),
|
82
|
-
logan: createLoganRungImpl({ name: `hack_${x.width}x${x.height}`, bitrate: 5_000_000 }),
|
83
80
|
nvidia: createNvidiaRungImpl({ name: `hack_${x.width}x${x.height}`, bitrate: 5_000_000 }),
|
84
|
-
ma35d: createMa35DH264RungImpl({ name: `hack_${x.width}x${x.height}`, bitrate: 5_000_000 }),
|
85
81
|
})
|
86
82
|
},
|
87
83
|
form: {
|
@@ -94,9 +90,7 @@ function default_1({ defineComponent, common: { FrameRates }, }) {
|
|
94
90
|
},
|
95
91
|
software: rungEditorForm('software'),
|
96
92
|
quadra: rungEditorForm('quadra'),
|
97
|
-
logan: rungEditorForm('logan'),
|
98
93
|
nvidia: rungEditorForm('nvidia'),
|
99
|
-
ma35d: rungEditorForm('ma35d'),
|
100
94
|
},
|
101
95
|
view: rung_view_1.default,
|
102
96
|
defaultValue: exports.rungNames.map((n) => {
|
@@ -104,9 +98,7 @@ function default_1({ defineComponent, common: { FrameRates }, }) {
|
|
104
98
|
name: n,
|
105
99
|
software: createSoftwareRung(n),
|
106
100
|
quadra: createQuadraRung(n),
|
107
|
-
logan: createLoganRung(n),
|
108
101
|
nvidia: createNvidiaRung(n),
|
109
|
-
ma35d: createMa35dRung(n)
|
110
102
|
};
|
111
103
|
})
|
112
104
|
}
|
@@ -177,20 +169,6 @@ function createSoftwareRung(rung) {
|
|
177
169
|
return assertUnreachable(rung);
|
178
170
|
}
|
179
171
|
}
|
180
|
-
function createMa35dRung(rung) {
|
181
|
-
switch (rung) {
|
182
|
-
case 'h264_1920x1080':
|
183
|
-
return createMa35DHevcRungImpl({ name: rung, bitrate: 10_000 });
|
184
|
-
case 'h264_1280x720':
|
185
|
-
return createMa35DH264RungImpl({ name: rung, bitrate: 5_000 });
|
186
|
-
case 'h264_640x360':
|
187
|
-
return createMa35DH264RungImpl({ name: rung, bitrate: 2_000 });
|
188
|
-
case 'h264_320x180':
|
189
|
-
return createMa35DH264RungImpl({ name: rung, bitrate: 1_000 });
|
190
|
-
default:
|
191
|
-
return assertUnreachable(rung);
|
192
|
-
}
|
193
|
-
}
|
194
172
|
function createNvidiaRung(rung) {
|
195
173
|
switch (rung) {
|
196
174
|
case 'h264_1920x1080':
|
@@ -219,20 +197,6 @@ function createQuadraRung(rung) {
|
|
219
197
|
return assertUnreachable(rung);
|
220
198
|
}
|
221
199
|
}
|
222
|
-
function createLoganRung(rung) {
|
223
|
-
switch (rung) {
|
224
|
-
case 'h264_1920x1080':
|
225
|
-
return createLoganRungImpl({ name: rung, bitrate: 5_000_000 });
|
226
|
-
case 'h264_1280x720':
|
227
|
-
return createLoganRungImpl({ name: rung, bitrate: 2_500_000 });
|
228
|
-
case 'h264_640x360':
|
229
|
-
return createLoganRungImpl({ name: rung, bitrate: 1_000_000 });
|
230
|
-
case 'h264_320x180':
|
231
|
-
return createLoganRungImpl({ name: rung, bitrate: 800_000 });
|
232
|
-
default:
|
233
|
-
return assertUnreachable(rung);
|
234
|
-
}
|
235
|
-
}
|
236
200
|
function createRungImpl({ name, threads, bitrate }) {
|
237
201
|
const codec = {
|
238
202
|
type: "x264",
|
@@ -255,34 +219,6 @@ function createRungImpl({ name, threads, bitrate }) {
|
|
255
219
|
frameRate: { frames: 25, seconds: 1 },
|
256
220
|
};
|
257
221
|
}
|
258
|
-
function createMa35DHevcRungImpl({ name, bitrate }) {
|
259
|
-
const codec = {
|
260
|
-
type: "amdMA35D-hevc",
|
261
|
-
profile: "main",
|
262
|
-
rateControl: { mode: "cbr", bitrate: bitrate },
|
263
|
-
gopSize: 50,
|
264
|
-
};
|
265
|
-
return {
|
266
|
-
width: rungWidth(name),
|
267
|
-
height: rungHeight(name),
|
268
|
-
codec,
|
269
|
-
frameRate: { frames: 25, seconds: 1 },
|
270
|
-
};
|
271
|
-
}
|
272
|
-
function createMa35DH264RungImpl({ name, bitrate }) {
|
273
|
-
const codec = {
|
274
|
-
type: "amdMA35D-h264",
|
275
|
-
profile: "main",
|
276
|
-
rateControl: { mode: "cbr", bitrate: bitrate },
|
277
|
-
gopSize: 50,
|
278
|
-
};
|
279
|
-
return {
|
280
|
-
width: rungWidth(name),
|
281
|
-
height: rungHeight(name),
|
282
|
-
codec,
|
283
|
-
frameRate: { frames: 25, seconds: 1 },
|
284
|
-
};
|
285
|
-
}
|
286
222
|
function createQuadraRungImpl({ name, bitrate }) {
|
287
223
|
const codec = {
|
288
224
|
type: "quadra-h264",
|
@@ -296,19 +232,6 @@ function createQuadraRungImpl({ name, bitrate }) {
|
|
296
232
|
frameRate: { frames: 25, seconds: 1 },
|
297
233
|
};
|
298
234
|
}
|
299
|
-
function createLoganRungImpl({ name, bitrate }) {
|
300
|
-
const codec = {
|
301
|
-
type: "logan-h264",
|
302
|
-
intraPeriod: 50,
|
303
|
-
bitrate
|
304
|
-
};
|
305
|
-
return {
|
306
|
-
width: rungWidth(name),
|
307
|
-
height: rungHeight(name),
|
308
|
-
codec,
|
309
|
-
frameRate: { frames: 25, seconds: 1 },
|
310
|
-
};
|
311
|
-
}
|
312
235
|
function createNvidiaRungImpl({ name, bitrate }) {
|
313
236
|
const codec = {
|
314
237
|
type: "nv-h264",
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"info.js","sourceRoot":"","sources":["../../src/processor.fixedLadder/info.ts"],"names":[],"mappings":";;;;;;AAcA,
|
1
|
+
{"version":3,"file":"info.js","sourceRoot":"","sources":["../../src/processor.fixedLadder/info.ts"],"names":[],"mappings":"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"}
|
@@ -4,12 +4,10 @@ import { HardwareAccelerationType } from '@norskvideo/norsk-studio/lib/shared/co
|
|
4
4
|
import { components } from './types';
|
5
5
|
import { Norsk } from '@norskvideo/norsk-sdk';
|
6
6
|
export type SoftwareLadderRung = components['schemas']['softwareLadderRung'];
|
7
|
-
export type Ma35dLadderRung = components['schemas']['ma35dLadderRung'];
|
8
|
-
export type LoganLadderRung = components['schemas']['loganLadderRung'];
|
9
7
|
export type NvidiaLadderRung = components['schemas']['nvidiaLadderRung'];
|
10
8
|
export type QuadraLadderRung = components['schemas']['quadraLadderRung'];
|
11
9
|
export type LadderRungDefinition = components['schemas']['ladderRungDefinition'];
|
12
|
-
type HardwareType = Extract<HardwareAccelerationType, "quadra" | "
|
10
|
+
type HardwareType = Extract<HardwareAccelerationType, "quadra" | "nvidia"> | "software";
|
13
11
|
export type FixedLadderConfig = Omit<components["schemas"]["fixedLadderConfig"], "__global"> & {
|
14
12
|
__global: {
|
15
13
|
hardware?: HardwareType;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"runtime.js","sourceRoot":"","sources":["../../src/processor.fixedLadder/runtime.ts"],"names":[],"mappings":";;;;;AACA,kFAA2F;AAE3F,yEAAyE;AAGzE,gDAAwB;AACxB,+CAAoD;
|
1
|
+
{"version":3,"file":"runtime.js","sourceRoot":"","sources":["../../src/processor.fixedLadder/runtime.ts"],"names":[],"mappings":";;;;;AACA,kFAA2F;AAE3F,yEAAyE;AAGzE,gDAAwB;AACxB,+CAAoD;AAgBpD,MAAqB,qBAAqB;IACxC,KAAK,CAAC,MAAM,CAAC,KAAY,EAAE,GAAsB,EAAE,EAAqC;QACtF,MAAM,OAAO,GAAG,IAAI,mCAAsB,CAAC,GAAG,CAAC,EAAE,EAAE,KAAK,IAAI,EAAE;YAC5D,OAAO,MAAM,KAAK,CAAC,SAAS,CAAC,SAAS,CAAC,WAAW,CAAC;gBACjD,EAAE,EAAE,GAAG,GAAG,CAAC,EAAE,SAAS;gBACtB,KAAK,EAAE,GAAG,CAAC,KAAK;qBACb,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,UAAU,CAAC,CAAC,EAAE,GAAG,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;qBAChD,MAAM,CAAC,CAAC,CAAC,EAAwB,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;aAC5C,CAAC,CAAC;QACL,CAAC,CAAC,CAAC;QACH,MAAM,OAAO,CAAC,WAAW,CAAC;QAC1B,EAAE,CAAC,OAAO,CAAC,CAAC;IACd,CAAC;IAGD,KAAK,CAAC,OAAO;QACX,OAAO,IAAA,yBAAe,EAAC,cAAI,CAAC,IAAI,CAAC,SAAS,EAAE,YAAY,CAAC,EACvD,EAAE,MAAM,EAAE,mBAAmB,EAAE,CAChC,CAAA;IACH,CAAC;CACF;AApBD,wCAoBC;AAED,SAAS,UAAU,CAAC,IAA0B,EAAE,QAAuB;IACrE,IAAI,QAAQ,IAAI,QAAQ,KAAK,UAAU,EAAE,CAAC;QACxC,OAAO,kBAAkB,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;IAC5C,CAAC;SAAM,CAAC;QACN,OAAO,kBAAkB,CAAC,IAAI,CAAC,CAAC;IAClC,CAAC;AACH,CAAC;AAED,SAAS,kBAAkB,CAAC,IAA0B,EAAE,QAA2C;IACjG,MAAM,UAAU,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC;IAClC,IAAI,CAAC,UAAU,EAAE,CAAC;QAChB,IAAA,oBAAU,EAAC,kDAAkD,EAAE,EAAE,IAAI,EAAE,IAAI,CAAC,IAAI,EAAE,CAAC,CAAA;QACnF,OAAO,kBAAkB,CAAC,IAAI,CAAC,CAAC;IAClC,CAAC;IACD,OAAO,EAAE,IAAI,EAAE,IAAI,CAAC,IAAI,EAAE,GAAG,UAAU,EAAE,CAAC;AAC5C,CAAC;AAED,SAAS,kBAAkB,CAAC,IAA0B;IACpD,MAAM,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC,CAAC;IACpC,IAAI,CAAC,UAAU,EAAE,CAAC;QAChB,IAAA,oBAAU,EAAC,uCAAuC,EAAE,EAAE,IAAI,EAAE,IAAI,CAAC,IAAI,EAAE,CAAC,CAAA;QACxE,OAAO,SAAS,CAAC;IACnB,CAAC;IACD,OAAO,EAAE,IAAI,EAAE,IAAI,CAAC,IAAI,EAAE,GAAG,UAAU,EAAE,CAAC;AAC5C,CAAC"}
|
@@ -25,91 +25,6 @@ export interface components {
|
|
25
25
|
noDeblock?: boolean;
|
26
26
|
nalHrd?: "none" | "vbr" | "cbr";
|
27
27
|
};
|
28
|
-
ma35dH264Codec: {
|
29
|
-
type: "amdMA35D-h264";
|
30
|
-
profile?: "baseline" | "main" | "high" | "high10";
|
31
|
-
level?: 1 | 2 | 2.1 | 3 | 3.1 | 4 | 4.1 | 5 | 5.1 | 5.2 | 6 | 6.1 | 6.2;
|
32
|
-
rateControl?: {
|
33
|
-
mode: "const-qp";
|
34
|
-
qp: number;
|
35
|
-
} | {
|
36
|
-
mode: "cbr";
|
37
|
-
bitrate: number;
|
38
|
-
} | {
|
39
|
-
mode: "vbr";
|
40
|
-
bitrate: number;
|
41
|
-
} | {
|
42
|
-
mode: "constrained-vbr";
|
43
|
-
bitrate: number;
|
44
|
-
maxBitrate: number;
|
45
|
-
bufSize: number;
|
46
|
-
} | {
|
47
|
-
mode: "content-adaptive";
|
48
|
-
bitrate: number;
|
49
|
-
maxBitrate: number;
|
50
|
-
bufSize: number;
|
51
|
-
};
|
52
|
-
lookaheadDepth?: number;
|
53
|
-
gopSize?: number;
|
54
|
-
tempAqGain?: number;
|
55
|
-
spatAqGain?: number;
|
56
|
-
minQp?: number;
|
57
|
-
maxQp?: number;
|
58
|
-
preset?: "fast" | "medium" | "slow";
|
59
|
-
crf?: number;
|
60
|
-
forcedIdr?: number;
|
61
|
-
bf?: number;
|
62
|
-
qpMode?: "relative-load" | "uniform";
|
63
|
-
spatialAq?: "auto" | "disable" | "enable";
|
64
|
-
temporalAq?: "auto" | "disable" | "enable";
|
65
|
-
dynamicGop?: "auto" | "disable" | "enable";
|
66
|
-
tuneMetrics?: "vq" | "psnr" | "ssim" | "vmaf";
|
67
|
-
latencyMs?: number;
|
68
|
-
delayInitialization?: number;
|
69
|
-
};
|
70
|
-
ma35dHevcCodec: {
|
71
|
-
type: "amdMA35D-hevc";
|
72
|
-
profile?: "main" | "main10";
|
73
|
-
level?: 1 | 2 | 2.1 | 3 | 3.1 | 4 | 4.1 | 5 | 5.1 | 5.2 | 6 | 6.1 | 6.2;
|
74
|
-
tier?: "main" | "high";
|
75
|
-
rateControl?: {
|
76
|
-
mode: "const-qp";
|
77
|
-
qp: number;
|
78
|
-
} | {
|
79
|
-
mode: "cbr";
|
80
|
-
bitrate: number;
|
81
|
-
} | {
|
82
|
-
mode: "vbr";
|
83
|
-
bitrate: number;
|
84
|
-
} | {
|
85
|
-
mode: "constrained-vbr";
|
86
|
-
bitrate: number;
|
87
|
-
maxBitrate: number;
|
88
|
-
bufSize: number;
|
89
|
-
} | {
|
90
|
-
mode: "content-adaptive";
|
91
|
-
bitrate: number;
|
92
|
-
maxBitrate: number;
|
93
|
-
bufSize: number;
|
94
|
-
};
|
95
|
-
lookaheadDepth?: number;
|
96
|
-
gopSize?: number;
|
97
|
-
tempAqGain?: number;
|
98
|
-
spatAqGain?: number;
|
99
|
-
minQp?: number;
|
100
|
-
maxQp?: number;
|
101
|
-
preset?: "fast" | "medium" | "slow";
|
102
|
-
crf?: number;
|
103
|
-
forcedIdr?: number;
|
104
|
-
bf?: number;
|
105
|
-
qpMode?: "relative-load" | "uniform";
|
106
|
-
spatialAq?: "auto" | "disable" | "enable";
|
107
|
-
temporalAq?: "auto" | "disable" | "enable";
|
108
|
-
dynamicGop?: "auto" | "disable" | "enable";
|
109
|
-
tuneMetrics?: "vq" | "psnr" | "ssim" | "vmaf";
|
110
|
-
latencyMs?: number;
|
111
|
-
delayInitialization?: number;
|
112
|
-
};
|
113
28
|
quadraH264Codec: {
|
114
29
|
type: "quadra-h264";
|
115
30
|
extraOpts?: string;
|
@@ -134,24 +49,6 @@ export interface components {
|
|
134
49
|
vbvBufferSize?: number;
|
135
50
|
vbvMaxRate?: number;
|
136
51
|
};
|
137
|
-
loganH264Codec: {
|
138
|
-
type: "logan-h264";
|
139
|
-
extraOpts?: string;
|
140
|
-
enableAud?: boolean;
|
141
|
-
gpuIndex?: number;
|
142
|
-
bitrate?: number;
|
143
|
-
flushGop?: boolean;
|
144
|
-
enableVfr?: boolean;
|
145
|
-
crf?: number;
|
146
|
-
cbr?: boolean;
|
147
|
-
gopPresetIndex?: number;
|
148
|
-
intraPeriod?: number;
|
149
|
-
rcEnable?: boolean;
|
150
|
-
intraQp?: number;
|
151
|
-
rcInitDelay?: number;
|
152
|
-
profile?: "baseline" | "main" | "extended" | "high" | "high10";
|
153
|
-
level?: 1 | 2 | 2.1 | 3 | 3.1 | 4 | 4.1 | 5 | 5.1 | 5.2 | 6 | 6.1 | 6.2;
|
154
|
-
};
|
155
52
|
nvidiaH264Codec: {
|
156
53
|
type: "nv-h264";
|
157
54
|
preset?: "p1" | "p2" | "p3" | "p4" | "p5" | "p6" | "p7";
|
@@ -188,18 +85,6 @@ export interface components {
|
|
188
85
|
codec: components["schemas"]["x264Codec"];
|
189
86
|
frameRate: components["schemas"]["frameRate"];
|
190
87
|
};
|
191
|
-
ma35dLadderRung: {
|
192
|
-
width: number;
|
193
|
-
height: number;
|
194
|
-
codec: components["schemas"]["ma35dH264Codec"] | components["schemas"]["ma35dHevcCodec"];
|
195
|
-
frameRate: components["schemas"]["frameRate"];
|
196
|
-
};
|
197
|
-
loganLadderRung: {
|
198
|
-
width: number;
|
199
|
-
height: number;
|
200
|
-
codec: components["schemas"]["loganH264Codec"];
|
201
|
-
frameRate: components["schemas"]["frameRate"];
|
202
|
-
};
|
203
88
|
nvidiaLadderRung: {
|
204
89
|
width: number;
|
205
90
|
height: number;
|
@@ -219,14 +104,12 @@ export interface components {
|
|
219
104
|
ladderRungDefinition: {
|
220
105
|
name: string;
|
221
106
|
software?: components["schemas"]["softwareLadderRung"];
|
222
|
-
ma35d?: components["schemas"]["ma35dLadderRung"];
|
223
|
-
logan?: components["schemas"]["loganLadderRung"];
|
224
107
|
nvidia?: components["schemas"]["nvidiaLadderRung"];
|
225
108
|
quadra?: components["schemas"]["quadraLadderRung"];
|
226
109
|
};
|
227
110
|
fixedLadderConfig: {
|
228
111
|
__global?: {
|
229
|
-
hardware?: "software" | "
|
112
|
+
hardware?: "software" | "nvidia" | "quadra";
|
230
113
|
};
|
231
114
|
id: string;
|
232
115
|
displayName: string;
|
@@ -59,217 +59,6 @@ components:
|
|
59
59
|
enum: ["none", "vbr", "cbr"]
|
60
60
|
required: ['type']
|
61
61
|
|
62
|
-
ma35dH264Codec:
|
63
|
-
type: object
|
64
|
-
properties:
|
65
|
-
type:
|
66
|
-
type: string
|
67
|
-
enum: ['amdMA35D-h264']
|
68
|
-
profile:
|
69
|
-
type: string
|
70
|
-
enum: ['baseline', 'main', 'high', 'high10']
|
71
|
-
level:
|
72
|
-
type: number
|
73
|
-
enum: [1, 2, 2.1, 3, 3.1, 4, 4.1, 5, 5.1, 5.2, 6, 6.1, 6.2]
|
74
|
-
rateControl:
|
75
|
-
oneOf:
|
76
|
-
- type: object
|
77
|
-
properties:
|
78
|
-
mode:
|
79
|
-
type: string
|
80
|
-
enum: ['const-qp']
|
81
|
-
qp:
|
82
|
-
type: number
|
83
|
-
required: ['mode', 'qp']
|
84
|
-
- type: object
|
85
|
-
properties:
|
86
|
-
mode:
|
87
|
-
type: string
|
88
|
-
enum: ['cbr']
|
89
|
-
bitrate:
|
90
|
-
type: number
|
91
|
-
required: ['mode', 'bitrate']
|
92
|
-
- type: object
|
93
|
-
properties:
|
94
|
-
mode:
|
95
|
-
type: string
|
96
|
-
enum: ['vbr']
|
97
|
-
bitrate:
|
98
|
-
type: number
|
99
|
-
required: ['mode', 'bitrate']
|
100
|
-
- type: object
|
101
|
-
properties:
|
102
|
-
mode:
|
103
|
-
type: string
|
104
|
-
enum: ['constrained-vbr']
|
105
|
-
bitrate:
|
106
|
-
type: number
|
107
|
-
maxBitrate:
|
108
|
-
type: number
|
109
|
-
bufSize:
|
110
|
-
type: number
|
111
|
-
required: ['mode', 'bitrate', 'maxBitrate', 'bufSize']
|
112
|
-
- type: object
|
113
|
-
properties:
|
114
|
-
mode:
|
115
|
-
type: string
|
116
|
-
enum: ['content-adaptive']
|
117
|
-
bitrate:
|
118
|
-
type: number
|
119
|
-
maxBitrate:
|
120
|
-
type: number
|
121
|
-
bufSize:
|
122
|
-
type: number
|
123
|
-
required: ['mode', 'bitrate', 'maxBitrate', 'bufSize']
|
124
|
-
lookaheadDepth:
|
125
|
-
type: number
|
126
|
-
gopSize:
|
127
|
-
type: number
|
128
|
-
tempAqGain:
|
129
|
-
type: number
|
130
|
-
spatAqGain:
|
131
|
-
type: number
|
132
|
-
minQp:
|
133
|
-
type: number
|
134
|
-
maxQp:
|
135
|
-
type: number
|
136
|
-
preset:
|
137
|
-
type: string
|
138
|
-
enum: ['fast', 'medium', 'slow']
|
139
|
-
crf:
|
140
|
-
type: number
|
141
|
-
forcedIdr:
|
142
|
-
type: number
|
143
|
-
bf:
|
144
|
-
type: number
|
145
|
-
qpMode:
|
146
|
-
type: string
|
147
|
-
enum: ['relative-load', 'uniform']
|
148
|
-
spatialAq:
|
149
|
-
type: string
|
150
|
-
enum: ['auto', 'disable', 'enable']
|
151
|
-
temporalAq:
|
152
|
-
type: string
|
153
|
-
enum: ['auto', 'disable', 'enable']
|
154
|
-
dynamicGop:
|
155
|
-
type: string
|
156
|
-
enum: ['auto', 'disable', 'enable']
|
157
|
-
tuneMetrics:
|
158
|
-
type: string
|
159
|
-
enum: ['vq', 'psnr', 'ssim', 'vmaf']
|
160
|
-
latencyMs:
|
161
|
-
type: number
|
162
|
-
delayInitialization:
|
163
|
-
type: number
|
164
|
-
required: ['type']
|
165
|
-
|
166
|
-
ma35dHevcCodec:
|
167
|
-
type: object
|
168
|
-
properties:
|
169
|
-
type:
|
170
|
-
type: string
|
171
|
-
enum: ['amdMA35D-hevc']
|
172
|
-
profile:
|
173
|
-
type: string
|
174
|
-
enum: ['main', 'main10']
|
175
|
-
level:
|
176
|
-
type: number
|
177
|
-
enum: [1, 2, 2.1, 3, 3.1, 4, 4.1, 5, 5.1, 5.2, 6, 6.1, 6.2]
|
178
|
-
tier:
|
179
|
-
type: string
|
180
|
-
enum: ['main', 'high']
|
181
|
-
rateControl:
|
182
|
-
oneOf:
|
183
|
-
- type: object
|
184
|
-
properties:
|
185
|
-
mode:
|
186
|
-
type: string
|
187
|
-
enum: ['const-qp']
|
188
|
-
qp:
|
189
|
-
type: number
|
190
|
-
required: ['mode', 'qp']
|
191
|
-
- type: object
|
192
|
-
properties:
|
193
|
-
mode:
|
194
|
-
type: string
|
195
|
-
enum: ['cbr']
|
196
|
-
bitrate:
|
197
|
-
type: number
|
198
|
-
required: ['mode', 'bitrate']
|
199
|
-
- type: object
|
200
|
-
properties:
|
201
|
-
mode:
|
202
|
-
type: string
|
203
|
-
enum: ['vbr']
|
204
|
-
bitrate:
|
205
|
-
type: number
|
206
|
-
required: ['mode', 'bitrate']
|
207
|
-
- type: object
|
208
|
-
properties:
|
209
|
-
mode:
|
210
|
-
type: string
|
211
|
-
enum: ['constrained-vbr']
|
212
|
-
bitrate:
|
213
|
-
type: number
|
214
|
-
maxBitrate:
|
215
|
-
type: number
|
216
|
-
bufSize:
|
217
|
-
type: number
|
218
|
-
required: ['mode', 'bitrate', 'maxBitrate', 'bufSize']
|
219
|
-
- type: object
|
220
|
-
properties:
|
221
|
-
mode:
|
222
|
-
type: string
|
223
|
-
enum: ['content-adaptive']
|
224
|
-
bitrate:
|
225
|
-
type: number
|
226
|
-
maxBitrate:
|
227
|
-
type: number
|
228
|
-
bufSize:
|
229
|
-
type: number
|
230
|
-
required: ['mode', 'bitrate', 'maxBitrate', 'bufSize']
|
231
|
-
lookaheadDepth:
|
232
|
-
type: number
|
233
|
-
gopSize:
|
234
|
-
type: number
|
235
|
-
tempAqGain:
|
236
|
-
type: number
|
237
|
-
spatAqGain:
|
238
|
-
type: number
|
239
|
-
minQp:
|
240
|
-
type: number
|
241
|
-
maxQp:
|
242
|
-
type: number
|
243
|
-
preset:
|
244
|
-
type: string
|
245
|
-
enum: ['fast', 'medium', 'slow']
|
246
|
-
crf:
|
247
|
-
type: number
|
248
|
-
forcedIdr:
|
249
|
-
type: number
|
250
|
-
bf:
|
251
|
-
type: number
|
252
|
-
qpMode:
|
253
|
-
type: string
|
254
|
-
enum: ['relative-load', 'uniform']
|
255
|
-
spatialAq:
|
256
|
-
type: string
|
257
|
-
enum: ['auto', 'disable', 'enable']
|
258
|
-
temporalAq:
|
259
|
-
type: string
|
260
|
-
enum: ['auto', 'disable', 'enable']
|
261
|
-
dynamicGop:
|
262
|
-
type: string
|
263
|
-
enum: ['auto', 'disable', 'enable']
|
264
|
-
tuneMetrics:
|
265
|
-
type: string
|
266
|
-
enum: ['vq', 'psnr', 'ssim', 'vmaf']
|
267
|
-
latencyMs:
|
268
|
-
type: number
|
269
|
-
delayInitialization:
|
270
|
-
type: number
|
271
|
-
required: ['type']
|
272
|
-
|
273
62
|
quadraH264Codec:
|
274
63
|
type: object
|
275
64
|
properties:
|
@@ -322,46 +111,6 @@ components:
|
|
322
111
|
type: number
|
323
112
|
required: ['type']
|
324
113
|
|
325
|
-
loganH264Codec:
|
326
|
-
type: object
|
327
|
-
properties:
|
328
|
-
type:
|
329
|
-
type: string
|
330
|
-
enum: ['logan-h264']
|
331
|
-
extraOpts:
|
332
|
-
type: string
|
333
|
-
enableAud:
|
334
|
-
type: boolean
|
335
|
-
gpuIndex:
|
336
|
-
type: number
|
337
|
-
bitrate:
|
338
|
-
type: number
|
339
|
-
flushGop:
|
340
|
-
type: boolean
|
341
|
-
enableVfr:
|
342
|
-
type: boolean
|
343
|
-
crf:
|
344
|
-
type: number
|
345
|
-
cbr:
|
346
|
-
type: boolean
|
347
|
-
gopPresetIndex:
|
348
|
-
type: number
|
349
|
-
intraPeriod:
|
350
|
-
type: number
|
351
|
-
rcEnable:
|
352
|
-
type: boolean
|
353
|
-
intraQp:
|
354
|
-
type: number
|
355
|
-
rcInitDelay:
|
356
|
-
type: number
|
357
|
-
profile:
|
358
|
-
type: string
|
359
|
-
enum: ['baseline', 'main', 'extended', 'high', 'high10']
|
360
|
-
level:
|
361
|
-
type: number
|
362
|
-
enum: [1, 2, 2.1, 3, 3.1, 4, 4.1, 5, 5.1, 5.2, 6, 6.1, 6.2]
|
363
|
-
required: ['type']
|
364
|
-
|
365
114
|
nvidiaH264Codec:
|
366
115
|
type: object
|
367
116
|
properties:
|
@@ -445,35 +194,6 @@ components:
|
|
445
194
|
$ref: '#/components/schemas/frameRate'
|
446
195
|
required: ['width', 'height', 'codec', 'frameRate']
|
447
196
|
|
448
|
-
ma35dLadderRung:
|
449
|
-
type: object
|
450
|
-
properties:
|
451
|
-
width:
|
452
|
-
type: number
|
453
|
-
height:
|
454
|
-
type: number
|
455
|
-
codec:
|
456
|
-
oneOf:
|
457
|
-
- $ref: '#/components/schemas/ma35dH264Codec'
|
458
|
-
- $ref: '#/components/schemas/ma35dHevcCodec'
|
459
|
-
frameRate:
|
460
|
-
$ref: '#/components/schemas/frameRate'
|
461
|
-
required: ['width', 'height', 'codec', 'frameRate']
|
462
|
-
|
463
|
-
loganLadderRung:
|
464
|
-
type: object
|
465
|
-
properties:
|
466
|
-
width:
|
467
|
-
type: number
|
468
|
-
height:
|
469
|
-
type: number
|
470
|
-
codec:
|
471
|
-
oneOf:
|
472
|
-
- $ref: '#/components/schemas/loganH264Codec'
|
473
|
-
frameRate:
|
474
|
-
$ref: '#/components/schemas/frameRate'
|
475
|
-
required: ['width', 'height', 'codec', 'frameRate']
|
476
|
-
|
477
197
|
nvidiaLadderRung:
|
478
198
|
type: object
|
479
199
|
properties:
|
@@ -495,10 +215,10 @@ components:
|
|
495
215
|
type: number
|
496
216
|
height:
|
497
217
|
type: number
|
498
|
-
pipelineHints:
|
218
|
+
pipelineHints:
|
499
219
|
type: object
|
500
220
|
properties:
|
501
|
-
type:
|
221
|
+
type:
|
502
222
|
type: string
|
503
223
|
enum: ['quadra']
|
504
224
|
rescaler:
|
@@ -519,10 +239,6 @@ components:
|
|
519
239
|
type: string
|
520
240
|
software:
|
521
241
|
$ref: '#/components/schemas/softwareLadderRung'
|
522
|
-
ma35d:
|
523
|
-
$ref: '#/components/schemas/ma35dLadderRung'
|
524
|
-
logan:
|
525
|
-
$ref: '#/components/schemas/loganLadderRung'
|
526
242
|
nvidia:
|
527
243
|
$ref: '#/components/schemas/nvidiaLadderRung'
|
528
244
|
quadra:
|
@@ -537,7 +253,7 @@ components:
|
|
537
253
|
properties:
|
538
254
|
hardware:
|
539
255
|
type: string
|
540
|
-
enum: ['software', '
|
256
|
+
enum: ['software', 'nvidia', 'quadra']
|
541
257
|
id:
|
542
258
|
type: string
|
543
259
|
displayName:
|