@norskvideo/norsk-sdk 1.0.388 → 1.0.389
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/dist/norsk-sdk.d.ts
CHANGED
|
@@ -1386,6 +1386,9 @@ export declare type ComposeMissingStreamBehaviour =
|
|
|
1386
1386
|
*/
|
|
1387
1387
|
| "wait_for_all";
|
|
1388
1388
|
|
|
1389
|
+
/**
|
|
1390
|
+
* The return result of a compose callback, directing which pixels to place where
|
|
1391
|
+
*/
|
|
1389
1392
|
export declare type ComposeOperation = {
|
|
1390
1393
|
/**
|
|
1391
1394
|
* The area within the source picture to include. This may be the full picture
|
|
@@ -5627,6 +5630,9 @@ export declare interface VancType2AncillaryId {
|
|
|
5627
5630
|
|
|
5628
5631
|
export { Version }
|
|
5629
5632
|
|
|
5633
|
+
/**
|
|
5634
|
+
* Helpers for generating standard compose results
|
|
5635
|
+
*/
|
|
5630
5636
|
export declare const VideoComposeDefaults: {
|
|
5631
5637
|
/**
|
|
5632
5638
|
* Takes the whole input part and renders it over the whole output video, scaling it as required to fit
|
|
@@ -5668,6 +5674,9 @@ export declare class VideoComposeNode<Pins extends string> extends ProcessorMedi
|
|
|
5668
5674
|
doConfigUpdate(): void;
|
|
5669
5675
|
}
|
|
5670
5676
|
|
|
5677
|
+
/**
|
|
5678
|
+
* Settings for a VideoCompose node
|
|
5679
|
+
*/
|
|
5671
5680
|
export declare interface VideoComposeSettings<Pins extends string> extends ProcessorNodeSettings<VideoComposeNode<Pins>> {
|
|
5672
5681
|
/**
|
|
5673
5682
|
* Required. Pin name of the reference stream. This is the video stream
|
package/lib/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"license": "MIT",
|
|
3
3
|
"name": "@norskvideo/norsk-sdk",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.389",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@bufbuild/protobuf": "^0.3.0",
|
|
7
7
|
"@grpc/grpc-js": "^1.2.2",
|
|
8
|
-
"@norskvideo/norsk-api": "1.0.
|
|
8
|
+
"@norskvideo/norsk-api": "1.0.389",
|
|
9
9
|
"lodash": "^4.17.21",
|
|
10
10
|
"typescript-nullable": "^0.6.0"
|
|
11
11
|
},
|
|
@@ -506,6 +506,9 @@ export interface AudioWatermarkSettings extends ProcessorNodeSettings<AudioWater
|
|
|
506
506
|
*/
|
|
507
507
|
export declare class AudioWatermarkNode extends AutoProcessorMediaNode<"audio"> {
|
|
508
508
|
}
|
|
509
|
+
/**
|
|
510
|
+
* The return result of a compose callback, directing which pixels to place where
|
|
511
|
+
*/
|
|
509
512
|
export declare type ComposeOperation = {
|
|
510
513
|
/**
|
|
511
514
|
* The area within the source picture to include. This may be the full picture
|
|
@@ -517,6 +520,9 @@ export declare type ComposeOperation = {
|
|
|
517
520
|
*/
|
|
518
521
|
destRect: OffsetRect;
|
|
519
522
|
};
|
|
523
|
+
/**
|
|
524
|
+
* Helpers for generating standard compose results
|
|
525
|
+
*/
|
|
520
526
|
export declare const VideoComposeDefaults: {
|
|
521
527
|
/**
|
|
522
528
|
* Takes the whole input part and renders it over the whole output video, scaling it as required to fit
|
|
@@ -556,6 +562,9 @@ export interface PartTransition {
|
|
|
556
562
|
*/
|
|
557
563
|
easing?: SimpleEasing;
|
|
558
564
|
}
|
|
565
|
+
/**
|
|
566
|
+
* Settings for a VideoCompose node
|
|
567
|
+
*/
|
|
559
568
|
export interface VideoComposeSettings<Pins extends string> extends ProcessorNodeSettings<VideoComposeNode<Pins>> {
|
|
560
569
|
/**
|
|
561
570
|
* Required. Pin name of the reference stream. This is the video stream
|
|
@@ -1179,6 +1179,9 @@ class AudioWatermarkNode extends AutoProcessorMediaNode {
|
|
|
1179
1179
|
}
|
|
1180
1180
|
}
|
|
1181
1181
|
exports.AudioWatermarkNode = AudioWatermarkNode;
|
|
1182
|
+
/**
|
|
1183
|
+
* Helpers for generating standard compose results
|
|
1184
|
+
*/
|
|
1182
1185
|
exports.VideoComposeDefaults = {
|
|
1183
1186
|
/**
|
|
1184
1187
|
* Takes the whole input part and renders it over the whole output video, scaling it as required to fit
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"license": "MIT",
|
|
3
3
|
"name": "@norskvideo/norsk-sdk",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.389",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@bufbuild/protobuf": "^0.3.0",
|
|
7
7
|
"@grpc/grpc-js": "^1.2.2",
|
|
8
|
-
"@norskvideo/norsk-api": "1.0.
|
|
8
|
+
"@norskvideo/norsk-api": "1.0.389",
|
|
9
9
|
"lodash": "^4.17.21",
|
|
10
10
|
"typescript-nullable": "^0.6.0"
|
|
11
11
|
},
|