camstreamerlib 4.0.0-beta.122 → 4.0.0-beta.124
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 +320 -80
- package/cjs/types/CamStreamerAPI/CamStreamerAPI.d.ts +2800 -760
- package/cjs/types/CamStreamerAPI/facebookSchema.d.ts +58 -16
- package/cjs/types/CamStreamerAPI/streamCommonTypes.d.ts +58 -16
- package/cjs/types/CamStreamerAPI/streamCommonTypes.js +15 -5
- package/cjs/types/CamStreamerAPI/streamsSchema.d.ts +1046 -290
- package/cjs/types/CamStreamerAPI/windySchema.d.ts +58 -16
- package/cjs/types/CamStreamerAPI/youtubeSchema.d.ts +58 -16
- package/esm/types/CamStreamerAPI/streamCommonTypes.js +15 -5
- package/package.json +1 -1
- package/types/CamStreamerAPI.d.ts +320 -80
- package/types/types/CamStreamerAPI/CamStreamerAPI.d.ts +2800 -760
- package/types/types/CamStreamerAPI/facebookSchema.d.ts +58 -16
- package/types/types/CamStreamerAPI/streamCommonTypes.d.ts +58 -16
- package/types/types/CamStreamerAPI/streamsSchema.d.ts +1046 -290
- package/types/types/CamStreamerAPI/windySchema.d.ts +58 -16
- package/types/types/CamStreamerAPI/youtubeSchema.d.ts +58 -16
package/cjs/CamStreamerAPI.d.ts
CHANGED
|
@@ -53,9 +53,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
53
53
|
};
|
|
54
54
|
video: {
|
|
55
55
|
output: {
|
|
56
|
-
type: "video"
|
|
57
|
-
url: string
|
|
56
|
+
type: "video";
|
|
57
|
+
url: string;
|
|
58
58
|
parameters: string;
|
|
59
|
+
} | {
|
|
60
|
+
type: "images";
|
|
61
|
+
url: string;
|
|
62
|
+
imageIntervalS: number;
|
|
63
|
+
} | {
|
|
64
|
+
type: "none";
|
|
59
65
|
};
|
|
60
66
|
input: {
|
|
61
67
|
type: "RTSP_URL";
|
|
@@ -126,9 +132,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
126
132
|
};
|
|
127
133
|
video: {
|
|
128
134
|
output: {
|
|
129
|
-
type: "video"
|
|
130
|
-
url: string
|
|
135
|
+
type: "video";
|
|
136
|
+
url: string;
|
|
131
137
|
parameters: string;
|
|
138
|
+
} | {
|
|
139
|
+
type: "images";
|
|
140
|
+
url: string;
|
|
141
|
+
imageIntervalS: number;
|
|
142
|
+
} | {
|
|
143
|
+
type: "none";
|
|
132
144
|
};
|
|
133
145
|
input: {
|
|
134
146
|
type: "RTSP_URL";
|
|
@@ -196,9 +208,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
196
208
|
};
|
|
197
209
|
video: {
|
|
198
210
|
output: {
|
|
199
|
-
type: "video"
|
|
200
|
-
url: string
|
|
211
|
+
type: "video";
|
|
212
|
+
url: string;
|
|
201
213
|
parameters: string;
|
|
214
|
+
} | {
|
|
215
|
+
type: "images";
|
|
216
|
+
url: string;
|
|
217
|
+
imageIntervalS: number;
|
|
218
|
+
} | {
|
|
219
|
+
type: "none";
|
|
202
220
|
};
|
|
203
221
|
input: {
|
|
204
222
|
type: "RTSP_URL";
|
|
@@ -277,9 +295,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
277
295
|
};
|
|
278
296
|
video: {
|
|
279
297
|
output: {
|
|
280
|
-
type: "video"
|
|
281
|
-
url: string
|
|
298
|
+
type: "video";
|
|
299
|
+
url: string;
|
|
282
300
|
parameters: string;
|
|
301
|
+
} | {
|
|
302
|
+
type: "images";
|
|
303
|
+
url: string;
|
|
304
|
+
imageIntervalS: number;
|
|
305
|
+
} | {
|
|
306
|
+
type: "none";
|
|
283
307
|
};
|
|
284
308
|
input: {
|
|
285
309
|
type: "RTSP_URL";
|
|
@@ -347,9 +371,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
347
371
|
};
|
|
348
372
|
video: {
|
|
349
373
|
output: {
|
|
350
|
-
type: "video"
|
|
351
|
-
url: string
|
|
374
|
+
type: "video";
|
|
375
|
+
url: string;
|
|
352
376
|
parameters: string;
|
|
377
|
+
} | {
|
|
378
|
+
type: "images";
|
|
379
|
+
url: string;
|
|
380
|
+
imageIntervalS: number;
|
|
381
|
+
} | {
|
|
382
|
+
type: "none";
|
|
353
383
|
};
|
|
354
384
|
input: {
|
|
355
385
|
type: "RTSP_URL";
|
|
@@ -417,9 +447,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
417
447
|
};
|
|
418
448
|
video: {
|
|
419
449
|
output: {
|
|
420
|
-
type: "video"
|
|
421
|
-
url: string
|
|
450
|
+
type: "video";
|
|
451
|
+
url: string;
|
|
422
452
|
parameters: string;
|
|
453
|
+
} | {
|
|
454
|
+
type: "images";
|
|
455
|
+
url: string;
|
|
456
|
+
imageIntervalS: number;
|
|
457
|
+
} | {
|
|
458
|
+
type: "none";
|
|
423
459
|
};
|
|
424
460
|
input: {
|
|
425
461
|
type: "RTSP_URL";
|
|
@@ -487,9 +523,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
487
523
|
};
|
|
488
524
|
video: {
|
|
489
525
|
output: {
|
|
490
|
-
type: "video"
|
|
491
|
-
url: string
|
|
526
|
+
type: "video";
|
|
527
|
+
url: string;
|
|
492
528
|
parameters: string;
|
|
529
|
+
} | {
|
|
530
|
+
type: "images";
|
|
531
|
+
url: string;
|
|
532
|
+
imageIntervalS: number;
|
|
533
|
+
} | {
|
|
534
|
+
type: "none";
|
|
493
535
|
};
|
|
494
536
|
input: {
|
|
495
537
|
type: "RTSP_URL";
|
|
@@ -559,9 +601,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
559
601
|
};
|
|
560
602
|
video: {
|
|
561
603
|
output: {
|
|
562
|
-
type: "video"
|
|
563
|
-
url: string
|
|
604
|
+
type: "video";
|
|
605
|
+
url: string;
|
|
564
606
|
parameters: string;
|
|
607
|
+
} | {
|
|
608
|
+
type: "images";
|
|
609
|
+
url: string;
|
|
610
|
+
imageIntervalS: number;
|
|
611
|
+
} | {
|
|
612
|
+
type: "none";
|
|
565
613
|
};
|
|
566
614
|
input: {
|
|
567
615
|
type: "RTSP_URL";
|
|
@@ -629,9 +677,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
629
677
|
};
|
|
630
678
|
video: {
|
|
631
679
|
output: {
|
|
632
|
-
type: "video"
|
|
633
|
-
url: string
|
|
680
|
+
type: "video";
|
|
681
|
+
url: string;
|
|
634
682
|
parameters: string;
|
|
683
|
+
} | {
|
|
684
|
+
type: "images";
|
|
685
|
+
url: string;
|
|
686
|
+
imageIntervalS: number;
|
|
687
|
+
} | {
|
|
688
|
+
type: "none";
|
|
635
689
|
};
|
|
636
690
|
input: {
|
|
637
691
|
type: "RTSP_URL";
|
|
@@ -699,9 +753,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
699
753
|
};
|
|
700
754
|
video: {
|
|
701
755
|
output: {
|
|
702
|
-
type: "video"
|
|
703
|
-
url: string
|
|
756
|
+
type: "video";
|
|
757
|
+
url: string;
|
|
704
758
|
parameters: string;
|
|
759
|
+
} | {
|
|
760
|
+
type: "images";
|
|
761
|
+
url: string;
|
|
762
|
+
imageIntervalS: number;
|
|
763
|
+
} | {
|
|
764
|
+
type: "none";
|
|
705
765
|
};
|
|
706
766
|
input: {
|
|
707
767
|
type: "RTSP_URL";
|
|
@@ -769,9 +829,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
769
829
|
};
|
|
770
830
|
video: {
|
|
771
831
|
output: {
|
|
772
|
-
type: "video"
|
|
773
|
-
url: string
|
|
832
|
+
type: "video";
|
|
833
|
+
url: string;
|
|
774
834
|
parameters: string;
|
|
835
|
+
} | {
|
|
836
|
+
type: "images";
|
|
837
|
+
url: string;
|
|
838
|
+
imageIntervalS: number;
|
|
839
|
+
} | {
|
|
840
|
+
type: "none";
|
|
775
841
|
};
|
|
776
842
|
input: {
|
|
777
843
|
type: "RTSP_URL";
|
|
@@ -839,9 +905,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
839
905
|
};
|
|
840
906
|
video: {
|
|
841
907
|
output: {
|
|
842
|
-
type: "video"
|
|
843
|
-
url: string
|
|
908
|
+
type: "video";
|
|
909
|
+
url: string;
|
|
844
910
|
parameters: string;
|
|
911
|
+
} | {
|
|
912
|
+
type: "images";
|
|
913
|
+
url: string;
|
|
914
|
+
imageIntervalS: number;
|
|
915
|
+
} | {
|
|
916
|
+
type: "none";
|
|
845
917
|
};
|
|
846
918
|
input: {
|
|
847
919
|
type: "RTSP_URL";
|
|
@@ -909,9 +981,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
909
981
|
};
|
|
910
982
|
video: {
|
|
911
983
|
output: {
|
|
912
|
-
type: "video"
|
|
913
|
-
url: string
|
|
984
|
+
type: "video";
|
|
985
|
+
url: string;
|
|
914
986
|
parameters: string;
|
|
987
|
+
} | {
|
|
988
|
+
type: "images";
|
|
989
|
+
url: string;
|
|
990
|
+
imageIntervalS: number;
|
|
991
|
+
} | {
|
|
992
|
+
type: "none";
|
|
915
993
|
};
|
|
916
994
|
input: {
|
|
917
995
|
type: "RTSP_URL";
|
|
@@ -979,9 +1057,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
979
1057
|
};
|
|
980
1058
|
video: {
|
|
981
1059
|
output: {
|
|
982
|
-
type: "video"
|
|
983
|
-
url: string
|
|
1060
|
+
type: "video";
|
|
1061
|
+
url: string;
|
|
984
1062
|
parameters: string;
|
|
1063
|
+
} | {
|
|
1064
|
+
type: "images";
|
|
1065
|
+
url: string;
|
|
1066
|
+
imageIntervalS: number;
|
|
1067
|
+
} | {
|
|
1068
|
+
type: "none";
|
|
985
1069
|
};
|
|
986
1070
|
input: {
|
|
987
1071
|
type: "RTSP_URL";
|
|
@@ -1051,9 +1135,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
1051
1135
|
};
|
|
1052
1136
|
video: {
|
|
1053
1137
|
output: {
|
|
1054
|
-
type: "video"
|
|
1055
|
-
url: string
|
|
1138
|
+
type: "video";
|
|
1139
|
+
url: string;
|
|
1056
1140
|
parameters: string;
|
|
1141
|
+
} | {
|
|
1142
|
+
type: "images";
|
|
1143
|
+
url: string;
|
|
1144
|
+
imageIntervalS: number;
|
|
1145
|
+
} | {
|
|
1146
|
+
type: "none";
|
|
1057
1147
|
};
|
|
1058
1148
|
input: {
|
|
1059
1149
|
type: "RTSP_URL";
|
|
@@ -1121,9 +1211,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
1121
1211
|
};
|
|
1122
1212
|
video: {
|
|
1123
1213
|
output: {
|
|
1124
|
-
type: "video"
|
|
1125
|
-
url: string
|
|
1214
|
+
type: "video";
|
|
1215
|
+
url: string;
|
|
1126
1216
|
parameters: string;
|
|
1217
|
+
} | {
|
|
1218
|
+
type: "images";
|
|
1219
|
+
url: string;
|
|
1220
|
+
imageIntervalS: number;
|
|
1221
|
+
} | {
|
|
1222
|
+
type: "none";
|
|
1127
1223
|
};
|
|
1128
1224
|
input: {
|
|
1129
1225
|
type: "RTSP_URL";
|
|
@@ -1191,9 +1287,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
1191
1287
|
};
|
|
1192
1288
|
video: {
|
|
1193
1289
|
output: {
|
|
1194
|
-
type: "video"
|
|
1195
|
-
url: string
|
|
1290
|
+
type: "video";
|
|
1291
|
+
url: string;
|
|
1196
1292
|
parameters: string;
|
|
1293
|
+
} | {
|
|
1294
|
+
type: "images";
|
|
1295
|
+
url: string;
|
|
1296
|
+
imageIntervalS: number;
|
|
1297
|
+
} | {
|
|
1298
|
+
type: "none";
|
|
1197
1299
|
};
|
|
1198
1300
|
input: {
|
|
1199
1301
|
type: "RTSP_URL";
|
|
@@ -1261,9 +1363,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
1261
1363
|
};
|
|
1262
1364
|
video: {
|
|
1263
1365
|
output: {
|
|
1264
|
-
type: "video"
|
|
1265
|
-
url: string
|
|
1366
|
+
type: "video";
|
|
1367
|
+
url: string;
|
|
1266
1368
|
parameters: string;
|
|
1369
|
+
} | {
|
|
1370
|
+
type: "images";
|
|
1371
|
+
url: string;
|
|
1372
|
+
imageIntervalS: number;
|
|
1373
|
+
} | {
|
|
1374
|
+
type: "none";
|
|
1267
1375
|
};
|
|
1268
1376
|
input: {
|
|
1269
1377
|
type: "RTSP_URL";
|
|
@@ -1331,9 +1439,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
1331
1439
|
};
|
|
1332
1440
|
video: {
|
|
1333
1441
|
output: {
|
|
1334
|
-
type: "video"
|
|
1335
|
-
url: string
|
|
1442
|
+
type: "video";
|
|
1443
|
+
url: string;
|
|
1336
1444
|
parameters: string;
|
|
1445
|
+
} | {
|
|
1446
|
+
type: "images";
|
|
1447
|
+
url: string;
|
|
1448
|
+
imageIntervalS: number;
|
|
1449
|
+
} | {
|
|
1450
|
+
type: "none";
|
|
1337
1451
|
};
|
|
1338
1452
|
input: {
|
|
1339
1453
|
type: "RTSP_URL";
|
|
@@ -1401,9 +1515,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
1401
1515
|
};
|
|
1402
1516
|
video: {
|
|
1403
1517
|
output: {
|
|
1404
|
-
type: "video"
|
|
1405
|
-
url: string
|
|
1518
|
+
type: "video";
|
|
1519
|
+
url: string;
|
|
1406
1520
|
parameters: string;
|
|
1521
|
+
} | {
|
|
1522
|
+
type: "images";
|
|
1523
|
+
url: string;
|
|
1524
|
+
imageIntervalS: number;
|
|
1525
|
+
} | {
|
|
1526
|
+
type: "none";
|
|
1407
1527
|
};
|
|
1408
1528
|
input: {
|
|
1409
1529
|
type: "RTSP_URL";
|
|
@@ -1482,9 +1602,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
1482
1602
|
};
|
|
1483
1603
|
video: {
|
|
1484
1604
|
output: {
|
|
1485
|
-
type: "video"
|
|
1486
|
-
url: string
|
|
1605
|
+
type: "video";
|
|
1606
|
+
url: string;
|
|
1487
1607
|
parameters: string;
|
|
1608
|
+
} | {
|
|
1609
|
+
type: "images";
|
|
1610
|
+
url: string;
|
|
1611
|
+
imageIntervalS: number;
|
|
1612
|
+
} | {
|
|
1613
|
+
type: "none";
|
|
1488
1614
|
};
|
|
1489
1615
|
input: {
|
|
1490
1616
|
type: "RTSP_URL";
|
|
@@ -1555,9 +1681,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
1555
1681
|
};
|
|
1556
1682
|
video: {
|
|
1557
1683
|
output: {
|
|
1558
|
-
type: "video"
|
|
1559
|
-
url: string
|
|
1684
|
+
type: "video";
|
|
1685
|
+
url: string;
|
|
1560
1686
|
parameters: string;
|
|
1687
|
+
} | {
|
|
1688
|
+
type: "images";
|
|
1689
|
+
url: string;
|
|
1690
|
+
imageIntervalS: number;
|
|
1691
|
+
} | {
|
|
1692
|
+
type: "none";
|
|
1561
1693
|
};
|
|
1562
1694
|
input: {
|
|
1563
1695
|
type: "RTSP_URL";
|
|
@@ -1625,9 +1757,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
1625
1757
|
};
|
|
1626
1758
|
video: {
|
|
1627
1759
|
output: {
|
|
1628
|
-
type: "video"
|
|
1629
|
-
url: string
|
|
1760
|
+
type: "video";
|
|
1761
|
+
url: string;
|
|
1630
1762
|
parameters: string;
|
|
1763
|
+
} | {
|
|
1764
|
+
type: "images";
|
|
1765
|
+
url: string;
|
|
1766
|
+
imageIntervalS: number;
|
|
1767
|
+
} | {
|
|
1768
|
+
type: "none";
|
|
1631
1769
|
};
|
|
1632
1770
|
input: {
|
|
1633
1771
|
type: "RTSP_URL";
|
|
@@ -1706,9 +1844,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
1706
1844
|
};
|
|
1707
1845
|
video: {
|
|
1708
1846
|
output: {
|
|
1709
|
-
type: "video"
|
|
1710
|
-
url: string
|
|
1847
|
+
type: "video";
|
|
1848
|
+
url: string;
|
|
1711
1849
|
parameters: string;
|
|
1850
|
+
} | {
|
|
1851
|
+
type: "images";
|
|
1852
|
+
url: string;
|
|
1853
|
+
imageIntervalS: number;
|
|
1854
|
+
} | {
|
|
1855
|
+
type: "none";
|
|
1712
1856
|
};
|
|
1713
1857
|
input: {
|
|
1714
1858
|
type: "RTSP_URL";
|
|
@@ -1776,9 +1920,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
1776
1920
|
};
|
|
1777
1921
|
video: {
|
|
1778
1922
|
output: {
|
|
1779
|
-
type: "video"
|
|
1780
|
-
url: string
|
|
1923
|
+
type: "video";
|
|
1924
|
+
url: string;
|
|
1781
1925
|
parameters: string;
|
|
1926
|
+
} | {
|
|
1927
|
+
type: "images";
|
|
1928
|
+
url: string;
|
|
1929
|
+
imageIntervalS: number;
|
|
1930
|
+
} | {
|
|
1931
|
+
type: "none";
|
|
1782
1932
|
};
|
|
1783
1933
|
input: {
|
|
1784
1934
|
type: "RTSP_URL";
|
|
@@ -1846,9 +1996,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
1846
1996
|
};
|
|
1847
1997
|
video: {
|
|
1848
1998
|
output: {
|
|
1849
|
-
type: "video"
|
|
1850
|
-
url: string
|
|
1999
|
+
type: "video";
|
|
2000
|
+
url: string;
|
|
1851
2001
|
parameters: string;
|
|
2002
|
+
} | {
|
|
2003
|
+
type: "images";
|
|
2004
|
+
url: string;
|
|
2005
|
+
imageIntervalS: number;
|
|
2006
|
+
} | {
|
|
2007
|
+
type: "none";
|
|
1852
2008
|
};
|
|
1853
2009
|
input: {
|
|
1854
2010
|
type: "RTSP_URL";
|
|
@@ -1916,9 +2072,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
1916
2072
|
};
|
|
1917
2073
|
video: {
|
|
1918
2074
|
output: {
|
|
1919
|
-
type: "video"
|
|
1920
|
-
url: string
|
|
2075
|
+
type: "video";
|
|
2076
|
+
url: string;
|
|
1921
2077
|
parameters: string;
|
|
2078
|
+
} | {
|
|
2079
|
+
type: "images";
|
|
2080
|
+
url: string;
|
|
2081
|
+
imageIntervalS: number;
|
|
2082
|
+
} | {
|
|
2083
|
+
type: "none";
|
|
1922
2084
|
};
|
|
1923
2085
|
input: {
|
|
1924
2086
|
type: "RTSP_URL";
|
|
@@ -1988,9 +2150,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
1988
2150
|
};
|
|
1989
2151
|
video: {
|
|
1990
2152
|
output: {
|
|
1991
|
-
type: "video"
|
|
1992
|
-
url: string
|
|
2153
|
+
type: "video";
|
|
2154
|
+
url: string;
|
|
1993
2155
|
parameters: string;
|
|
2156
|
+
} | {
|
|
2157
|
+
type: "images";
|
|
2158
|
+
url: string;
|
|
2159
|
+
imageIntervalS: number;
|
|
2160
|
+
} | {
|
|
2161
|
+
type: "none";
|
|
1994
2162
|
};
|
|
1995
2163
|
input: {
|
|
1996
2164
|
type: "RTSP_URL";
|
|
@@ -2058,9 +2226,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
2058
2226
|
};
|
|
2059
2227
|
video: {
|
|
2060
2228
|
output: {
|
|
2061
|
-
type: "video"
|
|
2062
|
-
url: string
|
|
2229
|
+
type: "video";
|
|
2230
|
+
url: string;
|
|
2063
2231
|
parameters: string;
|
|
2232
|
+
} | {
|
|
2233
|
+
type: "images";
|
|
2234
|
+
url: string;
|
|
2235
|
+
imageIntervalS: number;
|
|
2236
|
+
} | {
|
|
2237
|
+
type: "none";
|
|
2064
2238
|
};
|
|
2065
2239
|
input: {
|
|
2066
2240
|
type: "RTSP_URL";
|
|
@@ -2128,9 +2302,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
2128
2302
|
};
|
|
2129
2303
|
video: {
|
|
2130
2304
|
output: {
|
|
2131
|
-
type: "video"
|
|
2132
|
-
url: string
|
|
2305
|
+
type: "video";
|
|
2306
|
+
url: string;
|
|
2133
2307
|
parameters: string;
|
|
2308
|
+
} | {
|
|
2309
|
+
type: "images";
|
|
2310
|
+
url: string;
|
|
2311
|
+
imageIntervalS: number;
|
|
2312
|
+
} | {
|
|
2313
|
+
type: "none";
|
|
2134
2314
|
};
|
|
2135
2315
|
input: {
|
|
2136
2316
|
type: "RTSP_URL";
|
|
@@ -2198,9 +2378,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
2198
2378
|
};
|
|
2199
2379
|
video: {
|
|
2200
2380
|
output: {
|
|
2201
|
-
type: "video"
|
|
2202
|
-
url: string
|
|
2381
|
+
type: "video";
|
|
2382
|
+
url: string;
|
|
2203
2383
|
parameters: string;
|
|
2384
|
+
} | {
|
|
2385
|
+
type: "images";
|
|
2386
|
+
url: string;
|
|
2387
|
+
imageIntervalS: number;
|
|
2388
|
+
} | {
|
|
2389
|
+
type: "none";
|
|
2204
2390
|
};
|
|
2205
2391
|
input: {
|
|
2206
2392
|
type: "RTSP_URL";
|
|
@@ -2268,9 +2454,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
2268
2454
|
};
|
|
2269
2455
|
video: {
|
|
2270
2456
|
output: {
|
|
2271
|
-
type: "video"
|
|
2272
|
-
url: string
|
|
2457
|
+
type: "video";
|
|
2458
|
+
url: string;
|
|
2273
2459
|
parameters: string;
|
|
2460
|
+
} | {
|
|
2461
|
+
type: "images";
|
|
2462
|
+
url: string;
|
|
2463
|
+
imageIntervalS: number;
|
|
2464
|
+
} | {
|
|
2465
|
+
type: "none";
|
|
2274
2466
|
};
|
|
2275
2467
|
input: {
|
|
2276
2468
|
type: "RTSP_URL";
|
|
@@ -2338,9 +2530,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
2338
2530
|
};
|
|
2339
2531
|
video: {
|
|
2340
2532
|
output: {
|
|
2341
|
-
type: "video"
|
|
2342
|
-
url: string
|
|
2533
|
+
type: "video";
|
|
2534
|
+
url: string;
|
|
2343
2535
|
parameters: string;
|
|
2536
|
+
} | {
|
|
2537
|
+
type: "images";
|
|
2538
|
+
url: string;
|
|
2539
|
+
imageIntervalS: number;
|
|
2540
|
+
} | {
|
|
2541
|
+
type: "none";
|
|
2344
2542
|
};
|
|
2345
2543
|
input: {
|
|
2346
2544
|
type: "RTSP_URL";
|
|
@@ -2408,9 +2606,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
2408
2606
|
};
|
|
2409
2607
|
video: {
|
|
2410
2608
|
output: {
|
|
2411
|
-
type: "video"
|
|
2412
|
-
url: string
|
|
2609
|
+
type: "video";
|
|
2610
|
+
url: string;
|
|
2413
2611
|
parameters: string;
|
|
2612
|
+
} | {
|
|
2613
|
+
type: "images";
|
|
2614
|
+
url: string;
|
|
2615
|
+
imageIntervalS: number;
|
|
2616
|
+
} | {
|
|
2617
|
+
type: "none";
|
|
2414
2618
|
};
|
|
2415
2619
|
input: {
|
|
2416
2620
|
type: "RTSP_URL";
|
|
@@ -2480,9 +2684,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
2480
2684
|
};
|
|
2481
2685
|
video: {
|
|
2482
2686
|
output: {
|
|
2483
|
-
type: "video"
|
|
2484
|
-
url: string
|
|
2687
|
+
type: "video";
|
|
2688
|
+
url: string;
|
|
2485
2689
|
parameters: string;
|
|
2690
|
+
} | {
|
|
2691
|
+
type: "images";
|
|
2692
|
+
url: string;
|
|
2693
|
+
imageIntervalS: number;
|
|
2694
|
+
} | {
|
|
2695
|
+
type: "none";
|
|
2486
2696
|
};
|
|
2487
2697
|
input: {
|
|
2488
2698
|
type: "RTSP_URL";
|
|
@@ -2550,9 +2760,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
2550
2760
|
};
|
|
2551
2761
|
video: {
|
|
2552
2762
|
output: {
|
|
2553
|
-
type: "video"
|
|
2554
|
-
url: string
|
|
2763
|
+
type: "video";
|
|
2764
|
+
url: string;
|
|
2555
2765
|
parameters: string;
|
|
2766
|
+
} | {
|
|
2767
|
+
type: "images";
|
|
2768
|
+
url: string;
|
|
2769
|
+
imageIntervalS: number;
|
|
2770
|
+
} | {
|
|
2771
|
+
type: "none";
|
|
2556
2772
|
};
|
|
2557
2773
|
input: {
|
|
2558
2774
|
type: "RTSP_URL";
|
|
@@ -2620,9 +2836,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
2620
2836
|
};
|
|
2621
2837
|
video: {
|
|
2622
2838
|
output: {
|
|
2623
|
-
type: "video"
|
|
2624
|
-
url: string
|
|
2839
|
+
type: "video";
|
|
2840
|
+
url: string;
|
|
2625
2841
|
parameters: string;
|
|
2842
|
+
} | {
|
|
2843
|
+
type: "images";
|
|
2844
|
+
url: string;
|
|
2845
|
+
imageIntervalS: number;
|
|
2846
|
+
} | {
|
|
2847
|
+
type: "none";
|
|
2626
2848
|
};
|
|
2627
2849
|
input: {
|
|
2628
2850
|
type: "RTSP_URL";
|
|
@@ -2690,9 +2912,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
2690
2912
|
};
|
|
2691
2913
|
video: {
|
|
2692
2914
|
output: {
|
|
2693
|
-
type: "video"
|
|
2694
|
-
url: string
|
|
2915
|
+
type: "video";
|
|
2916
|
+
url: string;
|
|
2695
2917
|
parameters: string;
|
|
2918
|
+
} | {
|
|
2919
|
+
type: "images";
|
|
2920
|
+
url: string;
|
|
2921
|
+
imageIntervalS: number;
|
|
2922
|
+
} | {
|
|
2923
|
+
type: "none";
|
|
2696
2924
|
};
|
|
2697
2925
|
input: {
|
|
2698
2926
|
type: "RTSP_URL";
|
|
@@ -2760,9 +2988,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
2760
2988
|
};
|
|
2761
2989
|
video: {
|
|
2762
2990
|
output: {
|
|
2763
|
-
type: "video"
|
|
2764
|
-
url: string
|
|
2991
|
+
type: "video";
|
|
2992
|
+
url: string;
|
|
2765
2993
|
parameters: string;
|
|
2994
|
+
} | {
|
|
2995
|
+
type: "images";
|
|
2996
|
+
url: string;
|
|
2997
|
+
imageIntervalS: number;
|
|
2998
|
+
} | {
|
|
2999
|
+
type: "none";
|
|
2766
3000
|
};
|
|
2767
3001
|
input: {
|
|
2768
3002
|
type: "RTSP_URL";
|
|
@@ -2830,9 +3064,15 @@ export declare class CamStreamerAPI<Client extends IClient<TResponse, any>> exte
|
|
|
2830
3064
|
};
|
|
2831
3065
|
video: {
|
|
2832
3066
|
output: {
|
|
2833
|
-
type: "video"
|
|
2834
|
-
url: string
|
|
3067
|
+
type: "video";
|
|
3068
|
+
url: string;
|
|
2835
3069
|
parameters: string;
|
|
3070
|
+
} | {
|
|
3071
|
+
type: "images";
|
|
3072
|
+
url: string;
|
|
3073
|
+
imageIntervalS: number;
|
|
3074
|
+
} | {
|
|
3075
|
+
type: "none";
|
|
2836
3076
|
};
|
|
2837
3077
|
input: {
|
|
2838
3078
|
type: "RTSP_URL";
|