@types/node-media-server 2.3.1 → 2.3.2
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.
node-media-server/README.md
CHANGED
|
@@ -53,29 +53,29 @@ interface AuthConfig {
|
|
|
53
53
|
|
|
54
54
|
interface TransConfig {
|
|
55
55
|
ffmpeg: string;
|
|
56
|
-
tasks: [
|
|
56
|
+
tasks: TransTaskConfig[];
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
interface RelayConfig {
|
|
60
|
-
tasks: [
|
|
60
|
+
tasks: RelayTaskConfig[];
|
|
61
61
|
ffmpeg: string;
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
interface FissionConfig {
|
|
65
65
|
ffmpeg: string;
|
|
66
|
-
tasks: [
|
|
66
|
+
tasks: FissionTaskConfig[];
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
interface TransTaskConfig {
|
|
70
70
|
app: string;
|
|
71
71
|
hls?: boolean;
|
|
72
72
|
hlsFlags?: string;
|
|
73
|
-
dash?:
|
|
73
|
+
dash?: boolean;
|
|
74
74
|
dashFlags?: string;
|
|
75
75
|
vc?: string;
|
|
76
|
-
vcParam?: [
|
|
76
|
+
vcParam?: string[];
|
|
77
77
|
ac?: string;
|
|
78
|
-
acParam?: [
|
|
78
|
+
acParam?: string[];
|
|
79
79
|
rtmp?: boolean;
|
|
80
80
|
rtmpApp?: string;
|
|
81
81
|
mp4?: boolean;
|
|
@@ -92,7 +92,7 @@ interface RelayTaskConfig {
|
|
|
92
92
|
|
|
93
93
|
interface FissionTaskConfig {
|
|
94
94
|
rule: string;
|
|
95
|
-
model: [
|
|
95
|
+
model: FissionTaskModel[];
|
|
96
96
|
}
|
|
97
97
|
|
|
98
98
|
interface FissionTaskModel {
|
|
@@ -115,7 +115,7 @@ export = NodeMediaServer;
|
|
|
115
115
|
````
|
|
116
116
|
|
|
117
117
|
### Additional Details
|
|
118
|
-
* Last updated:
|
|
118
|
+
* Last updated: Thu, 13 Oct 2022 20:32:53 GMT
|
|
119
119
|
* Dependencies: none
|
|
120
120
|
* Global values: none
|
|
121
121
|
|
node-media-server/index.d.ts
CHANGED
|
@@ -43,29 +43,29 @@ interface AuthConfig {
|
|
|
43
43
|
|
|
44
44
|
interface TransConfig {
|
|
45
45
|
ffmpeg: string;
|
|
46
|
-
tasks: [
|
|
46
|
+
tasks: TransTaskConfig[];
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
interface RelayConfig {
|
|
50
|
-
tasks: [
|
|
50
|
+
tasks: RelayTaskConfig[];
|
|
51
51
|
ffmpeg: string;
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
interface FissionConfig {
|
|
55
55
|
ffmpeg: string;
|
|
56
|
-
tasks: [
|
|
56
|
+
tasks: FissionTaskConfig[];
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
interface TransTaskConfig {
|
|
60
60
|
app: string;
|
|
61
61
|
hls?: boolean;
|
|
62
62
|
hlsFlags?: string;
|
|
63
|
-
dash?:
|
|
63
|
+
dash?: boolean;
|
|
64
64
|
dashFlags?: string;
|
|
65
65
|
vc?: string;
|
|
66
|
-
vcParam?: [
|
|
66
|
+
vcParam?: string[];
|
|
67
67
|
ac?: string;
|
|
68
|
-
acParam?: [
|
|
68
|
+
acParam?: string[];
|
|
69
69
|
rtmp?: boolean;
|
|
70
70
|
rtmpApp?: string;
|
|
71
71
|
mp4?: boolean;
|
|
@@ -82,7 +82,7 @@ interface RelayTaskConfig {
|
|
|
82
82
|
|
|
83
83
|
interface FissionTaskConfig {
|
|
84
84
|
rule: string;
|
|
85
|
-
model: [
|
|
85
|
+
model: FissionTaskModel[];
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
interface FissionTaskModel {
|
node-media-server/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node-media-server",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.2",
|
|
4
4
|
"description": "TypeScript definitions for node-media-server",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node-media-server",
|
|
6
6
|
"license": "MIT",
|
|
@@ -20,6 +20,6 @@
|
|
|
20
20
|
},
|
|
21
21
|
"scripts": {},
|
|
22
22
|
"dependencies": {},
|
|
23
|
-
"typesPublisherContentHash": "
|
|
24
|
-
"typeScriptVersion": "
|
|
23
|
+
"typesPublisherContentHash": "decb95e671bab3fd461ea207426a47c9eccbc7520e1804c8f4c8eafdeded7f14",
|
|
24
|
+
"typeScriptVersion": "4.1"
|
|
25
25
|
}
|