camstreamerlib 4.0.0-beta.103 → 4.0.0-beta.104
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/cjs/CamStreamerAPI.d.ts +76 -38
- package/cjs/types/CamStreamerAPI/CamStreamerAPI.d.ts +342 -171
- package/cjs/types/CamStreamerAPI/churchSchema.d.ts +6 -3
- package/cjs/types/CamStreamerAPI/daCastSchema.d.ts +6 -3
- package/cjs/types/CamStreamerAPI/dailymotionSchema.d.ts +6 -3
- package/cjs/types/CamStreamerAPI/facebookSchema.d.ts +6 -3
- package/cjs/types/CamStreamerAPI/gameChangerSchema.d.ts +6 -3
- package/cjs/types/CamStreamerAPI/hlsPullSchema.d.ts +6 -3
- package/cjs/types/CamStreamerAPI/hlsPushSchema.d.ts +6 -3
- package/cjs/types/CamStreamerAPI/ibmSchema.d.ts +6 -3
- package/cjs/types/CamStreamerAPI/microsoftAzureSchema.d.ts +6 -3
- package/cjs/types/CamStreamerAPI/microsoftStreamSchema.d.ts +6 -3
- package/cjs/types/CamStreamerAPI/mpegDvbSchema.d.ts +6 -3
- package/cjs/types/CamStreamerAPI/oldStreamSchema.d.ts +6 -6
- package/cjs/types/CamStreamerAPI/rtmpSchema.d.ts +6 -3
- package/cjs/types/CamStreamerAPI/sdCardSchema.d.ts +6 -3
- package/cjs/types/CamStreamerAPI/srtSchema.d.ts +6 -3
- package/cjs/types/CamStreamerAPI/streamCommonTypes.d.ts +7 -4
- package/cjs/types/CamStreamerAPI/streamCommonTypes.js +2 -6
- package/cjs/types/CamStreamerAPI/twitchSchema.d.ts +6 -3
- package/cjs/types/CamStreamerAPI/vimeoSchema.d.ts +6 -3
- package/cjs/types/CamStreamerAPI/windySchema.d.ts +6 -3
- package/cjs/types/CamStreamerAPI/wowzaSchema.d.ts +6 -3
- package/cjs/types/CamStreamerAPI/youtubeSchema.d.ts +6 -3
- package/esm/types/CamStreamerAPI/streamCommonTypes.js +2 -6
- package/package.json +1 -1
- package/types/CamStreamerAPI.d.ts +76 -38
- package/types/types/CamStreamerAPI/CamStreamerAPI.d.ts +342 -171
- package/types/types/CamStreamerAPI/churchSchema.d.ts +6 -3
- package/types/types/CamStreamerAPI/daCastSchema.d.ts +6 -3
- package/types/types/CamStreamerAPI/dailymotionSchema.d.ts +6 -3
- package/types/types/CamStreamerAPI/facebookSchema.d.ts +6 -3
- package/types/types/CamStreamerAPI/gameChangerSchema.d.ts +6 -3
- package/types/types/CamStreamerAPI/hlsPullSchema.d.ts +6 -3
- package/types/types/CamStreamerAPI/hlsPushSchema.d.ts +6 -3
- package/types/types/CamStreamerAPI/ibmSchema.d.ts +6 -3
- package/types/types/CamStreamerAPI/microsoftAzureSchema.d.ts +6 -3
- package/types/types/CamStreamerAPI/microsoftStreamSchema.d.ts +6 -3
- package/types/types/CamStreamerAPI/mpegDvbSchema.d.ts +6 -3
- package/types/types/CamStreamerAPI/oldStreamSchema.d.ts +6 -6
- package/types/types/CamStreamerAPI/rtmpSchema.d.ts +6 -3
- package/types/types/CamStreamerAPI/sdCardSchema.d.ts +6 -3
- package/types/types/CamStreamerAPI/srtSchema.d.ts +6 -3
- package/types/types/CamStreamerAPI/streamCommonTypes.d.ts +7 -4
- package/types/types/CamStreamerAPI/twitchSchema.d.ts +6 -3
- package/types/types/CamStreamerAPI/vimeoSchema.d.ts +6 -3
- package/types/types/CamStreamerAPI/windySchema.d.ts +6 -3
- package/types/types/CamStreamerAPI/wowzaSchema.d.ts +6 -3
- package/types/types/CamStreamerAPI/youtubeSchema.d.ts +6 -3
|
@@ -117,9 +117,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
117
117
|
}[];
|
|
118
118
|
}>]>;
|
|
119
119
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
120
|
+
inputUrl: z.ZodString;
|
|
120
121
|
internalVapixParameters: z.ZodString;
|
|
121
122
|
userVapixParameters: z.ZodString;
|
|
122
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
123
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
123
124
|
streamDelay: z.ZodObject<{
|
|
124
125
|
enabled: z.ZodBoolean;
|
|
125
126
|
timeS: z.ZodNumber;
|
|
@@ -221,9 +222,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
221
222
|
}[];
|
|
222
223
|
};
|
|
223
224
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
225
|
+
inputUrl: string;
|
|
224
226
|
internalVapixParameters: string;
|
|
225
227
|
userVapixParameters: string;
|
|
226
|
-
streamingProtocol: "
|
|
228
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
227
229
|
streamDelay: {
|
|
228
230
|
enabled: boolean;
|
|
229
231
|
timeS: number;
|
|
@@ -272,9 +274,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
272
274
|
}[];
|
|
273
275
|
};
|
|
274
276
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
277
|
+
inputUrl: string;
|
|
275
278
|
internalVapixParameters: string;
|
|
276
279
|
userVapixParameters: string;
|
|
277
|
-
streamingProtocol: "
|
|
280
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
278
281
|
streamDelay: {
|
|
279
282
|
enabled: boolean;
|
|
280
283
|
timeS: number;
|
|
@@ -379,9 +382,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
379
382
|
}[];
|
|
380
383
|
}>]>;
|
|
381
384
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
385
|
+
inputUrl: z.ZodString;
|
|
382
386
|
internalVapixParameters: z.ZodString;
|
|
383
387
|
userVapixParameters: z.ZodString;
|
|
384
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
388
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
385
389
|
streamDelay: z.ZodObject<{
|
|
386
390
|
enabled: z.ZodBoolean;
|
|
387
391
|
timeS: z.ZodNumber;
|
|
@@ -500,9 +504,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
500
504
|
}[];
|
|
501
505
|
};
|
|
502
506
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
507
|
+
inputUrl: string;
|
|
503
508
|
internalVapixParameters: string;
|
|
504
509
|
userVapixParameters: string;
|
|
505
|
-
streamingProtocol: "
|
|
510
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
506
511
|
streamDelay: {
|
|
507
512
|
enabled: boolean;
|
|
508
513
|
timeS: number;
|
|
@@ -567,9 +572,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
567
572
|
}[];
|
|
568
573
|
};
|
|
569
574
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
575
|
+
inputUrl: string;
|
|
570
576
|
internalVapixParameters: string;
|
|
571
577
|
userVapixParameters: string;
|
|
572
|
-
streamingProtocol: "
|
|
578
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
573
579
|
streamDelay: {
|
|
574
580
|
enabled: boolean;
|
|
575
581
|
timeS: number;
|
|
@@ -689,9 +695,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
689
695
|
}[];
|
|
690
696
|
}>]>;
|
|
691
697
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
698
|
+
inputUrl: z.ZodString;
|
|
692
699
|
internalVapixParameters: z.ZodString;
|
|
693
700
|
userVapixParameters: z.ZodString;
|
|
694
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
701
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
695
702
|
streamDelay: z.ZodObject<{
|
|
696
703
|
enabled: z.ZodBoolean;
|
|
697
704
|
timeS: z.ZodNumber;
|
|
@@ -796,9 +803,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
796
803
|
}[];
|
|
797
804
|
};
|
|
798
805
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
806
|
+
inputUrl: string;
|
|
799
807
|
internalVapixParameters: string;
|
|
800
808
|
userVapixParameters: string;
|
|
801
|
-
streamingProtocol: "
|
|
809
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
802
810
|
streamDelay: {
|
|
803
811
|
enabled: boolean;
|
|
804
812
|
timeS: number;
|
|
@@ -850,9 +858,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
850
858
|
}[];
|
|
851
859
|
};
|
|
852
860
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
861
|
+
inputUrl: string;
|
|
853
862
|
internalVapixParameters: string;
|
|
854
863
|
userVapixParameters: string;
|
|
855
|
-
streamingProtocol: "
|
|
864
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
856
865
|
streamDelay: {
|
|
857
866
|
enabled: boolean;
|
|
858
867
|
timeS: number;
|
|
@@ -960,9 +969,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
960
969
|
}[];
|
|
961
970
|
}>]>;
|
|
962
971
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
972
|
+
inputUrl: z.ZodString;
|
|
963
973
|
internalVapixParameters: z.ZodString;
|
|
964
974
|
userVapixParameters: z.ZodString;
|
|
965
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
975
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
966
976
|
streamDelay: z.ZodObject<{
|
|
967
977
|
enabled: z.ZodBoolean;
|
|
968
978
|
timeS: z.ZodNumber;
|
|
@@ -1064,9 +1074,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
1064
1074
|
}[];
|
|
1065
1075
|
};
|
|
1066
1076
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
1077
|
+
inputUrl: string;
|
|
1067
1078
|
internalVapixParameters: string;
|
|
1068
1079
|
userVapixParameters: string;
|
|
1069
|
-
streamingProtocol: "
|
|
1080
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
1070
1081
|
streamDelay: {
|
|
1071
1082
|
enabled: boolean;
|
|
1072
1083
|
timeS: number;
|
|
@@ -1115,9 +1126,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
1115
1126
|
}[];
|
|
1116
1127
|
};
|
|
1117
1128
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
1129
|
+
inputUrl: string;
|
|
1118
1130
|
internalVapixParameters: string;
|
|
1119
1131
|
userVapixParameters: string;
|
|
1120
|
-
streamingProtocol: "
|
|
1132
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
1121
1133
|
streamDelay: {
|
|
1122
1134
|
enabled: boolean;
|
|
1123
1135
|
timeS: number;
|
|
@@ -1222,9 +1234,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
1222
1234
|
}[];
|
|
1223
1235
|
}>]>;
|
|
1224
1236
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
1237
|
+
inputUrl: z.ZodString;
|
|
1225
1238
|
internalVapixParameters: z.ZodString;
|
|
1226
1239
|
userVapixParameters: z.ZodString;
|
|
1227
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
1240
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
1228
1241
|
streamDelay: z.ZodObject<{
|
|
1229
1242
|
enabled: z.ZodBoolean;
|
|
1230
1243
|
timeS: z.ZodNumber;
|
|
@@ -1326,9 +1339,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
1326
1339
|
}[];
|
|
1327
1340
|
};
|
|
1328
1341
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
1342
|
+
inputUrl: string;
|
|
1329
1343
|
internalVapixParameters: string;
|
|
1330
1344
|
userVapixParameters: string;
|
|
1331
|
-
streamingProtocol: "
|
|
1345
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
1332
1346
|
streamDelay: {
|
|
1333
1347
|
enabled: boolean;
|
|
1334
1348
|
timeS: number;
|
|
@@ -1377,9 +1391,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
1377
1391
|
}[];
|
|
1378
1392
|
};
|
|
1379
1393
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
1394
|
+
inputUrl: string;
|
|
1380
1395
|
internalVapixParameters: string;
|
|
1381
1396
|
userVapixParameters: string;
|
|
1382
|
-
streamingProtocol: "
|
|
1397
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
1383
1398
|
streamDelay: {
|
|
1384
1399
|
enabled: boolean;
|
|
1385
1400
|
timeS: number;
|
|
@@ -1484,9 +1499,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
1484
1499
|
}[];
|
|
1485
1500
|
}>]>;
|
|
1486
1501
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
1502
|
+
inputUrl: z.ZodString;
|
|
1487
1503
|
internalVapixParameters: z.ZodString;
|
|
1488
1504
|
userVapixParameters: z.ZodString;
|
|
1489
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
1505
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
1490
1506
|
streamDelay: z.ZodObject<{
|
|
1491
1507
|
enabled: z.ZodBoolean;
|
|
1492
1508
|
timeS: z.ZodNumber;
|
|
@@ -1602,9 +1618,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
1602
1618
|
}[];
|
|
1603
1619
|
};
|
|
1604
1620
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
1621
|
+
inputUrl: string;
|
|
1605
1622
|
internalVapixParameters: string;
|
|
1606
1623
|
userVapixParameters: string;
|
|
1607
|
-
streamingProtocol: "
|
|
1624
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
1608
1625
|
streamDelay: {
|
|
1609
1626
|
enabled: boolean;
|
|
1610
1627
|
timeS: number;
|
|
@@ -1667,9 +1684,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
1667
1684
|
}[];
|
|
1668
1685
|
};
|
|
1669
1686
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
1687
|
+
inputUrl: string;
|
|
1670
1688
|
internalVapixParameters: string;
|
|
1671
1689
|
userVapixParameters: string;
|
|
1672
|
-
streamingProtocol: "
|
|
1690
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
1673
1691
|
streamDelay: {
|
|
1674
1692
|
enabled: boolean;
|
|
1675
1693
|
timeS: number;
|
|
@@ -1788,9 +1806,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
1788
1806
|
}[];
|
|
1789
1807
|
}>]>;
|
|
1790
1808
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
1809
|
+
inputUrl: z.ZodString;
|
|
1791
1810
|
internalVapixParameters: z.ZodString;
|
|
1792
1811
|
userVapixParameters: z.ZodString;
|
|
1793
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
1812
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
1794
1813
|
streamDelay: z.ZodObject<{
|
|
1795
1814
|
enabled: z.ZodBoolean;
|
|
1796
1815
|
timeS: z.ZodNumber;
|
|
@@ -1892,9 +1911,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
1892
1911
|
}[];
|
|
1893
1912
|
};
|
|
1894
1913
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
1914
|
+
inputUrl: string;
|
|
1895
1915
|
internalVapixParameters: string;
|
|
1896
1916
|
userVapixParameters: string;
|
|
1897
|
-
streamingProtocol: "
|
|
1917
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
1898
1918
|
streamDelay: {
|
|
1899
1919
|
enabled: boolean;
|
|
1900
1920
|
timeS: number;
|
|
@@ -1943,9 +1963,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
1943
1963
|
}[];
|
|
1944
1964
|
};
|
|
1945
1965
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
1966
|
+
inputUrl: string;
|
|
1946
1967
|
internalVapixParameters: string;
|
|
1947
1968
|
userVapixParameters: string;
|
|
1948
|
-
streamingProtocol: "
|
|
1969
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
1949
1970
|
streamDelay: {
|
|
1950
1971
|
enabled: boolean;
|
|
1951
1972
|
timeS: number;
|
|
@@ -2050,9 +2071,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
2050
2071
|
}[];
|
|
2051
2072
|
}>]>;
|
|
2052
2073
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
2074
|
+
inputUrl: z.ZodString;
|
|
2053
2075
|
internalVapixParameters: z.ZodString;
|
|
2054
2076
|
userVapixParameters: z.ZodString;
|
|
2055
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
2077
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
2056
2078
|
streamDelay: z.ZodObject<{
|
|
2057
2079
|
enabled: z.ZodBoolean;
|
|
2058
2080
|
timeS: z.ZodNumber;
|
|
@@ -2154,9 +2176,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
2154
2176
|
}[];
|
|
2155
2177
|
};
|
|
2156
2178
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
2179
|
+
inputUrl: string;
|
|
2157
2180
|
internalVapixParameters: string;
|
|
2158
2181
|
userVapixParameters: string;
|
|
2159
|
-
streamingProtocol: "
|
|
2182
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
2160
2183
|
streamDelay: {
|
|
2161
2184
|
enabled: boolean;
|
|
2162
2185
|
timeS: number;
|
|
@@ -2205,9 +2228,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
2205
2228
|
}[];
|
|
2206
2229
|
};
|
|
2207
2230
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
2231
|
+
inputUrl: string;
|
|
2208
2232
|
internalVapixParameters: string;
|
|
2209
2233
|
userVapixParameters: string;
|
|
2210
|
-
streamingProtocol: "
|
|
2234
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
2211
2235
|
streamDelay: {
|
|
2212
2236
|
enabled: boolean;
|
|
2213
2237
|
timeS: number;
|
|
@@ -2312,9 +2336,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
2312
2336
|
}[];
|
|
2313
2337
|
}>]>;
|
|
2314
2338
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
2339
|
+
inputUrl: z.ZodString;
|
|
2315
2340
|
internalVapixParameters: z.ZodString;
|
|
2316
2341
|
userVapixParameters: z.ZodString;
|
|
2317
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
2342
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
2318
2343
|
streamDelay: z.ZodObject<{
|
|
2319
2344
|
enabled: z.ZodBoolean;
|
|
2320
2345
|
timeS: z.ZodNumber;
|
|
@@ -2416,9 +2441,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
2416
2441
|
}[];
|
|
2417
2442
|
};
|
|
2418
2443
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
2444
|
+
inputUrl: string;
|
|
2419
2445
|
internalVapixParameters: string;
|
|
2420
2446
|
userVapixParameters: string;
|
|
2421
|
-
streamingProtocol: "
|
|
2447
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
2422
2448
|
streamDelay: {
|
|
2423
2449
|
enabled: boolean;
|
|
2424
2450
|
timeS: number;
|
|
@@ -2467,9 +2493,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
2467
2493
|
}[];
|
|
2468
2494
|
};
|
|
2469
2495
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
2496
|
+
inputUrl: string;
|
|
2470
2497
|
internalVapixParameters: string;
|
|
2471
2498
|
userVapixParameters: string;
|
|
2472
|
-
streamingProtocol: "
|
|
2499
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
2473
2500
|
streamDelay: {
|
|
2474
2501
|
enabled: boolean;
|
|
2475
2502
|
timeS: number;
|
|
@@ -2574,9 +2601,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
2574
2601
|
}[];
|
|
2575
2602
|
}>]>;
|
|
2576
2603
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
2604
|
+
inputUrl: z.ZodString;
|
|
2577
2605
|
internalVapixParameters: z.ZodString;
|
|
2578
2606
|
userVapixParameters: z.ZodString;
|
|
2579
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
2607
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
2580
2608
|
streamDelay: z.ZodObject<{
|
|
2581
2609
|
enabled: z.ZodBoolean;
|
|
2582
2610
|
timeS: z.ZodNumber;
|
|
@@ -2678,9 +2706,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
2678
2706
|
}[];
|
|
2679
2707
|
};
|
|
2680
2708
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
2709
|
+
inputUrl: string;
|
|
2681
2710
|
internalVapixParameters: string;
|
|
2682
2711
|
userVapixParameters: string;
|
|
2683
|
-
streamingProtocol: "
|
|
2712
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
2684
2713
|
streamDelay: {
|
|
2685
2714
|
enabled: boolean;
|
|
2686
2715
|
timeS: number;
|
|
@@ -2729,9 +2758,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
2729
2758
|
}[];
|
|
2730
2759
|
};
|
|
2731
2760
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
2761
|
+
inputUrl: string;
|
|
2732
2762
|
internalVapixParameters: string;
|
|
2733
2763
|
userVapixParameters: string;
|
|
2734
|
-
streamingProtocol: "
|
|
2764
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
2735
2765
|
streamDelay: {
|
|
2736
2766
|
enabled: boolean;
|
|
2737
2767
|
timeS: number;
|
|
@@ -2836,9 +2866,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
2836
2866
|
}[];
|
|
2837
2867
|
}>]>;
|
|
2838
2868
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
2869
|
+
inputUrl: z.ZodString;
|
|
2839
2870
|
internalVapixParameters: z.ZodString;
|
|
2840
2871
|
userVapixParameters: z.ZodString;
|
|
2841
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
2872
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
2842
2873
|
streamDelay: z.ZodObject<{
|
|
2843
2874
|
enabled: z.ZodBoolean;
|
|
2844
2875
|
timeS: z.ZodNumber;
|
|
@@ -2940,9 +2971,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
2940
2971
|
}[];
|
|
2941
2972
|
};
|
|
2942
2973
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
2974
|
+
inputUrl: string;
|
|
2943
2975
|
internalVapixParameters: string;
|
|
2944
2976
|
userVapixParameters: string;
|
|
2945
|
-
streamingProtocol: "
|
|
2977
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
2946
2978
|
streamDelay: {
|
|
2947
2979
|
enabled: boolean;
|
|
2948
2980
|
timeS: number;
|
|
@@ -2991,9 +3023,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
2991
3023
|
}[];
|
|
2992
3024
|
};
|
|
2993
3025
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
3026
|
+
inputUrl: string;
|
|
2994
3027
|
internalVapixParameters: string;
|
|
2995
3028
|
userVapixParameters: string;
|
|
2996
|
-
streamingProtocol: "
|
|
3029
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
2997
3030
|
streamDelay: {
|
|
2998
3031
|
enabled: boolean;
|
|
2999
3032
|
timeS: number;
|
|
@@ -3098,9 +3131,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
3098
3131
|
}[];
|
|
3099
3132
|
}>]>;
|
|
3100
3133
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
3134
|
+
inputUrl: z.ZodString;
|
|
3101
3135
|
internalVapixParameters: z.ZodString;
|
|
3102
3136
|
userVapixParameters: z.ZodString;
|
|
3103
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
3137
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
3104
3138
|
streamDelay: z.ZodObject<{
|
|
3105
3139
|
enabled: z.ZodBoolean;
|
|
3106
3140
|
timeS: z.ZodNumber;
|
|
@@ -3202,9 +3236,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
3202
3236
|
}[];
|
|
3203
3237
|
};
|
|
3204
3238
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
3239
|
+
inputUrl: string;
|
|
3205
3240
|
internalVapixParameters: string;
|
|
3206
3241
|
userVapixParameters: string;
|
|
3207
|
-
streamingProtocol: "
|
|
3242
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
3208
3243
|
streamDelay: {
|
|
3209
3244
|
enabled: boolean;
|
|
3210
3245
|
timeS: number;
|
|
@@ -3253,9 +3288,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
3253
3288
|
}[];
|
|
3254
3289
|
};
|
|
3255
3290
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
3291
|
+
inputUrl: string;
|
|
3256
3292
|
internalVapixParameters: string;
|
|
3257
3293
|
userVapixParameters: string;
|
|
3258
|
-
streamingProtocol: "
|
|
3294
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
3259
3295
|
streamDelay: {
|
|
3260
3296
|
enabled: boolean;
|
|
3261
3297
|
timeS: number;
|
|
@@ -3360,9 +3396,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
3360
3396
|
}[];
|
|
3361
3397
|
}>]>;
|
|
3362
3398
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
3399
|
+
inputUrl: z.ZodString;
|
|
3363
3400
|
internalVapixParameters: z.ZodString;
|
|
3364
3401
|
userVapixParameters: z.ZodString;
|
|
3365
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
3402
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
3366
3403
|
streamDelay: z.ZodObject<{
|
|
3367
3404
|
enabled: z.ZodBoolean;
|
|
3368
3405
|
timeS: z.ZodNumber;
|
|
@@ -3464,9 +3501,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
3464
3501
|
}[];
|
|
3465
3502
|
};
|
|
3466
3503
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
3504
|
+
inputUrl: string;
|
|
3467
3505
|
internalVapixParameters: string;
|
|
3468
3506
|
userVapixParameters: string;
|
|
3469
|
-
streamingProtocol: "
|
|
3507
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
3470
3508
|
streamDelay: {
|
|
3471
3509
|
enabled: boolean;
|
|
3472
3510
|
timeS: number;
|
|
@@ -3515,9 +3553,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
3515
3553
|
}[];
|
|
3516
3554
|
};
|
|
3517
3555
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
3556
|
+
inputUrl: string;
|
|
3518
3557
|
internalVapixParameters: string;
|
|
3519
3558
|
userVapixParameters: string;
|
|
3520
|
-
streamingProtocol: "
|
|
3559
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
3521
3560
|
streamDelay: {
|
|
3522
3561
|
enabled: boolean;
|
|
3523
3562
|
timeS: number;
|
|
@@ -3622,9 +3661,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
3622
3661
|
}[];
|
|
3623
3662
|
}>]>;
|
|
3624
3663
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
3664
|
+
inputUrl: z.ZodString;
|
|
3625
3665
|
internalVapixParameters: z.ZodString;
|
|
3626
3666
|
userVapixParameters: z.ZodString;
|
|
3627
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
3667
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
3628
3668
|
streamDelay: z.ZodObject<{
|
|
3629
3669
|
enabled: z.ZodBoolean;
|
|
3630
3670
|
timeS: z.ZodNumber;
|
|
@@ -3726,9 +3766,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
3726
3766
|
}[];
|
|
3727
3767
|
};
|
|
3728
3768
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
3769
|
+
inputUrl: string;
|
|
3729
3770
|
internalVapixParameters: string;
|
|
3730
3771
|
userVapixParameters: string;
|
|
3731
|
-
streamingProtocol: "
|
|
3772
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
3732
3773
|
streamDelay: {
|
|
3733
3774
|
enabled: boolean;
|
|
3734
3775
|
timeS: number;
|
|
@@ -3777,9 +3818,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
3777
3818
|
}[];
|
|
3778
3819
|
};
|
|
3779
3820
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
3821
|
+
inputUrl: string;
|
|
3780
3822
|
internalVapixParameters: string;
|
|
3781
3823
|
userVapixParameters: string;
|
|
3782
|
-
streamingProtocol: "
|
|
3824
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
3783
3825
|
streamDelay: {
|
|
3784
3826
|
enabled: boolean;
|
|
3785
3827
|
timeS: number;
|
|
@@ -3884,9 +3926,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
3884
3926
|
}[];
|
|
3885
3927
|
}>]>;
|
|
3886
3928
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
3929
|
+
inputUrl: z.ZodString;
|
|
3887
3930
|
internalVapixParameters: z.ZodString;
|
|
3888
3931
|
userVapixParameters: z.ZodString;
|
|
3889
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
3932
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
3890
3933
|
streamDelay: z.ZodObject<{
|
|
3891
3934
|
enabled: z.ZodBoolean;
|
|
3892
3935
|
timeS: z.ZodNumber;
|
|
@@ -3988,9 +4031,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
3988
4031
|
}[];
|
|
3989
4032
|
};
|
|
3990
4033
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
4034
|
+
inputUrl: string;
|
|
3991
4035
|
internalVapixParameters: string;
|
|
3992
4036
|
userVapixParameters: string;
|
|
3993
|
-
streamingProtocol: "
|
|
4037
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
3994
4038
|
streamDelay: {
|
|
3995
4039
|
enabled: boolean;
|
|
3996
4040
|
timeS: number;
|
|
@@ -4039,9 +4083,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
4039
4083
|
}[];
|
|
4040
4084
|
};
|
|
4041
4085
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
4086
|
+
inputUrl: string;
|
|
4042
4087
|
internalVapixParameters: string;
|
|
4043
4088
|
userVapixParameters: string;
|
|
4044
|
-
streamingProtocol: "
|
|
4089
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
4045
4090
|
streamDelay: {
|
|
4046
4091
|
enabled: boolean;
|
|
4047
4092
|
timeS: number;
|
|
@@ -4146,9 +4191,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
4146
4191
|
}[];
|
|
4147
4192
|
}>]>;
|
|
4148
4193
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
4194
|
+
inputUrl: z.ZodString;
|
|
4149
4195
|
internalVapixParameters: z.ZodString;
|
|
4150
4196
|
userVapixParameters: z.ZodString;
|
|
4151
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
4197
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
4152
4198
|
streamDelay: z.ZodObject<{
|
|
4153
4199
|
enabled: z.ZodBoolean;
|
|
4154
4200
|
timeS: z.ZodNumber;
|
|
@@ -4250,9 +4296,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
4250
4296
|
}[];
|
|
4251
4297
|
};
|
|
4252
4298
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
4299
|
+
inputUrl: string;
|
|
4253
4300
|
internalVapixParameters: string;
|
|
4254
4301
|
userVapixParameters: string;
|
|
4255
|
-
streamingProtocol: "
|
|
4302
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
4256
4303
|
streamDelay: {
|
|
4257
4304
|
enabled: boolean;
|
|
4258
4305
|
timeS: number;
|
|
@@ -4301,9 +4348,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
4301
4348
|
}[];
|
|
4302
4349
|
};
|
|
4303
4350
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
4351
|
+
inputUrl: string;
|
|
4304
4352
|
internalVapixParameters: string;
|
|
4305
4353
|
userVapixParameters: string;
|
|
4306
|
-
streamingProtocol: "
|
|
4354
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
4307
4355
|
streamDelay: {
|
|
4308
4356
|
enabled: boolean;
|
|
4309
4357
|
timeS: number;
|
|
@@ -4408,9 +4456,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
4408
4456
|
}[];
|
|
4409
4457
|
}>]>;
|
|
4410
4458
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
4459
|
+
inputUrl: z.ZodString;
|
|
4411
4460
|
internalVapixParameters: z.ZodString;
|
|
4412
4461
|
userVapixParameters: z.ZodString;
|
|
4413
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
4462
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
4414
4463
|
streamDelay: z.ZodObject<{
|
|
4415
4464
|
enabled: z.ZodBoolean;
|
|
4416
4465
|
timeS: z.ZodNumber;
|
|
@@ -4512,9 +4561,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
4512
4561
|
}[];
|
|
4513
4562
|
};
|
|
4514
4563
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
4564
|
+
inputUrl: string;
|
|
4515
4565
|
internalVapixParameters: string;
|
|
4516
4566
|
userVapixParameters: string;
|
|
4517
|
-
streamingProtocol: "
|
|
4567
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
4518
4568
|
streamDelay: {
|
|
4519
4569
|
enabled: boolean;
|
|
4520
4570
|
timeS: number;
|
|
@@ -4563,9 +4613,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
4563
4613
|
}[];
|
|
4564
4614
|
};
|
|
4565
4615
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
4616
|
+
inputUrl: string;
|
|
4566
4617
|
internalVapixParameters: string;
|
|
4567
4618
|
userVapixParameters: string;
|
|
4568
|
-
streamingProtocol: "
|
|
4619
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
4569
4620
|
streamDelay: {
|
|
4570
4621
|
enabled: boolean;
|
|
4571
4622
|
timeS: number;
|
|
@@ -4670,9 +4721,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
4670
4721
|
}[];
|
|
4671
4722
|
}>]>;
|
|
4672
4723
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
4724
|
+
inputUrl: z.ZodString;
|
|
4673
4725
|
internalVapixParameters: z.ZodString;
|
|
4674
4726
|
userVapixParameters: z.ZodString;
|
|
4675
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
4727
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
4676
4728
|
streamDelay: z.ZodObject<{
|
|
4677
4729
|
enabled: z.ZodBoolean;
|
|
4678
4730
|
timeS: z.ZodNumber;
|
|
@@ -4774,9 +4826,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
4774
4826
|
}[];
|
|
4775
4827
|
};
|
|
4776
4828
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
4829
|
+
inputUrl: string;
|
|
4777
4830
|
internalVapixParameters: string;
|
|
4778
4831
|
userVapixParameters: string;
|
|
4779
|
-
streamingProtocol: "
|
|
4832
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
4780
4833
|
streamDelay: {
|
|
4781
4834
|
enabled: boolean;
|
|
4782
4835
|
timeS: number;
|
|
@@ -4825,9 +4878,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
4825
4878
|
}[];
|
|
4826
4879
|
};
|
|
4827
4880
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
4881
|
+
inputUrl: string;
|
|
4828
4882
|
internalVapixParameters: string;
|
|
4829
4883
|
userVapixParameters: string;
|
|
4830
|
-
streamingProtocol: "
|
|
4884
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
4831
4885
|
streamDelay: {
|
|
4832
4886
|
enabled: boolean;
|
|
4833
4887
|
timeS: number;
|
|
@@ -4932,9 +4986,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
4932
4986
|
}[];
|
|
4933
4987
|
}>]>;
|
|
4934
4988
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
4989
|
+
inputUrl: z.ZodString;
|
|
4935
4990
|
internalVapixParameters: z.ZodString;
|
|
4936
4991
|
userVapixParameters: z.ZodString;
|
|
4937
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
4992
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
4938
4993
|
streamDelay: z.ZodObject<{
|
|
4939
4994
|
enabled: z.ZodBoolean;
|
|
4940
4995
|
timeS: z.ZodNumber;
|
|
@@ -5036,9 +5091,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
5036
5091
|
}[];
|
|
5037
5092
|
};
|
|
5038
5093
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
5094
|
+
inputUrl: string;
|
|
5039
5095
|
internalVapixParameters: string;
|
|
5040
5096
|
userVapixParameters: string;
|
|
5041
|
-
streamingProtocol: "
|
|
5097
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
5042
5098
|
streamDelay: {
|
|
5043
5099
|
enabled: boolean;
|
|
5044
5100
|
timeS: number;
|
|
@@ -5087,9 +5143,10 @@ export declare const streamSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
5087
5143
|
}[];
|
|
5088
5144
|
};
|
|
5089
5145
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
5146
|
+
inputUrl: string;
|
|
5090
5147
|
internalVapixParameters: string;
|
|
5091
5148
|
userVapixParameters: string;
|
|
5092
|
-
streamingProtocol: "
|
|
5149
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
5093
5150
|
streamDelay: {
|
|
5094
5151
|
enabled: boolean;
|
|
5095
5152
|
timeS: number;
|
|
@@ -5197,9 +5254,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
5197
5254
|
}[];
|
|
5198
5255
|
}>]>;
|
|
5199
5256
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
5257
|
+
inputUrl: z.ZodString;
|
|
5200
5258
|
internalVapixParameters: z.ZodString;
|
|
5201
5259
|
userVapixParameters: z.ZodString;
|
|
5202
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
5260
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
5203
5261
|
streamDelay: z.ZodObject<{
|
|
5204
5262
|
enabled: z.ZodBoolean;
|
|
5205
5263
|
timeS: z.ZodNumber;
|
|
@@ -5301,9 +5359,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
5301
5359
|
}[];
|
|
5302
5360
|
};
|
|
5303
5361
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
5362
|
+
inputUrl: string;
|
|
5304
5363
|
internalVapixParameters: string;
|
|
5305
5364
|
userVapixParameters: string;
|
|
5306
|
-
streamingProtocol: "
|
|
5365
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
5307
5366
|
streamDelay: {
|
|
5308
5367
|
enabled: boolean;
|
|
5309
5368
|
timeS: number;
|
|
@@ -5352,9 +5411,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
5352
5411
|
}[];
|
|
5353
5412
|
};
|
|
5354
5413
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
5414
|
+
inputUrl: string;
|
|
5355
5415
|
internalVapixParameters: string;
|
|
5356
5416
|
userVapixParameters: string;
|
|
5357
|
-
streamingProtocol: "
|
|
5417
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
5358
5418
|
streamDelay: {
|
|
5359
5419
|
enabled: boolean;
|
|
5360
5420
|
timeS: number;
|
|
@@ -5459,9 +5519,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
5459
5519
|
}[];
|
|
5460
5520
|
}>]>;
|
|
5461
5521
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
5522
|
+
inputUrl: z.ZodString;
|
|
5462
5523
|
internalVapixParameters: z.ZodString;
|
|
5463
5524
|
userVapixParameters: z.ZodString;
|
|
5464
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
5525
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
5465
5526
|
streamDelay: z.ZodObject<{
|
|
5466
5527
|
enabled: z.ZodBoolean;
|
|
5467
5528
|
timeS: z.ZodNumber;
|
|
@@ -5580,9 +5641,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
5580
5641
|
}[];
|
|
5581
5642
|
};
|
|
5582
5643
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
5644
|
+
inputUrl: string;
|
|
5583
5645
|
internalVapixParameters: string;
|
|
5584
5646
|
userVapixParameters: string;
|
|
5585
|
-
streamingProtocol: "
|
|
5647
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
5586
5648
|
streamDelay: {
|
|
5587
5649
|
enabled: boolean;
|
|
5588
5650
|
timeS: number;
|
|
@@ -5647,9 +5709,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
5647
5709
|
}[];
|
|
5648
5710
|
};
|
|
5649
5711
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
5712
|
+
inputUrl: string;
|
|
5650
5713
|
internalVapixParameters: string;
|
|
5651
5714
|
userVapixParameters: string;
|
|
5652
|
-
streamingProtocol: "
|
|
5715
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
5653
5716
|
streamDelay: {
|
|
5654
5717
|
enabled: boolean;
|
|
5655
5718
|
timeS: number;
|
|
@@ -5769,9 +5832,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
5769
5832
|
}[];
|
|
5770
5833
|
}>]>;
|
|
5771
5834
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
5835
|
+
inputUrl: z.ZodString;
|
|
5772
5836
|
internalVapixParameters: z.ZodString;
|
|
5773
5837
|
userVapixParameters: z.ZodString;
|
|
5774
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
5838
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
5775
5839
|
streamDelay: z.ZodObject<{
|
|
5776
5840
|
enabled: z.ZodBoolean;
|
|
5777
5841
|
timeS: z.ZodNumber;
|
|
@@ -5876,9 +5940,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
5876
5940
|
}[];
|
|
5877
5941
|
};
|
|
5878
5942
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
5943
|
+
inputUrl: string;
|
|
5879
5944
|
internalVapixParameters: string;
|
|
5880
5945
|
userVapixParameters: string;
|
|
5881
|
-
streamingProtocol: "
|
|
5946
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
5882
5947
|
streamDelay: {
|
|
5883
5948
|
enabled: boolean;
|
|
5884
5949
|
timeS: number;
|
|
@@ -5930,9 +5995,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
5930
5995
|
}[];
|
|
5931
5996
|
};
|
|
5932
5997
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
5998
|
+
inputUrl: string;
|
|
5933
5999
|
internalVapixParameters: string;
|
|
5934
6000
|
userVapixParameters: string;
|
|
5935
|
-
streamingProtocol: "
|
|
6001
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
5936
6002
|
streamDelay: {
|
|
5937
6003
|
enabled: boolean;
|
|
5938
6004
|
timeS: number;
|
|
@@ -6040,9 +6106,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
6040
6106
|
}[];
|
|
6041
6107
|
}>]>;
|
|
6042
6108
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
6109
|
+
inputUrl: z.ZodString;
|
|
6043
6110
|
internalVapixParameters: z.ZodString;
|
|
6044
6111
|
userVapixParameters: z.ZodString;
|
|
6045
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
6112
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
6046
6113
|
streamDelay: z.ZodObject<{
|
|
6047
6114
|
enabled: z.ZodBoolean;
|
|
6048
6115
|
timeS: z.ZodNumber;
|
|
@@ -6144,9 +6211,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
6144
6211
|
}[];
|
|
6145
6212
|
};
|
|
6146
6213
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
6214
|
+
inputUrl: string;
|
|
6147
6215
|
internalVapixParameters: string;
|
|
6148
6216
|
userVapixParameters: string;
|
|
6149
|
-
streamingProtocol: "
|
|
6217
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
6150
6218
|
streamDelay: {
|
|
6151
6219
|
enabled: boolean;
|
|
6152
6220
|
timeS: number;
|
|
@@ -6195,9 +6263,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
6195
6263
|
}[];
|
|
6196
6264
|
};
|
|
6197
6265
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
6266
|
+
inputUrl: string;
|
|
6198
6267
|
internalVapixParameters: string;
|
|
6199
6268
|
userVapixParameters: string;
|
|
6200
|
-
streamingProtocol: "
|
|
6269
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
6201
6270
|
streamDelay: {
|
|
6202
6271
|
enabled: boolean;
|
|
6203
6272
|
timeS: number;
|
|
@@ -6302,9 +6371,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
6302
6371
|
}[];
|
|
6303
6372
|
}>]>;
|
|
6304
6373
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
6374
|
+
inputUrl: z.ZodString;
|
|
6305
6375
|
internalVapixParameters: z.ZodString;
|
|
6306
6376
|
userVapixParameters: z.ZodString;
|
|
6307
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
6377
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
6308
6378
|
streamDelay: z.ZodObject<{
|
|
6309
6379
|
enabled: z.ZodBoolean;
|
|
6310
6380
|
timeS: z.ZodNumber;
|
|
@@ -6406,9 +6476,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
6406
6476
|
}[];
|
|
6407
6477
|
};
|
|
6408
6478
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
6479
|
+
inputUrl: string;
|
|
6409
6480
|
internalVapixParameters: string;
|
|
6410
6481
|
userVapixParameters: string;
|
|
6411
|
-
streamingProtocol: "
|
|
6482
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
6412
6483
|
streamDelay: {
|
|
6413
6484
|
enabled: boolean;
|
|
6414
6485
|
timeS: number;
|
|
@@ -6457,9 +6528,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
6457
6528
|
}[];
|
|
6458
6529
|
};
|
|
6459
6530
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
6531
|
+
inputUrl: string;
|
|
6460
6532
|
internalVapixParameters: string;
|
|
6461
6533
|
userVapixParameters: string;
|
|
6462
|
-
streamingProtocol: "
|
|
6534
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
6463
6535
|
streamDelay: {
|
|
6464
6536
|
enabled: boolean;
|
|
6465
6537
|
timeS: number;
|
|
@@ -6564,9 +6636,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
6564
6636
|
}[];
|
|
6565
6637
|
}>]>;
|
|
6566
6638
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
6639
|
+
inputUrl: z.ZodString;
|
|
6567
6640
|
internalVapixParameters: z.ZodString;
|
|
6568
6641
|
userVapixParameters: z.ZodString;
|
|
6569
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
6642
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
6570
6643
|
streamDelay: z.ZodObject<{
|
|
6571
6644
|
enabled: z.ZodBoolean;
|
|
6572
6645
|
timeS: z.ZodNumber;
|
|
@@ -6682,9 +6755,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
6682
6755
|
}[];
|
|
6683
6756
|
};
|
|
6684
6757
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
6758
|
+
inputUrl: string;
|
|
6685
6759
|
internalVapixParameters: string;
|
|
6686
6760
|
userVapixParameters: string;
|
|
6687
|
-
streamingProtocol: "
|
|
6761
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
6688
6762
|
streamDelay: {
|
|
6689
6763
|
enabled: boolean;
|
|
6690
6764
|
timeS: number;
|
|
@@ -6747,9 +6821,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
6747
6821
|
}[];
|
|
6748
6822
|
};
|
|
6749
6823
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
6824
|
+
inputUrl: string;
|
|
6750
6825
|
internalVapixParameters: string;
|
|
6751
6826
|
userVapixParameters: string;
|
|
6752
|
-
streamingProtocol: "
|
|
6827
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
6753
6828
|
streamDelay: {
|
|
6754
6829
|
enabled: boolean;
|
|
6755
6830
|
timeS: number;
|
|
@@ -6868,9 +6943,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
6868
6943
|
}[];
|
|
6869
6944
|
}>]>;
|
|
6870
6945
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
6946
|
+
inputUrl: z.ZodString;
|
|
6871
6947
|
internalVapixParameters: z.ZodString;
|
|
6872
6948
|
userVapixParameters: z.ZodString;
|
|
6873
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
6949
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
6874
6950
|
streamDelay: z.ZodObject<{
|
|
6875
6951
|
enabled: z.ZodBoolean;
|
|
6876
6952
|
timeS: z.ZodNumber;
|
|
@@ -6972,9 +7048,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
6972
7048
|
}[];
|
|
6973
7049
|
};
|
|
6974
7050
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
7051
|
+
inputUrl: string;
|
|
6975
7052
|
internalVapixParameters: string;
|
|
6976
7053
|
userVapixParameters: string;
|
|
6977
|
-
streamingProtocol: "
|
|
7054
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
6978
7055
|
streamDelay: {
|
|
6979
7056
|
enabled: boolean;
|
|
6980
7057
|
timeS: number;
|
|
@@ -7023,9 +7100,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
7023
7100
|
}[];
|
|
7024
7101
|
};
|
|
7025
7102
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
7103
|
+
inputUrl: string;
|
|
7026
7104
|
internalVapixParameters: string;
|
|
7027
7105
|
userVapixParameters: string;
|
|
7028
|
-
streamingProtocol: "
|
|
7106
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
7029
7107
|
streamDelay: {
|
|
7030
7108
|
enabled: boolean;
|
|
7031
7109
|
timeS: number;
|
|
@@ -7130,9 +7208,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
7130
7208
|
}[];
|
|
7131
7209
|
}>]>;
|
|
7132
7210
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
7211
|
+
inputUrl: z.ZodString;
|
|
7133
7212
|
internalVapixParameters: z.ZodString;
|
|
7134
7213
|
userVapixParameters: z.ZodString;
|
|
7135
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
7214
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
7136
7215
|
streamDelay: z.ZodObject<{
|
|
7137
7216
|
enabled: z.ZodBoolean;
|
|
7138
7217
|
timeS: z.ZodNumber;
|
|
@@ -7234,9 +7313,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
7234
7313
|
}[];
|
|
7235
7314
|
};
|
|
7236
7315
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
7316
|
+
inputUrl: string;
|
|
7237
7317
|
internalVapixParameters: string;
|
|
7238
7318
|
userVapixParameters: string;
|
|
7239
|
-
streamingProtocol: "
|
|
7319
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
7240
7320
|
streamDelay: {
|
|
7241
7321
|
enabled: boolean;
|
|
7242
7322
|
timeS: number;
|
|
@@ -7285,9 +7365,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
7285
7365
|
}[];
|
|
7286
7366
|
};
|
|
7287
7367
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
7368
|
+
inputUrl: string;
|
|
7288
7369
|
internalVapixParameters: string;
|
|
7289
7370
|
userVapixParameters: string;
|
|
7290
|
-
streamingProtocol: "
|
|
7371
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
7291
7372
|
streamDelay: {
|
|
7292
7373
|
enabled: boolean;
|
|
7293
7374
|
timeS: number;
|
|
@@ -7392,9 +7473,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
7392
7473
|
}[];
|
|
7393
7474
|
}>]>;
|
|
7394
7475
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
7476
|
+
inputUrl: z.ZodString;
|
|
7395
7477
|
internalVapixParameters: z.ZodString;
|
|
7396
7478
|
userVapixParameters: z.ZodString;
|
|
7397
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
7479
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
7398
7480
|
streamDelay: z.ZodObject<{
|
|
7399
7481
|
enabled: z.ZodBoolean;
|
|
7400
7482
|
timeS: z.ZodNumber;
|
|
@@ -7496,9 +7578,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
7496
7578
|
}[];
|
|
7497
7579
|
};
|
|
7498
7580
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
7581
|
+
inputUrl: string;
|
|
7499
7582
|
internalVapixParameters: string;
|
|
7500
7583
|
userVapixParameters: string;
|
|
7501
|
-
streamingProtocol: "
|
|
7584
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
7502
7585
|
streamDelay: {
|
|
7503
7586
|
enabled: boolean;
|
|
7504
7587
|
timeS: number;
|
|
@@ -7547,9 +7630,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
7547
7630
|
}[];
|
|
7548
7631
|
};
|
|
7549
7632
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
7633
|
+
inputUrl: string;
|
|
7550
7634
|
internalVapixParameters: string;
|
|
7551
7635
|
userVapixParameters: string;
|
|
7552
|
-
streamingProtocol: "
|
|
7636
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
7553
7637
|
streamDelay: {
|
|
7554
7638
|
enabled: boolean;
|
|
7555
7639
|
timeS: number;
|
|
@@ -7654,9 +7738,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
7654
7738
|
}[];
|
|
7655
7739
|
}>]>;
|
|
7656
7740
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
7741
|
+
inputUrl: z.ZodString;
|
|
7657
7742
|
internalVapixParameters: z.ZodString;
|
|
7658
7743
|
userVapixParameters: z.ZodString;
|
|
7659
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
7744
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
7660
7745
|
streamDelay: z.ZodObject<{
|
|
7661
7746
|
enabled: z.ZodBoolean;
|
|
7662
7747
|
timeS: z.ZodNumber;
|
|
@@ -7758,9 +7843,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
7758
7843
|
}[];
|
|
7759
7844
|
};
|
|
7760
7845
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
7846
|
+
inputUrl: string;
|
|
7761
7847
|
internalVapixParameters: string;
|
|
7762
7848
|
userVapixParameters: string;
|
|
7763
|
-
streamingProtocol: "
|
|
7849
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
7764
7850
|
streamDelay: {
|
|
7765
7851
|
enabled: boolean;
|
|
7766
7852
|
timeS: number;
|
|
@@ -7809,9 +7895,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
7809
7895
|
}[];
|
|
7810
7896
|
};
|
|
7811
7897
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
7898
|
+
inputUrl: string;
|
|
7812
7899
|
internalVapixParameters: string;
|
|
7813
7900
|
userVapixParameters: string;
|
|
7814
|
-
streamingProtocol: "
|
|
7901
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
7815
7902
|
streamDelay: {
|
|
7816
7903
|
enabled: boolean;
|
|
7817
7904
|
timeS: number;
|
|
@@ -7916,9 +8003,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
7916
8003
|
}[];
|
|
7917
8004
|
}>]>;
|
|
7918
8005
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
8006
|
+
inputUrl: z.ZodString;
|
|
7919
8007
|
internalVapixParameters: z.ZodString;
|
|
7920
8008
|
userVapixParameters: z.ZodString;
|
|
7921
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
8009
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
7922
8010
|
streamDelay: z.ZodObject<{
|
|
7923
8011
|
enabled: z.ZodBoolean;
|
|
7924
8012
|
timeS: z.ZodNumber;
|
|
@@ -8020,9 +8108,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8020
8108
|
}[];
|
|
8021
8109
|
};
|
|
8022
8110
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
8111
|
+
inputUrl: string;
|
|
8023
8112
|
internalVapixParameters: string;
|
|
8024
8113
|
userVapixParameters: string;
|
|
8025
|
-
streamingProtocol: "
|
|
8114
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
8026
8115
|
streamDelay: {
|
|
8027
8116
|
enabled: boolean;
|
|
8028
8117
|
timeS: number;
|
|
@@ -8071,9 +8160,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8071
8160
|
}[];
|
|
8072
8161
|
};
|
|
8073
8162
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
8163
|
+
inputUrl: string;
|
|
8074
8164
|
internalVapixParameters: string;
|
|
8075
8165
|
userVapixParameters: string;
|
|
8076
|
-
streamingProtocol: "
|
|
8166
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
8077
8167
|
streamDelay: {
|
|
8078
8168
|
enabled: boolean;
|
|
8079
8169
|
timeS: number;
|
|
@@ -8178,9 +8268,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8178
8268
|
}[];
|
|
8179
8269
|
}>]>;
|
|
8180
8270
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
8271
|
+
inputUrl: z.ZodString;
|
|
8181
8272
|
internalVapixParameters: z.ZodString;
|
|
8182
8273
|
userVapixParameters: z.ZodString;
|
|
8183
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
8274
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
8184
8275
|
streamDelay: z.ZodObject<{
|
|
8185
8276
|
enabled: z.ZodBoolean;
|
|
8186
8277
|
timeS: z.ZodNumber;
|
|
@@ -8282,9 +8373,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8282
8373
|
}[];
|
|
8283
8374
|
};
|
|
8284
8375
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
8376
|
+
inputUrl: string;
|
|
8285
8377
|
internalVapixParameters: string;
|
|
8286
8378
|
userVapixParameters: string;
|
|
8287
|
-
streamingProtocol: "
|
|
8379
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
8288
8380
|
streamDelay: {
|
|
8289
8381
|
enabled: boolean;
|
|
8290
8382
|
timeS: number;
|
|
@@ -8333,9 +8425,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8333
8425
|
}[];
|
|
8334
8426
|
};
|
|
8335
8427
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
8428
|
+
inputUrl: string;
|
|
8336
8429
|
internalVapixParameters: string;
|
|
8337
8430
|
userVapixParameters: string;
|
|
8338
|
-
streamingProtocol: "
|
|
8431
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
8339
8432
|
streamDelay: {
|
|
8340
8433
|
enabled: boolean;
|
|
8341
8434
|
timeS: number;
|
|
@@ -8440,9 +8533,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8440
8533
|
}[];
|
|
8441
8534
|
}>]>;
|
|
8442
8535
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
8536
|
+
inputUrl: z.ZodString;
|
|
8443
8537
|
internalVapixParameters: z.ZodString;
|
|
8444
8538
|
userVapixParameters: z.ZodString;
|
|
8445
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
8539
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
8446
8540
|
streamDelay: z.ZodObject<{
|
|
8447
8541
|
enabled: z.ZodBoolean;
|
|
8448
8542
|
timeS: z.ZodNumber;
|
|
@@ -8544,9 +8638,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8544
8638
|
}[];
|
|
8545
8639
|
};
|
|
8546
8640
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
8641
|
+
inputUrl: string;
|
|
8547
8642
|
internalVapixParameters: string;
|
|
8548
8643
|
userVapixParameters: string;
|
|
8549
|
-
streamingProtocol: "
|
|
8644
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
8550
8645
|
streamDelay: {
|
|
8551
8646
|
enabled: boolean;
|
|
8552
8647
|
timeS: number;
|
|
@@ -8595,9 +8690,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8595
8690
|
}[];
|
|
8596
8691
|
};
|
|
8597
8692
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
8693
|
+
inputUrl: string;
|
|
8598
8694
|
internalVapixParameters: string;
|
|
8599
8695
|
userVapixParameters: string;
|
|
8600
|
-
streamingProtocol: "
|
|
8696
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
8601
8697
|
streamDelay: {
|
|
8602
8698
|
enabled: boolean;
|
|
8603
8699
|
timeS: number;
|
|
@@ -8702,9 +8798,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8702
8798
|
}[];
|
|
8703
8799
|
}>]>;
|
|
8704
8800
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
8801
|
+
inputUrl: z.ZodString;
|
|
8705
8802
|
internalVapixParameters: z.ZodString;
|
|
8706
8803
|
userVapixParameters: z.ZodString;
|
|
8707
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
8804
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
8708
8805
|
streamDelay: z.ZodObject<{
|
|
8709
8806
|
enabled: z.ZodBoolean;
|
|
8710
8807
|
timeS: z.ZodNumber;
|
|
@@ -8806,9 +8903,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8806
8903
|
}[];
|
|
8807
8904
|
};
|
|
8808
8905
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
8906
|
+
inputUrl: string;
|
|
8809
8907
|
internalVapixParameters: string;
|
|
8810
8908
|
userVapixParameters: string;
|
|
8811
|
-
streamingProtocol: "
|
|
8909
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
8812
8910
|
streamDelay: {
|
|
8813
8911
|
enabled: boolean;
|
|
8814
8912
|
timeS: number;
|
|
@@ -8857,9 +8955,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8857
8955
|
}[];
|
|
8858
8956
|
};
|
|
8859
8957
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
8958
|
+
inputUrl: string;
|
|
8860
8959
|
internalVapixParameters: string;
|
|
8861
8960
|
userVapixParameters: string;
|
|
8862
|
-
streamingProtocol: "
|
|
8961
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
8863
8962
|
streamDelay: {
|
|
8864
8963
|
enabled: boolean;
|
|
8865
8964
|
timeS: number;
|
|
@@ -8964,9 +9063,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
8964
9063
|
}[];
|
|
8965
9064
|
}>]>;
|
|
8966
9065
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
9066
|
+
inputUrl: z.ZodString;
|
|
8967
9067
|
internalVapixParameters: z.ZodString;
|
|
8968
9068
|
userVapixParameters: z.ZodString;
|
|
8969
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
9069
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
8970
9070
|
streamDelay: z.ZodObject<{
|
|
8971
9071
|
enabled: z.ZodBoolean;
|
|
8972
9072
|
timeS: z.ZodNumber;
|
|
@@ -9068,9 +9168,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9068
9168
|
}[];
|
|
9069
9169
|
};
|
|
9070
9170
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
9171
|
+
inputUrl: string;
|
|
9071
9172
|
internalVapixParameters: string;
|
|
9072
9173
|
userVapixParameters: string;
|
|
9073
|
-
streamingProtocol: "
|
|
9174
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
9074
9175
|
streamDelay: {
|
|
9075
9176
|
enabled: boolean;
|
|
9076
9177
|
timeS: number;
|
|
@@ -9119,9 +9220,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9119
9220
|
}[];
|
|
9120
9221
|
};
|
|
9121
9222
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
9223
|
+
inputUrl: string;
|
|
9122
9224
|
internalVapixParameters: string;
|
|
9123
9225
|
userVapixParameters: string;
|
|
9124
|
-
streamingProtocol: "
|
|
9226
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
9125
9227
|
streamDelay: {
|
|
9126
9228
|
enabled: boolean;
|
|
9127
9229
|
timeS: number;
|
|
@@ -9226,9 +9328,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9226
9328
|
}[];
|
|
9227
9329
|
}>]>;
|
|
9228
9330
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
9331
|
+
inputUrl: z.ZodString;
|
|
9229
9332
|
internalVapixParameters: z.ZodString;
|
|
9230
9333
|
userVapixParameters: z.ZodString;
|
|
9231
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
9334
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
9232
9335
|
streamDelay: z.ZodObject<{
|
|
9233
9336
|
enabled: z.ZodBoolean;
|
|
9234
9337
|
timeS: z.ZodNumber;
|
|
@@ -9330,9 +9433,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9330
9433
|
}[];
|
|
9331
9434
|
};
|
|
9332
9435
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
9436
|
+
inputUrl: string;
|
|
9333
9437
|
internalVapixParameters: string;
|
|
9334
9438
|
userVapixParameters: string;
|
|
9335
|
-
streamingProtocol: "
|
|
9439
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
9336
9440
|
streamDelay: {
|
|
9337
9441
|
enabled: boolean;
|
|
9338
9442
|
timeS: number;
|
|
@@ -9381,9 +9485,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9381
9485
|
}[];
|
|
9382
9486
|
};
|
|
9383
9487
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
9488
|
+
inputUrl: string;
|
|
9384
9489
|
internalVapixParameters: string;
|
|
9385
9490
|
userVapixParameters: string;
|
|
9386
|
-
streamingProtocol: "
|
|
9491
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
9387
9492
|
streamDelay: {
|
|
9388
9493
|
enabled: boolean;
|
|
9389
9494
|
timeS: number;
|
|
@@ -9488,9 +9593,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9488
9593
|
}[];
|
|
9489
9594
|
}>]>;
|
|
9490
9595
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
9596
|
+
inputUrl: z.ZodString;
|
|
9491
9597
|
internalVapixParameters: z.ZodString;
|
|
9492
9598
|
userVapixParameters: z.ZodString;
|
|
9493
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
9599
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
9494
9600
|
streamDelay: z.ZodObject<{
|
|
9495
9601
|
enabled: z.ZodBoolean;
|
|
9496
9602
|
timeS: z.ZodNumber;
|
|
@@ -9592,9 +9698,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9592
9698
|
}[];
|
|
9593
9699
|
};
|
|
9594
9700
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
9701
|
+
inputUrl: string;
|
|
9595
9702
|
internalVapixParameters: string;
|
|
9596
9703
|
userVapixParameters: string;
|
|
9597
|
-
streamingProtocol: "
|
|
9704
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
9598
9705
|
streamDelay: {
|
|
9599
9706
|
enabled: boolean;
|
|
9600
9707
|
timeS: number;
|
|
@@ -9643,9 +9750,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9643
9750
|
}[];
|
|
9644
9751
|
};
|
|
9645
9752
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
9753
|
+
inputUrl: string;
|
|
9646
9754
|
internalVapixParameters: string;
|
|
9647
9755
|
userVapixParameters: string;
|
|
9648
|
-
streamingProtocol: "
|
|
9756
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
9649
9757
|
streamDelay: {
|
|
9650
9758
|
enabled: boolean;
|
|
9651
9759
|
timeS: number;
|
|
@@ -9750,9 +9858,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9750
9858
|
}[];
|
|
9751
9859
|
}>]>;
|
|
9752
9860
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
9861
|
+
inputUrl: z.ZodString;
|
|
9753
9862
|
internalVapixParameters: z.ZodString;
|
|
9754
9863
|
userVapixParameters: z.ZodString;
|
|
9755
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
9864
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
9756
9865
|
streamDelay: z.ZodObject<{
|
|
9757
9866
|
enabled: z.ZodBoolean;
|
|
9758
9867
|
timeS: z.ZodNumber;
|
|
@@ -9854,9 +9963,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9854
9963
|
}[];
|
|
9855
9964
|
};
|
|
9856
9965
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
9966
|
+
inputUrl: string;
|
|
9857
9967
|
internalVapixParameters: string;
|
|
9858
9968
|
userVapixParameters: string;
|
|
9859
|
-
streamingProtocol: "
|
|
9969
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
9860
9970
|
streamDelay: {
|
|
9861
9971
|
enabled: boolean;
|
|
9862
9972
|
timeS: number;
|
|
@@ -9905,9 +10015,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
9905
10015
|
}[];
|
|
9906
10016
|
};
|
|
9907
10017
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
10018
|
+
inputUrl: string;
|
|
9908
10019
|
internalVapixParameters: string;
|
|
9909
10020
|
userVapixParameters: string;
|
|
9910
|
-
streamingProtocol: "
|
|
10021
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
9911
10022
|
streamDelay: {
|
|
9912
10023
|
enabled: boolean;
|
|
9913
10024
|
timeS: number;
|
|
@@ -10012,9 +10123,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10012
10123
|
}[];
|
|
10013
10124
|
}>]>;
|
|
10014
10125
|
inputType: z.ZodUnion<[z.ZodLiteral<"CSw">, z.ZodLiteral<"CRS">, z.ZodLiteral<"RTSP_URL">]>;
|
|
10126
|
+
inputUrl: z.ZodString;
|
|
10015
10127
|
internalVapixParameters: z.ZodString;
|
|
10016
10128
|
userVapixParameters: z.ZodString;
|
|
10017
|
-
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"
|
|
10129
|
+
streamingProtocol: z.ZodUnion<[z.ZodLiteral<"RTMP">, z.ZodLiteral<"RTMPS">, z.ZodLiteral<"HLS_PUSH">]>;
|
|
10018
10130
|
streamDelay: z.ZodObject<{
|
|
10019
10131
|
enabled: z.ZodBoolean;
|
|
10020
10132
|
timeS: z.ZodNumber;
|
|
@@ -10116,9 +10228,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10116
10228
|
}[];
|
|
10117
10229
|
};
|
|
10118
10230
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
10231
|
+
inputUrl: string;
|
|
10119
10232
|
internalVapixParameters: string;
|
|
10120
10233
|
userVapixParameters: string;
|
|
10121
|
-
streamingProtocol: "
|
|
10234
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
10122
10235
|
streamDelay: {
|
|
10123
10236
|
enabled: boolean;
|
|
10124
10237
|
timeS: number;
|
|
@@ -10167,9 +10280,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10167
10280
|
}[];
|
|
10168
10281
|
};
|
|
10169
10282
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
10283
|
+
inputUrl: string;
|
|
10170
10284
|
internalVapixParameters: string;
|
|
10171
10285
|
userVapixParameters: string;
|
|
10172
|
-
streamingProtocol: "
|
|
10286
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
10173
10287
|
streamDelay: {
|
|
10174
10288
|
enabled: boolean;
|
|
10175
10289
|
timeS: number;
|
|
@@ -10220,9 +10334,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10220
10334
|
}[];
|
|
10221
10335
|
};
|
|
10222
10336
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
10337
|
+
inputUrl: string;
|
|
10223
10338
|
internalVapixParameters: string;
|
|
10224
10339
|
userVapixParameters: string;
|
|
10225
|
-
streamingProtocol: "
|
|
10340
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
10226
10341
|
streamDelay: {
|
|
10227
10342
|
enabled: boolean;
|
|
10228
10343
|
timeS: number;
|
|
@@ -10272,9 +10387,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10272
10387
|
}[];
|
|
10273
10388
|
};
|
|
10274
10389
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
10390
|
+
inputUrl: string;
|
|
10275
10391
|
internalVapixParameters: string;
|
|
10276
10392
|
userVapixParameters: string;
|
|
10277
|
-
streamingProtocol: "
|
|
10393
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
10278
10394
|
streamDelay: {
|
|
10279
10395
|
enabled: boolean;
|
|
10280
10396
|
timeS: number;
|
|
@@ -10338,9 +10454,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10338
10454
|
}[];
|
|
10339
10455
|
};
|
|
10340
10456
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
10457
|
+
inputUrl: string;
|
|
10341
10458
|
internalVapixParameters: string;
|
|
10342
10459
|
userVapixParameters: string;
|
|
10343
|
-
streamingProtocol: "
|
|
10460
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
10344
10461
|
streamDelay: {
|
|
10345
10462
|
enabled: boolean;
|
|
10346
10463
|
timeS: number;
|
|
@@ -10392,9 +10509,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10392
10509
|
}[];
|
|
10393
10510
|
};
|
|
10394
10511
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
10512
|
+
inputUrl: string;
|
|
10395
10513
|
internalVapixParameters: string;
|
|
10396
10514
|
userVapixParameters: string;
|
|
10397
|
-
streamingProtocol: "
|
|
10515
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
10398
10516
|
streamDelay: {
|
|
10399
10517
|
enabled: boolean;
|
|
10400
10518
|
timeS: number;
|
|
@@ -10443,9 +10561,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10443
10561
|
}[];
|
|
10444
10562
|
};
|
|
10445
10563
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
10564
|
+
inputUrl: string;
|
|
10446
10565
|
internalVapixParameters: string;
|
|
10447
10566
|
userVapixParameters: string;
|
|
10448
|
-
streamingProtocol: "
|
|
10567
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
10449
10568
|
streamDelay: {
|
|
10450
10569
|
enabled: boolean;
|
|
10451
10570
|
timeS: number;
|
|
@@ -10494,9 +10613,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10494
10613
|
}[];
|
|
10495
10614
|
};
|
|
10496
10615
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
10616
|
+
inputUrl: string;
|
|
10497
10617
|
internalVapixParameters: string;
|
|
10498
10618
|
userVapixParameters: string;
|
|
10499
|
-
streamingProtocol: "
|
|
10619
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
10500
10620
|
streamDelay: {
|
|
10501
10621
|
enabled: boolean;
|
|
10502
10622
|
timeS: number;
|
|
@@ -10559,9 +10679,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10559
10679
|
}[];
|
|
10560
10680
|
};
|
|
10561
10681
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
10682
|
+
inputUrl: string;
|
|
10562
10683
|
internalVapixParameters: string;
|
|
10563
10684
|
userVapixParameters: string;
|
|
10564
|
-
streamingProtocol: "
|
|
10685
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
10565
10686
|
streamDelay: {
|
|
10566
10687
|
enabled: boolean;
|
|
10567
10688
|
timeS: number;
|
|
@@ -10610,9 +10731,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10610
10731
|
}[];
|
|
10611
10732
|
};
|
|
10612
10733
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
10734
|
+
inputUrl: string;
|
|
10613
10735
|
internalVapixParameters: string;
|
|
10614
10736
|
userVapixParameters: string;
|
|
10615
|
-
streamingProtocol: "
|
|
10737
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
10616
10738
|
streamDelay: {
|
|
10617
10739
|
enabled: boolean;
|
|
10618
10740
|
timeS: number;
|
|
@@ -10661,9 +10783,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10661
10783
|
}[];
|
|
10662
10784
|
};
|
|
10663
10785
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
10786
|
+
inputUrl: string;
|
|
10664
10787
|
internalVapixParameters: string;
|
|
10665
10788
|
userVapixParameters: string;
|
|
10666
|
-
streamingProtocol: "
|
|
10789
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
10667
10790
|
streamDelay: {
|
|
10668
10791
|
enabled: boolean;
|
|
10669
10792
|
timeS: number;
|
|
@@ -10712,9 +10835,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10712
10835
|
}[];
|
|
10713
10836
|
};
|
|
10714
10837
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
10838
|
+
inputUrl: string;
|
|
10715
10839
|
internalVapixParameters: string;
|
|
10716
10840
|
userVapixParameters: string;
|
|
10717
|
-
streamingProtocol: "
|
|
10841
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
10718
10842
|
streamDelay: {
|
|
10719
10843
|
enabled: boolean;
|
|
10720
10844
|
timeS: number;
|
|
@@ -10763,9 +10887,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10763
10887
|
}[];
|
|
10764
10888
|
};
|
|
10765
10889
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
10890
|
+
inputUrl: string;
|
|
10766
10891
|
internalVapixParameters: string;
|
|
10767
10892
|
userVapixParameters: string;
|
|
10768
|
-
streamingProtocol: "
|
|
10893
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
10769
10894
|
streamDelay: {
|
|
10770
10895
|
enabled: boolean;
|
|
10771
10896
|
timeS: number;
|
|
@@ -10814,9 +10939,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10814
10939
|
}[];
|
|
10815
10940
|
};
|
|
10816
10941
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
10942
|
+
inputUrl: string;
|
|
10817
10943
|
internalVapixParameters: string;
|
|
10818
10944
|
userVapixParameters: string;
|
|
10819
|
-
streamingProtocol: "
|
|
10945
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
10820
10946
|
streamDelay: {
|
|
10821
10947
|
enabled: boolean;
|
|
10822
10948
|
timeS: number;
|
|
@@ -10865,9 +10991,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10865
10991
|
}[];
|
|
10866
10992
|
};
|
|
10867
10993
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
10994
|
+
inputUrl: string;
|
|
10868
10995
|
internalVapixParameters: string;
|
|
10869
10996
|
userVapixParameters: string;
|
|
10870
|
-
streamingProtocol: "
|
|
10997
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
10871
10998
|
streamDelay: {
|
|
10872
10999
|
enabled: boolean;
|
|
10873
11000
|
timeS: number;
|
|
@@ -10916,9 +11043,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10916
11043
|
}[];
|
|
10917
11044
|
};
|
|
10918
11045
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
11046
|
+
inputUrl: string;
|
|
10919
11047
|
internalVapixParameters: string;
|
|
10920
11048
|
userVapixParameters: string;
|
|
10921
|
-
streamingProtocol: "
|
|
11049
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
10922
11050
|
streamDelay: {
|
|
10923
11051
|
enabled: boolean;
|
|
10924
11052
|
timeS: number;
|
|
@@ -10967,9 +11095,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
10967
11095
|
}[];
|
|
10968
11096
|
};
|
|
10969
11097
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
11098
|
+
inputUrl: string;
|
|
10970
11099
|
internalVapixParameters: string;
|
|
10971
11100
|
userVapixParameters: string;
|
|
10972
|
-
streamingProtocol: "
|
|
11101
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
10973
11102
|
streamDelay: {
|
|
10974
11103
|
enabled: boolean;
|
|
10975
11104
|
timeS: number;
|
|
@@ -11018,9 +11147,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11018
11147
|
}[];
|
|
11019
11148
|
};
|
|
11020
11149
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
11150
|
+
inputUrl: string;
|
|
11021
11151
|
internalVapixParameters: string;
|
|
11022
11152
|
userVapixParameters: string;
|
|
11023
|
-
streamingProtocol: "
|
|
11153
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
11024
11154
|
streamDelay: {
|
|
11025
11155
|
enabled: boolean;
|
|
11026
11156
|
timeS: number;
|
|
@@ -11069,9 +11199,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11069
11199
|
}[];
|
|
11070
11200
|
};
|
|
11071
11201
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
11202
|
+
inputUrl: string;
|
|
11072
11203
|
internalVapixParameters: string;
|
|
11073
11204
|
userVapixParameters: string;
|
|
11074
|
-
streamingProtocol: "
|
|
11205
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
11075
11206
|
streamDelay: {
|
|
11076
11207
|
enabled: boolean;
|
|
11077
11208
|
timeS: number;
|
|
@@ -11120,9 +11251,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11120
11251
|
}[];
|
|
11121
11252
|
};
|
|
11122
11253
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
11254
|
+
inputUrl: string;
|
|
11123
11255
|
internalVapixParameters: string;
|
|
11124
11256
|
userVapixParameters: string;
|
|
11125
|
-
streamingProtocol: "
|
|
11257
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
11126
11258
|
streamDelay: {
|
|
11127
11259
|
enabled: boolean;
|
|
11128
11260
|
timeS: number;
|
|
@@ -11171,9 +11303,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11171
11303
|
}[];
|
|
11172
11304
|
};
|
|
11173
11305
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
11306
|
+
inputUrl: string;
|
|
11174
11307
|
internalVapixParameters: string;
|
|
11175
11308
|
userVapixParameters: string;
|
|
11176
|
-
streamingProtocol: "
|
|
11309
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
11177
11310
|
streamDelay: {
|
|
11178
11311
|
enabled: boolean;
|
|
11179
11312
|
timeS: number;
|
|
@@ -11224,9 +11357,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11224
11357
|
}[];
|
|
11225
11358
|
};
|
|
11226
11359
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
11360
|
+
inputUrl: string;
|
|
11227
11361
|
internalVapixParameters: string;
|
|
11228
11362
|
userVapixParameters: string;
|
|
11229
|
-
streamingProtocol: "
|
|
11363
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
11230
11364
|
streamDelay: {
|
|
11231
11365
|
enabled: boolean;
|
|
11232
11366
|
timeS: number;
|
|
@@ -11276,9 +11410,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11276
11410
|
}[];
|
|
11277
11411
|
};
|
|
11278
11412
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
11413
|
+
inputUrl: string;
|
|
11279
11414
|
internalVapixParameters: string;
|
|
11280
11415
|
userVapixParameters: string;
|
|
11281
|
-
streamingProtocol: "
|
|
11416
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
11282
11417
|
streamDelay: {
|
|
11283
11418
|
enabled: boolean;
|
|
11284
11419
|
timeS: number;
|
|
@@ -11342,9 +11477,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11342
11477
|
}[];
|
|
11343
11478
|
};
|
|
11344
11479
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
11480
|
+
inputUrl: string;
|
|
11345
11481
|
internalVapixParameters: string;
|
|
11346
11482
|
userVapixParameters: string;
|
|
11347
|
-
streamingProtocol: "
|
|
11483
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
11348
11484
|
streamDelay: {
|
|
11349
11485
|
enabled: boolean;
|
|
11350
11486
|
timeS: number;
|
|
@@ -11396,9 +11532,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11396
11532
|
}[];
|
|
11397
11533
|
};
|
|
11398
11534
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
11535
|
+
inputUrl: string;
|
|
11399
11536
|
internalVapixParameters: string;
|
|
11400
11537
|
userVapixParameters: string;
|
|
11401
|
-
streamingProtocol: "
|
|
11538
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
11402
11539
|
streamDelay: {
|
|
11403
11540
|
enabled: boolean;
|
|
11404
11541
|
timeS: number;
|
|
@@ -11447,9 +11584,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11447
11584
|
}[];
|
|
11448
11585
|
};
|
|
11449
11586
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
11587
|
+
inputUrl: string;
|
|
11450
11588
|
internalVapixParameters: string;
|
|
11451
11589
|
userVapixParameters: string;
|
|
11452
|
-
streamingProtocol: "
|
|
11590
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
11453
11591
|
streamDelay: {
|
|
11454
11592
|
enabled: boolean;
|
|
11455
11593
|
timeS: number;
|
|
@@ -11498,9 +11636,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11498
11636
|
}[];
|
|
11499
11637
|
};
|
|
11500
11638
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
11639
|
+
inputUrl: string;
|
|
11501
11640
|
internalVapixParameters: string;
|
|
11502
11641
|
userVapixParameters: string;
|
|
11503
|
-
streamingProtocol: "
|
|
11642
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
11504
11643
|
streamDelay: {
|
|
11505
11644
|
enabled: boolean;
|
|
11506
11645
|
timeS: number;
|
|
@@ -11563,9 +11702,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11563
11702
|
}[];
|
|
11564
11703
|
};
|
|
11565
11704
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
11705
|
+
inputUrl: string;
|
|
11566
11706
|
internalVapixParameters: string;
|
|
11567
11707
|
userVapixParameters: string;
|
|
11568
|
-
streamingProtocol: "
|
|
11708
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
11569
11709
|
streamDelay: {
|
|
11570
11710
|
enabled: boolean;
|
|
11571
11711
|
timeS: number;
|
|
@@ -11614,9 +11754,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11614
11754
|
}[];
|
|
11615
11755
|
};
|
|
11616
11756
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
11757
|
+
inputUrl: string;
|
|
11617
11758
|
internalVapixParameters: string;
|
|
11618
11759
|
userVapixParameters: string;
|
|
11619
|
-
streamingProtocol: "
|
|
11760
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
11620
11761
|
streamDelay: {
|
|
11621
11762
|
enabled: boolean;
|
|
11622
11763
|
timeS: number;
|
|
@@ -11665,9 +11806,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11665
11806
|
}[];
|
|
11666
11807
|
};
|
|
11667
11808
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
11809
|
+
inputUrl: string;
|
|
11668
11810
|
internalVapixParameters: string;
|
|
11669
11811
|
userVapixParameters: string;
|
|
11670
|
-
streamingProtocol: "
|
|
11812
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
11671
11813
|
streamDelay: {
|
|
11672
11814
|
enabled: boolean;
|
|
11673
11815
|
timeS: number;
|
|
@@ -11716,9 +11858,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11716
11858
|
}[];
|
|
11717
11859
|
};
|
|
11718
11860
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
11861
|
+
inputUrl: string;
|
|
11719
11862
|
internalVapixParameters: string;
|
|
11720
11863
|
userVapixParameters: string;
|
|
11721
|
-
streamingProtocol: "
|
|
11864
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
11722
11865
|
streamDelay: {
|
|
11723
11866
|
enabled: boolean;
|
|
11724
11867
|
timeS: number;
|
|
@@ -11767,9 +11910,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11767
11910
|
}[];
|
|
11768
11911
|
};
|
|
11769
11912
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
11913
|
+
inputUrl: string;
|
|
11770
11914
|
internalVapixParameters: string;
|
|
11771
11915
|
userVapixParameters: string;
|
|
11772
|
-
streamingProtocol: "
|
|
11916
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
11773
11917
|
streamDelay: {
|
|
11774
11918
|
enabled: boolean;
|
|
11775
11919
|
timeS: number;
|
|
@@ -11818,9 +11962,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11818
11962
|
}[];
|
|
11819
11963
|
};
|
|
11820
11964
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
11965
|
+
inputUrl: string;
|
|
11821
11966
|
internalVapixParameters: string;
|
|
11822
11967
|
userVapixParameters: string;
|
|
11823
|
-
streamingProtocol: "
|
|
11968
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
11824
11969
|
streamDelay: {
|
|
11825
11970
|
enabled: boolean;
|
|
11826
11971
|
timeS: number;
|
|
@@ -11869,9 +12014,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11869
12014
|
}[];
|
|
11870
12015
|
};
|
|
11871
12016
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
12017
|
+
inputUrl: string;
|
|
11872
12018
|
internalVapixParameters: string;
|
|
11873
12019
|
userVapixParameters: string;
|
|
11874
|
-
streamingProtocol: "
|
|
12020
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
11875
12021
|
streamDelay: {
|
|
11876
12022
|
enabled: boolean;
|
|
11877
12023
|
timeS: number;
|
|
@@ -11920,9 +12066,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11920
12066
|
}[];
|
|
11921
12067
|
};
|
|
11922
12068
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
12069
|
+
inputUrl: string;
|
|
11923
12070
|
internalVapixParameters: string;
|
|
11924
12071
|
userVapixParameters: string;
|
|
11925
|
-
streamingProtocol: "
|
|
12072
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
11926
12073
|
streamDelay: {
|
|
11927
12074
|
enabled: boolean;
|
|
11928
12075
|
timeS: number;
|
|
@@ -11971,9 +12118,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
11971
12118
|
}[];
|
|
11972
12119
|
};
|
|
11973
12120
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
12121
|
+
inputUrl: string;
|
|
11974
12122
|
internalVapixParameters: string;
|
|
11975
12123
|
userVapixParameters: string;
|
|
11976
|
-
streamingProtocol: "
|
|
12124
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
11977
12125
|
streamDelay: {
|
|
11978
12126
|
enabled: boolean;
|
|
11979
12127
|
timeS: number;
|
|
@@ -12022,9 +12170,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12022
12170
|
}[];
|
|
12023
12171
|
};
|
|
12024
12172
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
12173
|
+
inputUrl: string;
|
|
12025
12174
|
internalVapixParameters: string;
|
|
12026
12175
|
userVapixParameters: string;
|
|
12027
|
-
streamingProtocol: "
|
|
12176
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
12028
12177
|
streamDelay: {
|
|
12029
12178
|
enabled: boolean;
|
|
12030
12179
|
timeS: number;
|
|
@@ -12073,9 +12222,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12073
12222
|
}[];
|
|
12074
12223
|
};
|
|
12075
12224
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
12225
|
+
inputUrl: string;
|
|
12076
12226
|
internalVapixParameters: string;
|
|
12077
12227
|
userVapixParameters: string;
|
|
12078
|
-
streamingProtocol: "
|
|
12228
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
12079
12229
|
streamDelay: {
|
|
12080
12230
|
enabled: boolean;
|
|
12081
12231
|
timeS: number;
|
|
@@ -12124,9 +12274,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12124
12274
|
}[];
|
|
12125
12275
|
};
|
|
12126
12276
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
12277
|
+
inputUrl: string;
|
|
12127
12278
|
internalVapixParameters: string;
|
|
12128
12279
|
userVapixParameters: string;
|
|
12129
|
-
streamingProtocol: "
|
|
12280
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
12130
12281
|
streamDelay: {
|
|
12131
12282
|
enabled: boolean;
|
|
12132
12283
|
timeS: number;
|
|
@@ -12175,9 +12326,10 @@ export declare const streamListSchema: z.ZodObject<{
|
|
|
12175
12326
|
}[];
|
|
12176
12327
|
};
|
|
12177
12328
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
12329
|
+
inputUrl: string;
|
|
12178
12330
|
internalVapixParameters: string;
|
|
12179
12331
|
userVapixParameters: string;
|
|
12180
|
-
streamingProtocol: "
|
|
12332
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
12181
12333
|
streamDelay: {
|
|
12182
12334
|
enabled: boolean;
|
|
12183
12335
|
timeS: number;
|
|
@@ -12230,9 +12382,10 @@ export declare const isFacebookStream: (stream: TStream) => stream is {
|
|
|
12230
12382
|
}[];
|
|
12231
12383
|
};
|
|
12232
12384
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
12385
|
+
inputUrl: string;
|
|
12233
12386
|
internalVapixParameters: string;
|
|
12234
12387
|
userVapixParameters: string;
|
|
12235
|
-
streamingProtocol: "
|
|
12388
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
12236
12389
|
streamDelay: {
|
|
12237
12390
|
enabled: boolean;
|
|
12238
12391
|
timeS: number;
|
|
@@ -12284,9 +12437,10 @@ export declare const isMpegDvbStream: (stream: TStream) => stream is {
|
|
|
12284
12437
|
}[];
|
|
12285
12438
|
};
|
|
12286
12439
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
12440
|
+
inputUrl: string;
|
|
12287
12441
|
internalVapixParameters: string;
|
|
12288
12442
|
userVapixParameters: string;
|
|
12289
|
-
streamingProtocol: "
|
|
12443
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
12290
12444
|
streamDelay: {
|
|
12291
12445
|
enabled: boolean;
|
|
12292
12446
|
timeS: number;
|
|
@@ -12352,9 +12506,10 @@ export declare const isRtmpStream: (stream: TStream) => stream is {
|
|
|
12352
12506
|
}[];
|
|
12353
12507
|
};
|
|
12354
12508
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
12509
|
+
inputUrl: string;
|
|
12355
12510
|
internalVapixParameters: string;
|
|
12356
12511
|
userVapixParameters: string;
|
|
12357
|
-
streamingProtocol: "
|
|
12512
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
12358
12513
|
streamDelay: {
|
|
12359
12514
|
enabled: boolean;
|
|
12360
12515
|
timeS: number;
|
|
@@ -12408,9 +12563,10 @@ export declare const isSdCardStream: (stream: TStream) => stream is {
|
|
|
12408
12563
|
}[];
|
|
12409
12564
|
};
|
|
12410
12565
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
12566
|
+
inputUrl: string;
|
|
12411
12567
|
internalVapixParameters: string;
|
|
12412
12568
|
userVapixParameters: string;
|
|
12413
|
-
streamingProtocol: "
|
|
12569
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
12414
12570
|
streamDelay: {
|
|
12415
12571
|
enabled: boolean;
|
|
12416
12572
|
timeS: number;
|
|
@@ -12461,9 +12617,10 @@ export declare const isWindyStream: (stream: TStream) => stream is {
|
|
|
12461
12617
|
}[];
|
|
12462
12618
|
};
|
|
12463
12619
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
12620
|
+
inputUrl: string;
|
|
12464
12621
|
internalVapixParameters: string;
|
|
12465
12622
|
userVapixParameters: string;
|
|
12466
|
-
streamingProtocol: "
|
|
12623
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
12467
12624
|
streamDelay: {
|
|
12468
12625
|
enabled: boolean;
|
|
12469
12626
|
timeS: number;
|
|
@@ -12514,9 +12671,10 @@ export declare const isYouTubeStream: (stream: TStream) => stream is {
|
|
|
12514
12671
|
}[];
|
|
12515
12672
|
};
|
|
12516
12673
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
12674
|
+
inputUrl: string;
|
|
12517
12675
|
internalVapixParameters: string;
|
|
12518
12676
|
userVapixParameters: string;
|
|
12519
|
-
streamingProtocol: "
|
|
12677
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
12520
12678
|
streamDelay: {
|
|
12521
12679
|
enabled: boolean;
|
|
12522
12680
|
timeS: number;
|
|
@@ -12581,9 +12739,10 @@ export declare const isVimeoStream: (stream: TStream) => stream is {
|
|
|
12581
12739
|
}[];
|
|
12582
12740
|
};
|
|
12583
12741
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
12742
|
+
inputUrl: string;
|
|
12584
12743
|
internalVapixParameters: string;
|
|
12585
12744
|
userVapixParameters: string;
|
|
12586
|
-
streamingProtocol: "
|
|
12745
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
12587
12746
|
streamDelay: {
|
|
12588
12747
|
enabled: boolean;
|
|
12589
12748
|
timeS: number;
|
|
@@ -12634,9 +12793,10 @@ export declare const isTwitchStream: (stream: TStream) => stream is {
|
|
|
12634
12793
|
}[];
|
|
12635
12794
|
};
|
|
12636
12795
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
12796
|
+
inputUrl: string;
|
|
12637
12797
|
internalVapixParameters: string;
|
|
12638
12798
|
userVapixParameters: string;
|
|
12639
|
-
streamingProtocol: "
|
|
12799
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
12640
12800
|
streamDelay: {
|
|
12641
12801
|
enabled: boolean;
|
|
12642
12802
|
timeS: number;
|
|
@@ -12687,9 +12847,10 @@ export declare const isChurchStream: (stream: TStream) => stream is {
|
|
|
12687
12847
|
}[];
|
|
12688
12848
|
};
|
|
12689
12849
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
12850
|
+
inputUrl: string;
|
|
12690
12851
|
internalVapixParameters: string;
|
|
12691
12852
|
userVapixParameters: string;
|
|
12692
|
-
streamingProtocol: "
|
|
12853
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
12693
12854
|
streamDelay: {
|
|
12694
12855
|
enabled: boolean;
|
|
12695
12856
|
timeS: number;
|
|
@@ -12740,9 +12901,10 @@ export declare const isSrtStream: (stream: TStream) => stream is {
|
|
|
12740
12901
|
}[];
|
|
12741
12902
|
};
|
|
12742
12903
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
12904
|
+
inputUrl: string;
|
|
12743
12905
|
internalVapixParameters: string;
|
|
12744
12906
|
userVapixParameters: string;
|
|
12745
|
-
streamingProtocol: "
|
|
12907
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
12746
12908
|
streamDelay: {
|
|
12747
12909
|
enabled: boolean;
|
|
12748
12910
|
timeS: number;
|
|
@@ -12793,9 +12955,10 @@ export declare const isDaCastStream: (stream: TStream) => stream is {
|
|
|
12793
12955
|
}[];
|
|
12794
12956
|
};
|
|
12795
12957
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
12958
|
+
inputUrl: string;
|
|
12796
12959
|
internalVapixParameters: string;
|
|
12797
12960
|
userVapixParameters: string;
|
|
12798
|
-
streamingProtocol: "
|
|
12961
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
12799
12962
|
streamDelay: {
|
|
12800
12963
|
enabled: boolean;
|
|
12801
12964
|
timeS: number;
|
|
@@ -12846,9 +13009,10 @@ export declare const isHlsPullStream: (stream: TStream) => stream is {
|
|
|
12846
13009
|
}[];
|
|
12847
13010
|
};
|
|
12848
13011
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
13012
|
+
inputUrl: string;
|
|
12849
13013
|
internalVapixParameters: string;
|
|
12850
13014
|
userVapixParameters: string;
|
|
12851
|
-
streamingProtocol: "
|
|
13015
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
12852
13016
|
streamDelay: {
|
|
12853
13017
|
enabled: boolean;
|
|
12854
13018
|
timeS: number;
|
|
@@ -12899,9 +13063,10 @@ export declare const isHlsPushStream: (stream: TStream) => stream is {
|
|
|
12899
13063
|
}[];
|
|
12900
13064
|
};
|
|
12901
13065
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
13066
|
+
inputUrl: string;
|
|
12902
13067
|
internalVapixParameters: string;
|
|
12903
13068
|
userVapixParameters: string;
|
|
12904
|
-
streamingProtocol: "
|
|
13069
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
12905
13070
|
streamDelay: {
|
|
12906
13071
|
enabled: boolean;
|
|
12907
13072
|
timeS: number;
|
|
@@ -12952,9 +13117,10 @@ export declare const isWowzaStream: (stream: TStream) => stream is {
|
|
|
12952
13117
|
}[];
|
|
12953
13118
|
};
|
|
12954
13119
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
13120
|
+
inputUrl: string;
|
|
12955
13121
|
internalVapixParameters: string;
|
|
12956
13122
|
userVapixParameters: string;
|
|
12957
|
-
streamingProtocol: "
|
|
13123
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
12958
13124
|
streamDelay: {
|
|
12959
13125
|
enabled: boolean;
|
|
12960
13126
|
timeS: number;
|
|
@@ -13005,9 +13171,10 @@ export declare const isDailymotionStream: (stream: TStream) => stream is {
|
|
|
13005
13171
|
}[];
|
|
13006
13172
|
};
|
|
13007
13173
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
13174
|
+
inputUrl: string;
|
|
13008
13175
|
internalVapixParameters: string;
|
|
13009
13176
|
userVapixParameters: string;
|
|
13010
|
-
streamingProtocol: "
|
|
13177
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
13011
13178
|
streamDelay: {
|
|
13012
13179
|
enabled: boolean;
|
|
13013
13180
|
timeS: number;
|
|
@@ -13058,9 +13225,10 @@ export declare const isIbmStream: (stream: TStream) => stream is {
|
|
|
13058
13225
|
}[];
|
|
13059
13226
|
};
|
|
13060
13227
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
13228
|
+
inputUrl: string;
|
|
13061
13229
|
internalVapixParameters: string;
|
|
13062
13230
|
userVapixParameters: string;
|
|
13063
|
-
streamingProtocol: "
|
|
13231
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
13064
13232
|
streamDelay: {
|
|
13065
13233
|
enabled: boolean;
|
|
13066
13234
|
timeS: number;
|
|
@@ -13111,9 +13279,10 @@ export declare const isMicrosoftAzureStream: (stream: TStream) => stream is {
|
|
|
13111
13279
|
}[];
|
|
13112
13280
|
};
|
|
13113
13281
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
13282
|
+
inputUrl: string;
|
|
13114
13283
|
internalVapixParameters: string;
|
|
13115
13284
|
userVapixParameters: string;
|
|
13116
|
-
streamingProtocol: "
|
|
13285
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
13117
13286
|
streamDelay: {
|
|
13118
13287
|
enabled: boolean;
|
|
13119
13288
|
timeS: number;
|
|
@@ -13164,9 +13333,10 @@ export declare const isMicrosoftStream: (stream: TStream) => stream is {
|
|
|
13164
13333
|
}[];
|
|
13165
13334
|
};
|
|
13166
13335
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
13336
|
+
inputUrl: string;
|
|
13167
13337
|
internalVapixParameters: string;
|
|
13168
13338
|
userVapixParameters: string;
|
|
13169
|
-
streamingProtocol: "
|
|
13339
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
13170
13340
|
streamDelay: {
|
|
13171
13341
|
enabled: boolean;
|
|
13172
13342
|
timeS: number;
|
|
@@ -13217,9 +13387,10 @@ export declare const isGameChangerStream: (stream: TStream) => stream is {
|
|
|
13217
13387
|
}[];
|
|
13218
13388
|
};
|
|
13219
13389
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
13390
|
+
inputUrl: string;
|
|
13220
13391
|
internalVapixParameters: string;
|
|
13221
13392
|
userVapixParameters: string;
|
|
13222
|
-
streamingProtocol: "
|
|
13393
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
13223
13394
|
streamDelay: {
|
|
13224
13395
|
enabled: boolean;
|
|
13225
13396
|
timeS: number;
|