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
package/cjs/CamStreamerAPI.d.ts
CHANGED
|
@@ -55,9 +55,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
55
55
|
}[];
|
|
56
56
|
};
|
|
57
57
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
58
|
+
inputUrl: string;
|
|
58
59
|
internalVapixParameters: string;
|
|
59
60
|
userVapixParameters: string;
|
|
60
|
-
streamingProtocol: "
|
|
61
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
61
62
|
streamDelay: {
|
|
62
63
|
enabled: boolean;
|
|
63
64
|
timeS: number;
|
|
@@ -107,9 +108,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
107
108
|
}[];
|
|
108
109
|
};
|
|
109
110
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
111
|
+
inputUrl: string;
|
|
110
112
|
internalVapixParameters: string;
|
|
111
113
|
userVapixParameters: string;
|
|
112
|
-
streamingProtocol: "
|
|
114
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
113
115
|
streamDelay: {
|
|
114
116
|
enabled: boolean;
|
|
115
117
|
timeS: number;
|
|
@@ -173,9 +175,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
173
175
|
}[];
|
|
174
176
|
};
|
|
175
177
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
178
|
+
inputUrl: string;
|
|
176
179
|
internalVapixParameters: string;
|
|
177
180
|
userVapixParameters: string;
|
|
178
|
-
streamingProtocol: "
|
|
181
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
179
182
|
streamDelay: {
|
|
180
183
|
enabled: boolean;
|
|
181
184
|
timeS: number;
|
|
@@ -227,9 +230,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
227
230
|
}[];
|
|
228
231
|
};
|
|
229
232
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
233
|
+
inputUrl: string;
|
|
230
234
|
internalVapixParameters: string;
|
|
231
235
|
userVapixParameters: string;
|
|
232
|
-
streamingProtocol: "
|
|
236
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
233
237
|
streamDelay: {
|
|
234
238
|
enabled: boolean;
|
|
235
239
|
timeS: number;
|
|
@@ -278,9 +282,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
278
282
|
}[];
|
|
279
283
|
};
|
|
280
284
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
285
|
+
inputUrl: string;
|
|
281
286
|
internalVapixParameters: string;
|
|
282
287
|
userVapixParameters: string;
|
|
283
|
-
streamingProtocol: "
|
|
288
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
284
289
|
streamDelay: {
|
|
285
290
|
enabled: boolean;
|
|
286
291
|
timeS: number;
|
|
@@ -329,9 +334,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
329
334
|
}[];
|
|
330
335
|
};
|
|
331
336
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
337
|
+
inputUrl: string;
|
|
332
338
|
internalVapixParameters: string;
|
|
333
339
|
userVapixParameters: string;
|
|
334
|
-
streamingProtocol: "
|
|
340
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
335
341
|
streamDelay: {
|
|
336
342
|
enabled: boolean;
|
|
337
343
|
timeS: number;
|
|
@@ -394,9 +400,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
394
400
|
}[];
|
|
395
401
|
};
|
|
396
402
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
403
|
+
inputUrl: string;
|
|
397
404
|
internalVapixParameters: string;
|
|
398
405
|
userVapixParameters: string;
|
|
399
|
-
streamingProtocol: "
|
|
406
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
400
407
|
streamDelay: {
|
|
401
408
|
enabled: boolean;
|
|
402
409
|
timeS: number;
|
|
@@ -445,9 +452,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
445
452
|
}[];
|
|
446
453
|
};
|
|
447
454
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
455
|
+
inputUrl: string;
|
|
448
456
|
internalVapixParameters: string;
|
|
449
457
|
userVapixParameters: string;
|
|
450
|
-
streamingProtocol: "
|
|
458
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
451
459
|
streamDelay: {
|
|
452
460
|
enabled: boolean;
|
|
453
461
|
timeS: number;
|
|
@@ -496,9 +504,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
496
504
|
}[];
|
|
497
505
|
};
|
|
498
506
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
507
|
+
inputUrl: string;
|
|
499
508
|
internalVapixParameters: string;
|
|
500
509
|
userVapixParameters: string;
|
|
501
|
-
streamingProtocol: "
|
|
510
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
502
511
|
streamDelay: {
|
|
503
512
|
enabled: boolean;
|
|
504
513
|
timeS: number;
|
|
@@ -547,9 +556,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
547
556
|
}[];
|
|
548
557
|
};
|
|
549
558
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
559
|
+
inputUrl: string;
|
|
550
560
|
internalVapixParameters: string;
|
|
551
561
|
userVapixParameters: string;
|
|
552
|
-
streamingProtocol: "
|
|
562
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
553
563
|
streamDelay: {
|
|
554
564
|
enabled: boolean;
|
|
555
565
|
timeS: number;
|
|
@@ -598,9 +608,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
598
608
|
}[];
|
|
599
609
|
};
|
|
600
610
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
611
|
+
inputUrl: string;
|
|
601
612
|
internalVapixParameters: string;
|
|
602
613
|
userVapixParameters: string;
|
|
603
|
-
streamingProtocol: "
|
|
614
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
604
615
|
streamDelay: {
|
|
605
616
|
enabled: boolean;
|
|
606
617
|
timeS: number;
|
|
@@ -649,9 +660,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
649
660
|
}[];
|
|
650
661
|
};
|
|
651
662
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
663
|
+
inputUrl: string;
|
|
652
664
|
internalVapixParameters: string;
|
|
653
665
|
userVapixParameters: string;
|
|
654
|
-
streamingProtocol: "
|
|
666
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
655
667
|
streamDelay: {
|
|
656
668
|
enabled: boolean;
|
|
657
669
|
timeS: number;
|
|
@@ -700,9 +712,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
700
712
|
}[];
|
|
701
713
|
};
|
|
702
714
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
715
|
+
inputUrl: string;
|
|
703
716
|
internalVapixParameters: string;
|
|
704
717
|
userVapixParameters: string;
|
|
705
|
-
streamingProtocol: "
|
|
718
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
706
719
|
streamDelay: {
|
|
707
720
|
enabled: boolean;
|
|
708
721
|
timeS: number;
|
|
@@ -751,9 +764,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
751
764
|
}[];
|
|
752
765
|
};
|
|
753
766
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
767
|
+
inputUrl: string;
|
|
754
768
|
internalVapixParameters: string;
|
|
755
769
|
userVapixParameters: string;
|
|
756
|
-
streamingProtocol: "
|
|
770
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
757
771
|
streamDelay: {
|
|
758
772
|
enabled: boolean;
|
|
759
773
|
timeS: number;
|
|
@@ -802,9 +816,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
802
816
|
}[];
|
|
803
817
|
};
|
|
804
818
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
819
|
+
inputUrl: string;
|
|
805
820
|
internalVapixParameters: string;
|
|
806
821
|
userVapixParameters: string;
|
|
807
|
-
streamingProtocol: "
|
|
822
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
808
823
|
streamDelay: {
|
|
809
824
|
enabled: boolean;
|
|
810
825
|
timeS: number;
|
|
@@ -853,9 +868,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
853
868
|
}[];
|
|
854
869
|
};
|
|
855
870
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
871
|
+
inputUrl: string;
|
|
856
872
|
internalVapixParameters: string;
|
|
857
873
|
userVapixParameters: string;
|
|
858
|
-
streamingProtocol: "
|
|
874
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
859
875
|
streamDelay: {
|
|
860
876
|
enabled: boolean;
|
|
861
877
|
timeS: number;
|
|
@@ -904,9 +920,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
904
920
|
}[];
|
|
905
921
|
};
|
|
906
922
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
923
|
+
inputUrl: string;
|
|
907
924
|
internalVapixParameters: string;
|
|
908
925
|
userVapixParameters: string;
|
|
909
|
-
streamingProtocol: "
|
|
926
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
910
927
|
streamDelay: {
|
|
911
928
|
enabled: boolean;
|
|
912
929
|
timeS: number;
|
|
@@ -955,9 +972,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
955
972
|
}[];
|
|
956
973
|
};
|
|
957
974
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
975
|
+
inputUrl: string;
|
|
958
976
|
internalVapixParameters: string;
|
|
959
977
|
userVapixParameters: string;
|
|
960
|
-
streamingProtocol: "
|
|
978
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
961
979
|
streamDelay: {
|
|
962
980
|
enabled: boolean;
|
|
963
981
|
timeS: number;
|
|
@@ -1006,9 +1024,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
1006
1024
|
}[];
|
|
1007
1025
|
};
|
|
1008
1026
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
1027
|
+
inputUrl: string;
|
|
1009
1028
|
internalVapixParameters: string;
|
|
1010
1029
|
userVapixParameters: string;
|
|
1011
|
-
streamingProtocol: "
|
|
1030
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
1012
1031
|
streamDelay: {
|
|
1013
1032
|
enabled: boolean;
|
|
1014
1033
|
timeS: number;
|
|
@@ -1059,9 +1078,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
1059
1078
|
}[];
|
|
1060
1079
|
};
|
|
1061
1080
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
1081
|
+
inputUrl: string;
|
|
1062
1082
|
internalVapixParameters: string;
|
|
1063
1083
|
userVapixParameters: string;
|
|
1064
|
-
streamingProtocol: "
|
|
1084
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
1065
1085
|
streamDelay: {
|
|
1066
1086
|
enabled: boolean;
|
|
1067
1087
|
timeS: number;
|
|
@@ -1111,9 +1131,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
1111
1131
|
}[];
|
|
1112
1132
|
};
|
|
1113
1133
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
1134
|
+
inputUrl: string;
|
|
1114
1135
|
internalVapixParameters: string;
|
|
1115
1136
|
userVapixParameters: string;
|
|
1116
|
-
streamingProtocol: "
|
|
1137
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
1117
1138
|
streamDelay: {
|
|
1118
1139
|
enabled: boolean;
|
|
1119
1140
|
timeS: number;
|
|
@@ -1177,9 +1198,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
1177
1198
|
}[];
|
|
1178
1199
|
};
|
|
1179
1200
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
1201
|
+
inputUrl: string;
|
|
1180
1202
|
internalVapixParameters: string;
|
|
1181
1203
|
userVapixParameters: string;
|
|
1182
|
-
streamingProtocol: "
|
|
1204
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
1183
1205
|
streamDelay: {
|
|
1184
1206
|
enabled: boolean;
|
|
1185
1207
|
timeS: number;
|
|
@@ -1231,9 +1253,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
1231
1253
|
}[];
|
|
1232
1254
|
};
|
|
1233
1255
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
1256
|
+
inputUrl: string;
|
|
1234
1257
|
internalVapixParameters: string;
|
|
1235
1258
|
userVapixParameters: string;
|
|
1236
|
-
streamingProtocol: "
|
|
1259
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
1237
1260
|
streamDelay: {
|
|
1238
1261
|
enabled: boolean;
|
|
1239
1262
|
timeS: number;
|
|
@@ -1282,9 +1305,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
1282
1305
|
}[];
|
|
1283
1306
|
};
|
|
1284
1307
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
1308
|
+
inputUrl: string;
|
|
1285
1309
|
internalVapixParameters: string;
|
|
1286
1310
|
userVapixParameters: string;
|
|
1287
|
-
streamingProtocol: "
|
|
1311
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
1288
1312
|
streamDelay: {
|
|
1289
1313
|
enabled: boolean;
|
|
1290
1314
|
timeS: number;
|
|
@@ -1333,9 +1357,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
1333
1357
|
}[];
|
|
1334
1358
|
};
|
|
1335
1359
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
1360
|
+
inputUrl: string;
|
|
1336
1361
|
internalVapixParameters: string;
|
|
1337
1362
|
userVapixParameters: string;
|
|
1338
|
-
streamingProtocol: "
|
|
1363
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
1339
1364
|
streamDelay: {
|
|
1340
1365
|
enabled: boolean;
|
|
1341
1366
|
timeS: number;
|
|
@@ -1398,9 +1423,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
1398
1423
|
}[];
|
|
1399
1424
|
};
|
|
1400
1425
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
1426
|
+
inputUrl: string;
|
|
1401
1427
|
internalVapixParameters: string;
|
|
1402
1428
|
userVapixParameters: string;
|
|
1403
|
-
streamingProtocol: "
|
|
1429
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
1404
1430
|
streamDelay: {
|
|
1405
1431
|
enabled: boolean;
|
|
1406
1432
|
timeS: number;
|
|
@@ -1449,9 +1475,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
1449
1475
|
}[];
|
|
1450
1476
|
};
|
|
1451
1477
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
1478
|
+
inputUrl: string;
|
|
1452
1479
|
internalVapixParameters: string;
|
|
1453
1480
|
userVapixParameters: string;
|
|
1454
|
-
streamingProtocol: "
|
|
1481
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
1455
1482
|
streamDelay: {
|
|
1456
1483
|
enabled: boolean;
|
|
1457
1484
|
timeS: number;
|
|
@@ -1500,9 +1527,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
1500
1527
|
}[];
|
|
1501
1528
|
};
|
|
1502
1529
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
1530
|
+
inputUrl: string;
|
|
1503
1531
|
internalVapixParameters: string;
|
|
1504
1532
|
userVapixParameters: string;
|
|
1505
|
-
streamingProtocol: "
|
|
1533
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
1506
1534
|
streamDelay: {
|
|
1507
1535
|
enabled: boolean;
|
|
1508
1536
|
timeS: number;
|
|
@@ -1551,9 +1579,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
1551
1579
|
}[];
|
|
1552
1580
|
};
|
|
1553
1581
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
1582
|
+
inputUrl: string;
|
|
1554
1583
|
internalVapixParameters: string;
|
|
1555
1584
|
userVapixParameters: string;
|
|
1556
|
-
streamingProtocol: "
|
|
1585
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
1557
1586
|
streamDelay: {
|
|
1558
1587
|
enabled: boolean;
|
|
1559
1588
|
timeS: number;
|
|
@@ -1602,9 +1631,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
1602
1631
|
}[];
|
|
1603
1632
|
};
|
|
1604
1633
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
1634
|
+
inputUrl: string;
|
|
1605
1635
|
internalVapixParameters: string;
|
|
1606
1636
|
userVapixParameters: string;
|
|
1607
|
-
streamingProtocol: "
|
|
1637
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
1608
1638
|
streamDelay: {
|
|
1609
1639
|
enabled: boolean;
|
|
1610
1640
|
timeS: number;
|
|
@@ -1653,9 +1683,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
1653
1683
|
}[];
|
|
1654
1684
|
};
|
|
1655
1685
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
1686
|
+
inputUrl: string;
|
|
1656
1687
|
internalVapixParameters: string;
|
|
1657
1688
|
userVapixParameters: string;
|
|
1658
|
-
streamingProtocol: "
|
|
1689
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
1659
1690
|
streamDelay: {
|
|
1660
1691
|
enabled: boolean;
|
|
1661
1692
|
timeS: number;
|
|
@@ -1704,9 +1735,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
1704
1735
|
}[];
|
|
1705
1736
|
};
|
|
1706
1737
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
1738
|
+
inputUrl: string;
|
|
1707
1739
|
internalVapixParameters: string;
|
|
1708
1740
|
userVapixParameters: string;
|
|
1709
|
-
streamingProtocol: "
|
|
1741
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
1710
1742
|
streamDelay: {
|
|
1711
1743
|
enabled: boolean;
|
|
1712
1744
|
timeS: number;
|
|
@@ -1755,9 +1787,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
1755
1787
|
}[];
|
|
1756
1788
|
};
|
|
1757
1789
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
1790
|
+
inputUrl: string;
|
|
1758
1791
|
internalVapixParameters: string;
|
|
1759
1792
|
userVapixParameters: string;
|
|
1760
|
-
streamingProtocol: "
|
|
1793
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
1761
1794
|
streamDelay: {
|
|
1762
1795
|
enabled: boolean;
|
|
1763
1796
|
timeS: number;
|
|
@@ -1806,9 +1839,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
1806
1839
|
}[];
|
|
1807
1840
|
};
|
|
1808
1841
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
1842
|
+
inputUrl: string;
|
|
1809
1843
|
internalVapixParameters: string;
|
|
1810
1844
|
userVapixParameters: string;
|
|
1811
|
-
streamingProtocol: "
|
|
1845
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
1812
1846
|
streamDelay: {
|
|
1813
1847
|
enabled: boolean;
|
|
1814
1848
|
timeS: number;
|
|
@@ -1857,9 +1891,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
1857
1891
|
}[];
|
|
1858
1892
|
};
|
|
1859
1893
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
1894
|
+
inputUrl: string;
|
|
1860
1895
|
internalVapixParameters: string;
|
|
1861
1896
|
userVapixParameters: string;
|
|
1862
|
-
streamingProtocol: "
|
|
1897
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
1863
1898
|
streamDelay: {
|
|
1864
1899
|
enabled: boolean;
|
|
1865
1900
|
timeS: number;
|
|
@@ -1908,9 +1943,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
1908
1943
|
}[];
|
|
1909
1944
|
};
|
|
1910
1945
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
1946
|
+
inputUrl: string;
|
|
1911
1947
|
internalVapixParameters: string;
|
|
1912
1948
|
userVapixParameters: string;
|
|
1913
|
-
streamingProtocol: "
|
|
1949
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
1914
1950
|
streamDelay: {
|
|
1915
1951
|
enabled: boolean;
|
|
1916
1952
|
timeS: number;
|
|
@@ -1959,9 +1995,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
1959
1995
|
}[];
|
|
1960
1996
|
};
|
|
1961
1997
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
1998
|
+
inputUrl: string;
|
|
1962
1999
|
internalVapixParameters: string;
|
|
1963
2000
|
userVapixParameters: string;
|
|
1964
|
-
streamingProtocol: "
|
|
2001
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
1965
2002
|
streamDelay: {
|
|
1966
2003
|
enabled: boolean;
|
|
1967
2004
|
timeS: number;
|
|
@@ -2010,9 +2047,10 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> {
|
|
|
2010
2047
|
}[];
|
|
2011
2048
|
};
|
|
2012
2049
|
inputType: "RTSP_URL" | "CSw" | "CRS";
|
|
2050
|
+
inputUrl: string;
|
|
2013
2051
|
internalVapixParameters: string;
|
|
2014
2052
|
userVapixParameters: string;
|
|
2015
|
-
streamingProtocol: "
|
|
2053
|
+
streamingProtocol: "RTMP" | "RTMPS" | "HLS_PUSH";
|
|
2016
2054
|
streamDelay: {
|
|
2017
2055
|
enabled: boolean;
|
|
2018
2056
|
timeS: number;
|