camstreamerlib 4.0.0-beta.135 → 4.0.0-beta.137
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 +40 -0
- package/cjs/CamStreamerAPI.js +5 -0
- package/cjs/PlaneTrackerAPI.d.ts +1 -1
- package/cjs/VapixAPI.d.ts +6 -1
- package/cjs/VapixAPI.js +30 -2
- package/cjs/types/CamStreamerAPI/CamStreamerAPI.d.ts +342 -2
- package/cjs/types/CamStreamerAPI/CamStreamerAPI.js +20 -20
- package/cjs/types/CamStreamerAPI/facebookSchema.d.ts +7 -0
- package/cjs/types/CamStreamerAPI/streamCommonTypes.d.ts +7 -0
- package/cjs/types/CamStreamerAPI/streamCommonTypes.js +1 -0
- package/cjs/types/CamStreamerAPI/streamsSchema.d.ts +141 -0
- package/cjs/types/CamStreamerAPI/streamsSchema.js +40 -18
- package/cjs/types/CamStreamerAPI/windySchema.d.ts +7 -0
- package/cjs/types/CamStreamerAPI/youtubeSchema.d.ts +7 -0
- package/cjs/types/GenetecAgent.d.ts +2 -2
- package/esm/CamStreamerAPI.js +5 -0
- package/esm/VapixAPI.js +30 -2
- package/esm/types/CamStreamerAPI/CamStreamerAPI.js +21 -21
- package/esm/types/CamStreamerAPI/streamCommonTypes.js +1 -0
- package/esm/types/CamStreamerAPI/streamsSchema.js +39 -17
- package/package.json +1 -1
- package/types/CamStreamerAPI.d.ts +40 -0
- package/types/PlaneTrackerAPI.d.ts +1 -1
- package/types/VapixAPI.d.ts +6 -1
- package/types/types/CamStreamerAPI/CamStreamerAPI.d.ts +342 -2
- package/types/types/CamStreamerAPI/facebookSchema.d.ts +7 -0
- package/types/types/CamStreamerAPI/streamCommonTypes.d.ts +7 -0
- package/types/types/CamStreamerAPI/streamsSchema.d.ts +141 -0
- package/types/types/CamStreamerAPI/windySchema.d.ts +7 -0
- package/types/types/CamStreamerAPI/youtubeSchema.d.ts +7 -0
- package/types/types/GenetecAgent.d.ts +2 -2
|
@@ -1,4 +1,26 @@
|
|
|
1
1
|
import z from 'zod';
|
|
2
|
+
export declare const streamPlatforms: {
|
|
3
|
+
readonly da_cast: "da_cast";
|
|
4
|
+
readonly dailymotion: "dailymotion";
|
|
5
|
+
readonly facebook_rtmp: "facebook_rtmp";
|
|
6
|
+
readonly game_changer: "game_changer";
|
|
7
|
+
readonly hls_pull: "hls_pull";
|
|
8
|
+
readonly hls_push: "hls_push";
|
|
9
|
+
readonly ibm: "ibm";
|
|
10
|
+
readonly mpeg_dvb: "mpeg_dvb";
|
|
11
|
+
readonly microsoft_azure: "microsoft_azure";
|
|
12
|
+
readonly microsoft_stream: "microsoft_stream";
|
|
13
|
+
readonly rtmp: "rtmp";
|
|
14
|
+
readonly sd_card: "sd_card";
|
|
15
|
+
readonly srt: "srt";
|
|
16
|
+
readonly twitch: "twitch";
|
|
17
|
+
readonly vimeo: "vimeo";
|
|
18
|
+
readonly wowza: "wowza";
|
|
19
|
+
readonly youtube_rtmp: "youtube_rtmp";
|
|
20
|
+
readonly windy: "windy";
|
|
21
|
+
readonly youtube: "youtube";
|
|
22
|
+
readonly facebook: "facebook";
|
|
23
|
+
};
|
|
2
24
|
export declare const daCastSchema: z.ZodObject<{
|
|
3
25
|
streamId: z.ZodString;
|
|
4
26
|
enabled: z.ZodBoolean;
|
|
@@ -108,14 +130,17 @@ export declare const daCastSchema: z.ZodObject<{
|
|
|
108
130
|
type: z.ZodLiteral<"video">;
|
|
109
131
|
url: z.ZodNullable<z.ZodString>;
|
|
110
132
|
parameters: z.ZodString;
|
|
133
|
+
saveToSdCard: z.ZodBoolean;
|
|
111
134
|
}, "strip", z.ZodTypeAny, {
|
|
112
135
|
type: "video";
|
|
113
136
|
url: string | null;
|
|
114
137
|
parameters: string;
|
|
138
|
+
saveToSdCard: boolean;
|
|
115
139
|
}, {
|
|
116
140
|
type: "video";
|
|
117
141
|
url: string | null;
|
|
118
142
|
parameters: string;
|
|
143
|
+
saveToSdCard: boolean;
|
|
119
144
|
}>, z.ZodObject<{
|
|
120
145
|
type: z.ZodLiteral<"images">;
|
|
121
146
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -169,6 +194,7 @@ export declare const daCastSchema: z.ZodObject<{
|
|
|
169
194
|
type: "video";
|
|
170
195
|
url: string | null;
|
|
171
196
|
parameters: string;
|
|
197
|
+
saveToSdCard: boolean;
|
|
172
198
|
} | {
|
|
173
199
|
type: "images";
|
|
174
200
|
url: string | null;
|
|
@@ -192,6 +218,7 @@ export declare const daCastSchema: z.ZodObject<{
|
|
|
192
218
|
type: "video";
|
|
193
219
|
url: string | null;
|
|
194
220
|
parameters: string;
|
|
221
|
+
saveToSdCard: boolean;
|
|
195
222
|
} | {
|
|
196
223
|
type: "images";
|
|
197
224
|
url: string | null;
|
|
@@ -312,6 +339,7 @@ export declare const daCastSchema: z.ZodObject<{
|
|
|
312
339
|
type: "video";
|
|
313
340
|
url: string | null;
|
|
314
341
|
parameters: string;
|
|
342
|
+
saveToSdCard: boolean;
|
|
315
343
|
} | {
|
|
316
344
|
type: "images";
|
|
317
345
|
url: string | null;
|
|
@@ -387,6 +415,7 @@ export declare const daCastSchema: z.ZodObject<{
|
|
|
387
415
|
type: "video";
|
|
388
416
|
url: string | null;
|
|
389
417
|
parameters: string;
|
|
418
|
+
saveToSdCard: boolean;
|
|
390
419
|
} | {
|
|
391
420
|
type: "images";
|
|
392
421
|
url: string | null;
|
|
@@ -535,14 +564,17 @@ export declare const dailymotionSchema: z.ZodObject<{
|
|
|
535
564
|
type: z.ZodLiteral<"video">;
|
|
536
565
|
url: z.ZodNullable<z.ZodString>;
|
|
537
566
|
parameters: z.ZodString;
|
|
567
|
+
saveToSdCard: z.ZodBoolean;
|
|
538
568
|
}, "strip", z.ZodTypeAny, {
|
|
539
569
|
type: "video";
|
|
540
570
|
url: string | null;
|
|
541
571
|
parameters: string;
|
|
572
|
+
saveToSdCard: boolean;
|
|
542
573
|
}, {
|
|
543
574
|
type: "video";
|
|
544
575
|
url: string | null;
|
|
545
576
|
parameters: string;
|
|
577
|
+
saveToSdCard: boolean;
|
|
546
578
|
}>, z.ZodObject<{
|
|
547
579
|
type: z.ZodLiteral<"images">;
|
|
548
580
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -596,6 +628,7 @@ export declare const dailymotionSchema: z.ZodObject<{
|
|
|
596
628
|
type: "video";
|
|
597
629
|
url: string | null;
|
|
598
630
|
parameters: string;
|
|
631
|
+
saveToSdCard: boolean;
|
|
599
632
|
} | {
|
|
600
633
|
type: "images";
|
|
601
634
|
url: string | null;
|
|
@@ -619,6 +652,7 @@ export declare const dailymotionSchema: z.ZodObject<{
|
|
|
619
652
|
type: "video";
|
|
620
653
|
url: string | null;
|
|
621
654
|
parameters: string;
|
|
655
|
+
saveToSdCard: boolean;
|
|
622
656
|
} | {
|
|
623
657
|
type: "images";
|
|
624
658
|
url: string | null;
|
|
@@ -739,6 +773,7 @@ export declare const dailymotionSchema: z.ZodObject<{
|
|
|
739
773
|
type: "video";
|
|
740
774
|
url: string | null;
|
|
741
775
|
parameters: string;
|
|
776
|
+
saveToSdCard: boolean;
|
|
742
777
|
} | {
|
|
743
778
|
type: "images";
|
|
744
779
|
url: string | null;
|
|
@@ -814,6 +849,7 @@ export declare const dailymotionSchema: z.ZodObject<{
|
|
|
814
849
|
type: "video";
|
|
815
850
|
url: string | null;
|
|
816
851
|
parameters: string;
|
|
852
|
+
saveToSdCard: boolean;
|
|
817
853
|
} | {
|
|
818
854
|
type: "images";
|
|
819
855
|
url: string | null;
|
|
@@ -962,14 +998,17 @@ export declare const facebookRtmpSchema: z.ZodObject<{
|
|
|
962
998
|
type: z.ZodLiteral<"video">;
|
|
963
999
|
url: z.ZodNullable<z.ZodString>;
|
|
964
1000
|
parameters: z.ZodString;
|
|
1001
|
+
saveToSdCard: z.ZodBoolean;
|
|
965
1002
|
}, "strip", z.ZodTypeAny, {
|
|
966
1003
|
type: "video";
|
|
967
1004
|
url: string | null;
|
|
968
1005
|
parameters: string;
|
|
1006
|
+
saveToSdCard: boolean;
|
|
969
1007
|
}, {
|
|
970
1008
|
type: "video";
|
|
971
1009
|
url: string | null;
|
|
972
1010
|
parameters: string;
|
|
1011
|
+
saveToSdCard: boolean;
|
|
973
1012
|
}>, z.ZodObject<{
|
|
974
1013
|
type: z.ZodLiteral<"images">;
|
|
975
1014
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -1023,6 +1062,7 @@ export declare const facebookRtmpSchema: z.ZodObject<{
|
|
|
1023
1062
|
type: "video";
|
|
1024
1063
|
url: string | null;
|
|
1025
1064
|
parameters: string;
|
|
1065
|
+
saveToSdCard: boolean;
|
|
1026
1066
|
} | {
|
|
1027
1067
|
type: "images";
|
|
1028
1068
|
url: string | null;
|
|
@@ -1046,6 +1086,7 @@ export declare const facebookRtmpSchema: z.ZodObject<{
|
|
|
1046
1086
|
type: "video";
|
|
1047
1087
|
url: string | null;
|
|
1048
1088
|
parameters: string;
|
|
1089
|
+
saveToSdCard: boolean;
|
|
1049
1090
|
} | {
|
|
1050
1091
|
type: "images";
|
|
1051
1092
|
url: string | null;
|
|
@@ -1166,6 +1207,7 @@ export declare const facebookRtmpSchema: z.ZodObject<{
|
|
|
1166
1207
|
type: "video";
|
|
1167
1208
|
url: string | null;
|
|
1168
1209
|
parameters: string;
|
|
1210
|
+
saveToSdCard: boolean;
|
|
1169
1211
|
} | {
|
|
1170
1212
|
type: "images";
|
|
1171
1213
|
url: string | null;
|
|
@@ -1241,6 +1283,7 @@ export declare const facebookRtmpSchema: z.ZodObject<{
|
|
|
1241
1283
|
type: "video";
|
|
1242
1284
|
url: string | null;
|
|
1243
1285
|
parameters: string;
|
|
1286
|
+
saveToSdCard: boolean;
|
|
1244
1287
|
} | {
|
|
1245
1288
|
type: "images";
|
|
1246
1289
|
url: string | null;
|
|
@@ -1389,14 +1432,17 @@ export declare const gameChangerSchema: z.ZodObject<{
|
|
|
1389
1432
|
type: z.ZodLiteral<"video">;
|
|
1390
1433
|
url: z.ZodNullable<z.ZodString>;
|
|
1391
1434
|
parameters: z.ZodString;
|
|
1435
|
+
saveToSdCard: z.ZodBoolean;
|
|
1392
1436
|
}, "strip", z.ZodTypeAny, {
|
|
1393
1437
|
type: "video";
|
|
1394
1438
|
url: string | null;
|
|
1395
1439
|
parameters: string;
|
|
1440
|
+
saveToSdCard: boolean;
|
|
1396
1441
|
}, {
|
|
1397
1442
|
type: "video";
|
|
1398
1443
|
url: string | null;
|
|
1399
1444
|
parameters: string;
|
|
1445
|
+
saveToSdCard: boolean;
|
|
1400
1446
|
}>, z.ZodObject<{
|
|
1401
1447
|
type: z.ZodLiteral<"images">;
|
|
1402
1448
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -1450,6 +1496,7 @@ export declare const gameChangerSchema: z.ZodObject<{
|
|
|
1450
1496
|
type: "video";
|
|
1451
1497
|
url: string | null;
|
|
1452
1498
|
parameters: string;
|
|
1499
|
+
saveToSdCard: boolean;
|
|
1453
1500
|
} | {
|
|
1454
1501
|
type: "images";
|
|
1455
1502
|
url: string | null;
|
|
@@ -1473,6 +1520,7 @@ export declare const gameChangerSchema: z.ZodObject<{
|
|
|
1473
1520
|
type: "video";
|
|
1474
1521
|
url: string | null;
|
|
1475
1522
|
parameters: string;
|
|
1523
|
+
saveToSdCard: boolean;
|
|
1476
1524
|
} | {
|
|
1477
1525
|
type: "images";
|
|
1478
1526
|
url: string | null;
|
|
@@ -1593,6 +1641,7 @@ export declare const gameChangerSchema: z.ZodObject<{
|
|
|
1593
1641
|
type: "video";
|
|
1594
1642
|
url: string | null;
|
|
1595
1643
|
parameters: string;
|
|
1644
|
+
saveToSdCard: boolean;
|
|
1596
1645
|
} | {
|
|
1597
1646
|
type: "images";
|
|
1598
1647
|
url: string | null;
|
|
@@ -1668,6 +1717,7 @@ export declare const gameChangerSchema: z.ZodObject<{
|
|
|
1668
1717
|
type: "video";
|
|
1669
1718
|
url: string | null;
|
|
1670
1719
|
parameters: string;
|
|
1720
|
+
saveToSdCard: boolean;
|
|
1671
1721
|
} | {
|
|
1672
1722
|
type: "images";
|
|
1673
1723
|
url: string | null;
|
|
@@ -1816,14 +1866,17 @@ export declare const hlsPullSchema: z.ZodObject<{
|
|
|
1816
1866
|
type: z.ZodLiteral<"video">;
|
|
1817
1867
|
url: z.ZodNullable<z.ZodString>;
|
|
1818
1868
|
parameters: z.ZodString;
|
|
1869
|
+
saveToSdCard: z.ZodBoolean;
|
|
1819
1870
|
}, "strip", z.ZodTypeAny, {
|
|
1820
1871
|
type: "video";
|
|
1821
1872
|
url: string | null;
|
|
1822
1873
|
parameters: string;
|
|
1874
|
+
saveToSdCard: boolean;
|
|
1823
1875
|
}, {
|
|
1824
1876
|
type: "video";
|
|
1825
1877
|
url: string | null;
|
|
1826
1878
|
parameters: string;
|
|
1879
|
+
saveToSdCard: boolean;
|
|
1827
1880
|
}>, z.ZodObject<{
|
|
1828
1881
|
type: z.ZodLiteral<"images">;
|
|
1829
1882
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -1877,6 +1930,7 @@ export declare const hlsPullSchema: z.ZodObject<{
|
|
|
1877
1930
|
type: "video";
|
|
1878
1931
|
url: string | null;
|
|
1879
1932
|
parameters: string;
|
|
1933
|
+
saveToSdCard: boolean;
|
|
1880
1934
|
} | {
|
|
1881
1935
|
type: "images";
|
|
1882
1936
|
url: string | null;
|
|
@@ -1900,6 +1954,7 @@ export declare const hlsPullSchema: z.ZodObject<{
|
|
|
1900
1954
|
type: "video";
|
|
1901
1955
|
url: string | null;
|
|
1902
1956
|
parameters: string;
|
|
1957
|
+
saveToSdCard: boolean;
|
|
1903
1958
|
} | {
|
|
1904
1959
|
type: "images";
|
|
1905
1960
|
url: string | null;
|
|
@@ -2020,6 +2075,7 @@ export declare const hlsPullSchema: z.ZodObject<{
|
|
|
2020
2075
|
type: "video";
|
|
2021
2076
|
url: string | null;
|
|
2022
2077
|
parameters: string;
|
|
2078
|
+
saveToSdCard: boolean;
|
|
2023
2079
|
} | {
|
|
2024
2080
|
type: "images";
|
|
2025
2081
|
url: string | null;
|
|
@@ -2095,6 +2151,7 @@ export declare const hlsPullSchema: z.ZodObject<{
|
|
|
2095
2151
|
type: "video";
|
|
2096
2152
|
url: string | null;
|
|
2097
2153
|
parameters: string;
|
|
2154
|
+
saveToSdCard: boolean;
|
|
2098
2155
|
} | {
|
|
2099
2156
|
type: "images";
|
|
2100
2157
|
url: string | null;
|
|
@@ -2243,14 +2300,17 @@ export declare const hlsPushSchema: z.ZodObject<{
|
|
|
2243
2300
|
type: z.ZodLiteral<"video">;
|
|
2244
2301
|
url: z.ZodNullable<z.ZodString>;
|
|
2245
2302
|
parameters: z.ZodString;
|
|
2303
|
+
saveToSdCard: z.ZodBoolean;
|
|
2246
2304
|
}, "strip", z.ZodTypeAny, {
|
|
2247
2305
|
type: "video";
|
|
2248
2306
|
url: string | null;
|
|
2249
2307
|
parameters: string;
|
|
2308
|
+
saveToSdCard: boolean;
|
|
2250
2309
|
}, {
|
|
2251
2310
|
type: "video";
|
|
2252
2311
|
url: string | null;
|
|
2253
2312
|
parameters: string;
|
|
2313
|
+
saveToSdCard: boolean;
|
|
2254
2314
|
}>, z.ZodObject<{
|
|
2255
2315
|
type: z.ZodLiteral<"images">;
|
|
2256
2316
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -2304,6 +2364,7 @@ export declare const hlsPushSchema: z.ZodObject<{
|
|
|
2304
2364
|
type: "video";
|
|
2305
2365
|
url: string | null;
|
|
2306
2366
|
parameters: string;
|
|
2367
|
+
saveToSdCard: boolean;
|
|
2307
2368
|
} | {
|
|
2308
2369
|
type: "images";
|
|
2309
2370
|
url: string | null;
|
|
@@ -2327,6 +2388,7 @@ export declare const hlsPushSchema: z.ZodObject<{
|
|
|
2327
2388
|
type: "video";
|
|
2328
2389
|
url: string | null;
|
|
2329
2390
|
parameters: string;
|
|
2391
|
+
saveToSdCard: boolean;
|
|
2330
2392
|
} | {
|
|
2331
2393
|
type: "images";
|
|
2332
2394
|
url: string | null;
|
|
@@ -2447,6 +2509,7 @@ export declare const hlsPushSchema: z.ZodObject<{
|
|
|
2447
2509
|
type: "video";
|
|
2448
2510
|
url: string | null;
|
|
2449
2511
|
parameters: string;
|
|
2512
|
+
saveToSdCard: boolean;
|
|
2450
2513
|
} | {
|
|
2451
2514
|
type: "images";
|
|
2452
2515
|
url: string | null;
|
|
@@ -2522,6 +2585,7 @@ export declare const hlsPushSchema: z.ZodObject<{
|
|
|
2522
2585
|
type: "video";
|
|
2523
2586
|
url: string | null;
|
|
2524
2587
|
parameters: string;
|
|
2588
|
+
saveToSdCard: boolean;
|
|
2525
2589
|
} | {
|
|
2526
2590
|
type: "images";
|
|
2527
2591
|
url: string | null;
|
|
@@ -2670,14 +2734,17 @@ export declare const ibmSchema: z.ZodObject<{
|
|
|
2670
2734
|
type: z.ZodLiteral<"video">;
|
|
2671
2735
|
url: z.ZodNullable<z.ZodString>;
|
|
2672
2736
|
parameters: z.ZodString;
|
|
2737
|
+
saveToSdCard: z.ZodBoolean;
|
|
2673
2738
|
}, "strip", z.ZodTypeAny, {
|
|
2674
2739
|
type: "video";
|
|
2675
2740
|
url: string | null;
|
|
2676
2741
|
parameters: string;
|
|
2742
|
+
saveToSdCard: boolean;
|
|
2677
2743
|
}, {
|
|
2678
2744
|
type: "video";
|
|
2679
2745
|
url: string | null;
|
|
2680
2746
|
parameters: string;
|
|
2747
|
+
saveToSdCard: boolean;
|
|
2681
2748
|
}>, z.ZodObject<{
|
|
2682
2749
|
type: z.ZodLiteral<"images">;
|
|
2683
2750
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -2731,6 +2798,7 @@ export declare const ibmSchema: z.ZodObject<{
|
|
|
2731
2798
|
type: "video";
|
|
2732
2799
|
url: string | null;
|
|
2733
2800
|
parameters: string;
|
|
2801
|
+
saveToSdCard: boolean;
|
|
2734
2802
|
} | {
|
|
2735
2803
|
type: "images";
|
|
2736
2804
|
url: string | null;
|
|
@@ -2754,6 +2822,7 @@ export declare const ibmSchema: z.ZodObject<{
|
|
|
2754
2822
|
type: "video";
|
|
2755
2823
|
url: string | null;
|
|
2756
2824
|
parameters: string;
|
|
2825
|
+
saveToSdCard: boolean;
|
|
2757
2826
|
} | {
|
|
2758
2827
|
type: "images";
|
|
2759
2828
|
url: string | null;
|
|
@@ -2874,6 +2943,7 @@ export declare const ibmSchema: z.ZodObject<{
|
|
|
2874
2943
|
type: "video";
|
|
2875
2944
|
url: string | null;
|
|
2876
2945
|
parameters: string;
|
|
2946
|
+
saveToSdCard: boolean;
|
|
2877
2947
|
} | {
|
|
2878
2948
|
type: "images";
|
|
2879
2949
|
url: string | null;
|
|
@@ -2949,6 +3019,7 @@ export declare const ibmSchema: z.ZodObject<{
|
|
|
2949
3019
|
type: "video";
|
|
2950
3020
|
url: string | null;
|
|
2951
3021
|
parameters: string;
|
|
3022
|
+
saveToSdCard: boolean;
|
|
2952
3023
|
} | {
|
|
2953
3024
|
type: "images";
|
|
2954
3025
|
url: string | null;
|
|
@@ -3097,14 +3168,17 @@ export declare const mpegDvbSchema: z.ZodObject<{
|
|
|
3097
3168
|
type: z.ZodLiteral<"video">;
|
|
3098
3169
|
url: z.ZodNullable<z.ZodString>;
|
|
3099
3170
|
parameters: z.ZodString;
|
|
3171
|
+
saveToSdCard: z.ZodBoolean;
|
|
3100
3172
|
}, "strip", z.ZodTypeAny, {
|
|
3101
3173
|
type: "video";
|
|
3102
3174
|
url: string | null;
|
|
3103
3175
|
parameters: string;
|
|
3176
|
+
saveToSdCard: boolean;
|
|
3104
3177
|
}, {
|
|
3105
3178
|
type: "video";
|
|
3106
3179
|
url: string | null;
|
|
3107
3180
|
parameters: string;
|
|
3181
|
+
saveToSdCard: boolean;
|
|
3108
3182
|
}>, z.ZodObject<{
|
|
3109
3183
|
type: z.ZodLiteral<"images">;
|
|
3110
3184
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -3158,6 +3232,7 @@ export declare const mpegDvbSchema: z.ZodObject<{
|
|
|
3158
3232
|
type: "video";
|
|
3159
3233
|
url: string | null;
|
|
3160
3234
|
parameters: string;
|
|
3235
|
+
saveToSdCard: boolean;
|
|
3161
3236
|
} | {
|
|
3162
3237
|
type: "images";
|
|
3163
3238
|
url: string | null;
|
|
@@ -3181,6 +3256,7 @@ export declare const mpegDvbSchema: z.ZodObject<{
|
|
|
3181
3256
|
type: "video";
|
|
3182
3257
|
url: string | null;
|
|
3183
3258
|
parameters: string;
|
|
3259
|
+
saveToSdCard: boolean;
|
|
3184
3260
|
} | {
|
|
3185
3261
|
type: "images";
|
|
3186
3262
|
url: string | null;
|
|
@@ -3301,6 +3377,7 @@ export declare const mpegDvbSchema: z.ZodObject<{
|
|
|
3301
3377
|
type: "video";
|
|
3302
3378
|
url: string | null;
|
|
3303
3379
|
parameters: string;
|
|
3380
|
+
saveToSdCard: boolean;
|
|
3304
3381
|
} | {
|
|
3305
3382
|
type: "images";
|
|
3306
3383
|
url: string | null;
|
|
@@ -3376,6 +3453,7 @@ export declare const mpegDvbSchema: z.ZodObject<{
|
|
|
3376
3453
|
type: "video";
|
|
3377
3454
|
url: string | null;
|
|
3378
3455
|
parameters: string;
|
|
3456
|
+
saveToSdCard: boolean;
|
|
3379
3457
|
} | {
|
|
3380
3458
|
type: "images";
|
|
3381
3459
|
url: string | null;
|
|
@@ -3524,14 +3602,17 @@ export declare const microsoftAzureSchema: z.ZodObject<{
|
|
|
3524
3602
|
type: z.ZodLiteral<"video">;
|
|
3525
3603
|
url: z.ZodNullable<z.ZodString>;
|
|
3526
3604
|
parameters: z.ZodString;
|
|
3605
|
+
saveToSdCard: z.ZodBoolean;
|
|
3527
3606
|
}, "strip", z.ZodTypeAny, {
|
|
3528
3607
|
type: "video";
|
|
3529
3608
|
url: string | null;
|
|
3530
3609
|
parameters: string;
|
|
3610
|
+
saveToSdCard: boolean;
|
|
3531
3611
|
}, {
|
|
3532
3612
|
type: "video";
|
|
3533
3613
|
url: string | null;
|
|
3534
3614
|
parameters: string;
|
|
3615
|
+
saveToSdCard: boolean;
|
|
3535
3616
|
}>, z.ZodObject<{
|
|
3536
3617
|
type: z.ZodLiteral<"images">;
|
|
3537
3618
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -3585,6 +3666,7 @@ export declare const microsoftAzureSchema: z.ZodObject<{
|
|
|
3585
3666
|
type: "video";
|
|
3586
3667
|
url: string | null;
|
|
3587
3668
|
parameters: string;
|
|
3669
|
+
saveToSdCard: boolean;
|
|
3588
3670
|
} | {
|
|
3589
3671
|
type: "images";
|
|
3590
3672
|
url: string | null;
|
|
@@ -3608,6 +3690,7 @@ export declare const microsoftAzureSchema: z.ZodObject<{
|
|
|
3608
3690
|
type: "video";
|
|
3609
3691
|
url: string | null;
|
|
3610
3692
|
parameters: string;
|
|
3693
|
+
saveToSdCard: boolean;
|
|
3611
3694
|
} | {
|
|
3612
3695
|
type: "images";
|
|
3613
3696
|
url: string | null;
|
|
@@ -3728,6 +3811,7 @@ export declare const microsoftAzureSchema: z.ZodObject<{
|
|
|
3728
3811
|
type: "video";
|
|
3729
3812
|
url: string | null;
|
|
3730
3813
|
parameters: string;
|
|
3814
|
+
saveToSdCard: boolean;
|
|
3731
3815
|
} | {
|
|
3732
3816
|
type: "images";
|
|
3733
3817
|
url: string | null;
|
|
@@ -3803,6 +3887,7 @@ export declare const microsoftAzureSchema: z.ZodObject<{
|
|
|
3803
3887
|
type: "video";
|
|
3804
3888
|
url: string | null;
|
|
3805
3889
|
parameters: string;
|
|
3890
|
+
saveToSdCard: boolean;
|
|
3806
3891
|
} | {
|
|
3807
3892
|
type: "images";
|
|
3808
3893
|
url: string | null;
|
|
@@ -3951,14 +4036,17 @@ export declare const microsoftStreamSchema: z.ZodObject<{
|
|
|
3951
4036
|
type: z.ZodLiteral<"video">;
|
|
3952
4037
|
url: z.ZodNullable<z.ZodString>;
|
|
3953
4038
|
parameters: z.ZodString;
|
|
4039
|
+
saveToSdCard: z.ZodBoolean;
|
|
3954
4040
|
}, "strip", z.ZodTypeAny, {
|
|
3955
4041
|
type: "video";
|
|
3956
4042
|
url: string | null;
|
|
3957
4043
|
parameters: string;
|
|
4044
|
+
saveToSdCard: boolean;
|
|
3958
4045
|
}, {
|
|
3959
4046
|
type: "video";
|
|
3960
4047
|
url: string | null;
|
|
3961
4048
|
parameters: string;
|
|
4049
|
+
saveToSdCard: boolean;
|
|
3962
4050
|
}>, z.ZodObject<{
|
|
3963
4051
|
type: z.ZodLiteral<"images">;
|
|
3964
4052
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -4012,6 +4100,7 @@ export declare const microsoftStreamSchema: z.ZodObject<{
|
|
|
4012
4100
|
type: "video";
|
|
4013
4101
|
url: string | null;
|
|
4014
4102
|
parameters: string;
|
|
4103
|
+
saveToSdCard: boolean;
|
|
4015
4104
|
} | {
|
|
4016
4105
|
type: "images";
|
|
4017
4106
|
url: string | null;
|
|
@@ -4035,6 +4124,7 @@ export declare const microsoftStreamSchema: z.ZodObject<{
|
|
|
4035
4124
|
type: "video";
|
|
4036
4125
|
url: string | null;
|
|
4037
4126
|
parameters: string;
|
|
4127
|
+
saveToSdCard: boolean;
|
|
4038
4128
|
} | {
|
|
4039
4129
|
type: "images";
|
|
4040
4130
|
url: string | null;
|
|
@@ -4155,6 +4245,7 @@ export declare const microsoftStreamSchema: z.ZodObject<{
|
|
|
4155
4245
|
type: "video";
|
|
4156
4246
|
url: string | null;
|
|
4157
4247
|
parameters: string;
|
|
4248
|
+
saveToSdCard: boolean;
|
|
4158
4249
|
} | {
|
|
4159
4250
|
type: "images";
|
|
4160
4251
|
url: string | null;
|
|
@@ -4230,6 +4321,7 @@ export declare const microsoftStreamSchema: z.ZodObject<{
|
|
|
4230
4321
|
type: "video";
|
|
4231
4322
|
url: string | null;
|
|
4232
4323
|
parameters: string;
|
|
4324
|
+
saveToSdCard: boolean;
|
|
4233
4325
|
} | {
|
|
4234
4326
|
type: "images";
|
|
4235
4327
|
url: string | null;
|
|
@@ -4378,14 +4470,17 @@ export declare const rtmpSchema: z.ZodObject<{
|
|
|
4378
4470
|
type: z.ZodLiteral<"video">;
|
|
4379
4471
|
url: z.ZodNullable<z.ZodString>;
|
|
4380
4472
|
parameters: z.ZodString;
|
|
4473
|
+
saveToSdCard: z.ZodBoolean;
|
|
4381
4474
|
}, "strip", z.ZodTypeAny, {
|
|
4382
4475
|
type: "video";
|
|
4383
4476
|
url: string | null;
|
|
4384
4477
|
parameters: string;
|
|
4478
|
+
saveToSdCard: boolean;
|
|
4385
4479
|
}, {
|
|
4386
4480
|
type: "video";
|
|
4387
4481
|
url: string | null;
|
|
4388
4482
|
parameters: string;
|
|
4483
|
+
saveToSdCard: boolean;
|
|
4389
4484
|
}>, z.ZodObject<{
|
|
4390
4485
|
type: z.ZodLiteral<"images">;
|
|
4391
4486
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -4439,6 +4534,7 @@ export declare const rtmpSchema: z.ZodObject<{
|
|
|
4439
4534
|
type: "video";
|
|
4440
4535
|
url: string | null;
|
|
4441
4536
|
parameters: string;
|
|
4537
|
+
saveToSdCard: boolean;
|
|
4442
4538
|
} | {
|
|
4443
4539
|
type: "images";
|
|
4444
4540
|
url: string | null;
|
|
@@ -4462,6 +4558,7 @@ export declare const rtmpSchema: z.ZodObject<{
|
|
|
4462
4558
|
type: "video";
|
|
4463
4559
|
url: string | null;
|
|
4464
4560
|
parameters: string;
|
|
4561
|
+
saveToSdCard: boolean;
|
|
4465
4562
|
} | {
|
|
4466
4563
|
type: "images";
|
|
4467
4564
|
url: string | null;
|
|
@@ -4582,6 +4679,7 @@ export declare const rtmpSchema: z.ZodObject<{
|
|
|
4582
4679
|
type: "video";
|
|
4583
4680
|
url: string | null;
|
|
4584
4681
|
parameters: string;
|
|
4682
|
+
saveToSdCard: boolean;
|
|
4585
4683
|
} | {
|
|
4586
4684
|
type: "images";
|
|
4587
4685
|
url: string | null;
|
|
@@ -4657,6 +4755,7 @@ export declare const rtmpSchema: z.ZodObject<{
|
|
|
4657
4755
|
type: "video";
|
|
4658
4756
|
url: string | null;
|
|
4659
4757
|
parameters: string;
|
|
4758
|
+
saveToSdCard: boolean;
|
|
4660
4759
|
} | {
|
|
4661
4760
|
type: "images";
|
|
4662
4761
|
url: string | null;
|
|
@@ -4805,14 +4904,17 @@ export declare const sdCardSchema: z.ZodObject<{
|
|
|
4805
4904
|
type: z.ZodLiteral<"video">;
|
|
4806
4905
|
url: z.ZodNullable<z.ZodString>;
|
|
4807
4906
|
parameters: z.ZodString;
|
|
4907
|
+
saveToSdCard: z.ZodBoolean;
|
|
4808
4908
|
}, "strip", z.ZodTypeAny, {
|
|
4809
4909
|
type: "video";
|
|
4810
4910
|
url: string | null;
|
|
4811
4911
|
parameters: string;
|
|
4912
|
+
saveToSdCard: boolean;
|
|
4812
4913
|
}, {
|
|
4813
4914
|
type: "video";
|
|
4814
4915
|
url: string | null;
|
|
4815
4916
|
parameters: string;
|
|
4917
|
+
saveToSdCard: boolean;
|
|
4816
4918
|
}>, z.ZodObject<{
|
|
4817
4919
|
type: z.ZodLiteral<"images">;
|
|
4818
4920
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -4866,6 +4968,7 @@ export declare const sdCardSchema: z.ZodObject<{
|
|
|
4866
4968
|
type: "video";
|
|
4867
4969
|
url: string | null;
|
|
4868
4970
|
parameters: string;
|
|
4971
|
+
saveToSdCard: boolean;
|
|
4869
4972
|
} | {
|
|
4870
4973
|
type: "images";
|
|
4871
4974
|
url: string | null;
|
|
@@ -4889,6 +4992,7 @@ export declare const sdCardSchema: z.ZodObject<{
|
|
|
4889
4992
|
type: "video";
|
|
4890
4993
|
url: string | null;
|
|
4891
4994
|
parameters: string;
|
|
4995
|
+
saveToSdCard: boolean;
|
|
4892
4996
|
} | {
|
|
4893
4997
|
type: "images";
|
|
4894
4998
|
url: string | null;
|
|
@@ -5009,6 +5113,7 @@ export declare const sdCardSchema: z.ZodObject<{
|
|
|
5009
5113
|
type: "video";
|
|
5010
5114
|
url: string | null;
|
|
5011
5115
|
parameters: string;
|
|
5116
|
+
saveToSdCard: boolean;
|
|
5012
5117
|
} | {
|
|
5013
5118
|
type: "images";
|
|
5014
5119
|
url: string | null;
|
|
@@ -5084,6 +5189,7 @@ export declare const sdCardSchema: z.ZodObject<{
|
|
|
5084
5189
|
type: "video";
|
|
5085
5190
|
url: string | null;
|
|
5086
5191
|
parameters: string;
|
|
5192
|
+
saveToSdCard: boolean;
|
|
5087
5193
|
} | {
|
|
5088
5194
|
type: "images";
|
|
5089
5195
|
url: string | null;
|
|
@@ -5232,14 +5338,17 @@ export declare const srtSchema: z.ZodObject<{
|
|
|
5232
5338
|
type: z.ZodLiteral<"video">;
|
|
5233
5339
|
url: z.ZodNullable<z.ZodString>;
|
|
5234
5340
|
parameters: z.ZodString;
|
|
5341
|
+
saveToSdCard: z.ZodBoolean;
|
|
5235
5342
|
}, "strip", z.ZodTypeAny, {
|
|
5236
5343
|
type: "video";
|
|
5237
5344
|
url: string | null;
|
|
5238
5345
|
parameters: string;
|
|
5346
|
+
saveToSdCard: boolean;
|
|
5239
5347
|
}, {
|
|
5240
5348
|
type: "video";
|
|
5241
5349
|
url: string | null;
|
|
5242
5350
|
parameters: string;
|
|
5351
|
+
saveToSdCard: boolean;
|
|
5243
5352
|
}>, z.ZodObject<{
|
|
5244
5353
|
type: z.ZodLiteral<"images">;
|
|
5245
5354
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -5293,6 +5402,7 @@ export declare const srtSchema: z.ZodObject<{
|
|
|
5293
5402
|
type: "video";
|
|
5294
5403
|
url: string | null;
|
|
5295
5404
|
parameters: string;
|
|
5405
|
+
saveToSdCard: boolean;
|
|
5296
5406
|
} | {
|
|
5297
5407
|
type: "images";
|
|
5298
5408
|
url: string | null;
|
|
@@ -5316,6 +5426,7 @@ export declare const srtSchema: z.ZodObject<{
|
|
|
5316
5426
|
type: "video";
|
|
5317
5427
|
url: string | null;
|
|
5318
5428
|
parameters: string;
|
|
5429
|
+
saveToSdCard: boolean;
|
|
5319
5430
|
} | {
|
|
5320
5431
|
type: "images";
|
|
5321
5432
|
url: string | null;
|
|
@@ -5436,6 +5547,7 @@ export declare const srtSchema: z.ZodObject<{
|
|
|
5436
5547
|
type: "video";
|
|
5437
5548
|
url: string | null;
|
|
5438
5549
|
parameters: string;
|
|
5550
|
+
saveToSdCard: boolean;
|
|
5439
5551
|
} | {
|
|
5440
5552
|
type: "images";
|
|
5441
5553
|
url: string | null;
|
|
@@ -5511,6 +5623,7 @@ export declare const srtSchema: z.ZodObject<{
|
|
|
5511
5623
|
type: "video";
|
|
5512
5624
|
url: string | null;
|
|
5513
5625
|
parameters: string;
|
|
5626
|
+
saveToSdCard: boolean;
|
|
5514
5627
|
} | {
|
|
5515
5628
|
type: "images";
|
|
5516
5629
|
url: string | null;
|
|
@@ -5659,14 +5772,17 @@ export declare const twitchSchema: z.ZodObject<{
|
|
|
5659
5772
|
type: z.ZodLiteral<"video">;
|
|
5660
5773
|
url: z.ZodNullable<z.ZodString>;
|
|
5661
5774
|
parameters: z.ZodString;
|
|
5775
|
+
saveToSdCard: z.ZodBoolean;
|
|
5662
5776
|
}, "strip", z.ZodTypeAny, {
|
|
5663
5777
|
type: "video";
|
|
5664
5778
|
url: string | null;
|
|
5665
5779
|
parameters: string;
|
|
5780
|
+
saveToSdCard: boolean;
|
|
5666
5781
|
}, {
|
|
5667
5782
|
type: "video";
|
|
5668
5783
|
url: string | null;
|
|
5669
5784
|
parameters: string;
|
|
5785
|
+
saveToSdCard: boolean;
|
|
5670
5786
|
}>, z.ZodObject<{
|
|
5671
5787
|
type: z.ZodLiteral<"images">;
|
|
5672
5788
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -5720,6 +5836,7 @@ export declare const twitchSchema: z.ZodObject<{
|
|
|
5720
5836
|
type: "video";
|
|
5721
5837
|
url: string | null;
|
|
5722
5838
|
parameters: string;
|
|
5839
|
+
saveToSdCard: boolean;
|
|
5723
5840
|
} | {
|
|
5724
5841
|
type: "images";
|
|
5725
5842
|
url: string | null;
|
|
@@ -5743,6 +5860,7 @@ export declare const twitchSchema: z.ZodObject<{
|
|
|
5743
5860
|
type: "video";
|
|
5744
5861
|
url: string | null;
|
|
5745
5862
|
parameters: string;
|
|
5863
|
+
saveToSdCard: boolean;
|
|
5746
5864
|
} | {
|
|
5747
5865
|
type: "images";
|
|
5748
5866
|
url: string | null;
|
|
@@ -5863,6 +5981,7 @@ export declare const twitchSchema: z.ZodObject<{
|
|
|
5863
5981
|
type: "video";
|
|
5864
5982
|
url: string | null;
|
|
5865
5983
|
parameters: string;
|
|
5984
|
+
saveToSdCard: boolean;
|
|
5866
5985
|
} | {
|
|
5867
5986
|
type: "images";
|
|
5868
5987
|
url: string | null;
|
|
@@ -5938,6 +6057,7 @@ export declare const twitchSchema: z.ZodObject<{
|
|
|
5938
6057
|
type: "video";
|
|
5939
6058
|
url: string | null;
|
|
5940
6059
|
parameters: string;
|
|
6060
|
+
saveToSdCard: boolean;
|
|
5941
6061
|
} | {
|
|
5942
6062
|
type: "images";
|
|
5943
6063
|
url: string | null;
|
|
@@ -6086,14 +6206,17 @@ export declare const vimeoSchema: z.ZodObject<{
|
|
|
6086
6206
|
type: z.ZodLiteral<"video">;
|
|
6087
6207
|
url: z.ZodNullable<z.ZodString>;
|
|
6088
6208
|
parameters: z.ZodString;
|
|
6209
|
+
saveToSdCard: z.ZodBoolean;
|
|
6089
6210
|
}, "strip", z.ZodTypeAny, {
|
|
6090
6211
|
type: "video";
|
|
6091
6212
|
url: string | null;
|
|
6092
6213
|
parameters: string;
|
|
6214
|
+
saveToSdCard: boolean;
|
|
6093
6215
|
}, {
|
|
6094
6216
|
type: "video";
|
|
6095
6217
|
url: string | null;
|
|
6096
6218
|
parameters: string;
|
|
6219
|
+
saveToSdCard: boolean;
|
|
6097
6220
|
}>, z.ZodObject<{
|
|
6098
6221
|
type: z.ZodLiteral<"images">;
|
|
6099
6222
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -6147,6 +6270,7 @@ export declare const vimeoSchema: z.ZodObject<{
|
|
|
6147
6270
|
type: "video";
|
|
6148
6271
|
url: string | null;
|
|
6149
6272
|
parameters: string;
|
|
6273
|
+
saveToSdCard: boolean;
|
|
6150
6274
|
} | {
|
|
6151
6275
|
type: "images";
|
|
6152
6276
|
url: string | null;
|
|
@@ -6170,6 +6294,7 @@ export declare const vimeoSchema: z.ZodObject<{
|
|
|
6170
6294
|
type: "video";
|
|
6171
6295
|
url: string | null;
|
|
6172
6296
|
parameters: string;
|
|
6297
|
+
saveToSdCard: boolean;
|
|
6173
6298
|
} | {
|
|
6174
6299
|
type: "images";
|
|
6175
6300
|
url: string | null;
|
|
@@ -6290,6 +6415,7 @@ export declare const vimeoSchema: z.ZodObject<{
|
|
|
6290
6415
|
type: "video";
|
|
6291
6416
|
url: string | null;
|
|
6292
6417
|
parameters: string;
|
|
6418
|
+
saveToSdCard: boolean;
|
|
6293
6419
|
} | {
|
|
6294
6420
|
type: "images";
|
|
6295
6421
|
url: string | null;
|
|
@@ -6365,6 +6491,7 @@ export declare const vimeoSchema: z.ZodObject<{
|
|
|
6365
6491
|
type: "video";
|
|
6366
6492
|
url: string | null;
|
|
6367
6493
|
parameters: string;
|
|
6494
|
+
saveToSdCard: boolean;
|
|
6368
6495
|
} | {
|
|
6369
6496
|
type: "images";
|
|
6370
6497
|
url: string | null;
|
|
@@ -6513,14 +6640,17 @@ export declare const wowzaSchema: z.ZodObject<{
|
|
|
6513
6640
|
type: z.ZodLiteral<"video">;
|
|
6514
6641
|
url: z.ZodNullable<z.ZodString>;
|
|
6515
6642
|
parameters: z.ZodString;
|
|
6643
|
+
saveToSdCard: z.ZodBoolean;
|
|
6516
6644
|
}, "strip", z.ZodTypeAny, {
|
|
6517
6645
|
type: "video";
|
|
6518
6646
|
url: string | null;
|
|
6519
6647
|
parameters: string;
|
|
6648
|
+
saveToSdCard: boolean;
|
|
6520
6649
|
}, {
|
|
6521
6650
|
type: "video";
|
|
6522
6651
|
url: string | null;
|
|
6523
6652
|
parameters: string;
|
|
6653
|
+
saveToSdCard: boolean;
|
|
6524
6654
|
}>, z.ZodObject<{
|
|
6525
6655
|
type: z.ZodLiteral<"images">;
|
|
6526
6656
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -6574,6 +6704,7 @@ export declare const wowzaSchema: z.ZodObject<{
|
|
|
6574
6704
|
type: "video";
|
|
6575
6705
|
url: string | null;
|
|
6576
6706
|
parameters: string;
|
|
6707
|
+
saveToSdCard: boolean;
|
|
6577
6708
|
} | {
|
|
6578
6709
|
type: "images";
|
|
6579
6710
|
url: string | null;
|
|
@@ -6597,6 +6728,7 @@ export declare const wowzaSchema: z.ZodObject<{
|
|
|
6597
6728
|
type: "video";
|
|
6598
6729
|
url: string | null;
|
|
6599
6730
|
parameters: string;
|
|
6731
|
+
saveToSdCard: boolean;
|
|
6600
6732
|
} | {
|
|
6601
6733
|
type: "images";
|
|
6602
6734
|
url: string | null;
|
|
@@ -6717,6 +6849,7 @@ export declare const wowzaSchema: z.ZodObject<{
|
|
|
6717
6849
|
type: "video";
|
|
6718
6850
|
url: string | null;
|
|
6719
6851
|
parameters: string;
|
|
6852
|
+
saveToSdCard: boolean;
|
|
6720
6853
|
} | {
|
|
6721
6854
|
type: "images";
|
|
6722
6855
|
url: string | null;
|
|
@@ -6792,6 +6925,7 @@ export declare const wowzaSchema: z.ZodObject<{
|
|
|
6792
6925
|
type: "video";
|
|
6793
6926
|
url: string | null;
|
|
6794
6927
|
parameters: string;
|
|
6928
|
+
saveToSdCard: boolean;
|
|
6795
6929
|
} | {
|
|
6796
6930
|
type: "images";
|
|
6797
6931
|
url: string | null;
|
|
@@ -6940,14 +7074,17 @@ export declare const youtubeRtmpSchema: z.ZodObject<{
|
|
|
6940
7074
|
type: z.ZodLiteral<"video">;
|
|
6941
7075
|
url: z.ZodNullable<z.ZodString>;
|
|
6942
7076
|
parameters: z.ZodString;
|
|
7077
|
+
saveToSdCard: z.ZodBoolean;
|
|
6943
7078
|
}, "strip", z.ZodTypeAny, {
|
|
6944
7079
|
type: "video";
|
|
6945
7080
|
url: string | null;
|
|
6946
7081
|
parameters: string;
|
|
7082
|
+
saveToSdCard: boolean;
|
|
6947
7083
|
}, {
|
|
6948
7084
|
type: "video";
|
|
6949
7085
|
url: string | null;
|
|
6950
7086
|
parameters: string;
|
|
7087
|
+
saveToSdCard: boolean;
|
|
6951
7088
|
}>, z.ZodObject<{
|
|
6952
7089
|
type: z.ZodLiteral<"images">;
|
|
6953
7090
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -7001,6 +7138,7 @@ export declare const youtubeRtmpSchema: z.ZodObject<{
|
|
|
7001
7138
|
type: "video";
|
|
7002
7139
|
url: string | null;
|
|
7003
7140
|
parameters: string;
|
|
7141
|
+
saveToSdCard: boolean;
|
|
7004
7142
|
} | {
|
|
7005
7143
|
type: "images";
|
|
7006
7144
|
url: string | null;
|
|
@@ -7024,6 +7162,7 @@ export declare const youtubeRtmpSchema: z.ZodObject<{
|
|
|
7024
7162
|
type: "video";
|
|
7025
7163
|
url: string | null;
|
|
7026
7164
|
parameters: string;
|
|
7165
|
+
saveToSdCard: boolean;
|
|
7027
7166
|
} | {
|
|
7028
7167
|
type: "images";
|
|
7029
7168
|
url: string | null;
|
|
@@ -7144,6 +7283,7 @@ export declare const youtubeRtmpSchema: z.ZodObject<{
|
|
|
7144
7283
|
type: "video";
|
|
7145
7284
|
url: string | null;
|
|
7146
7285
|
parameters: string;
|
|
7286
|
+
saveToSdCard: boolean;
|
|
7147
7287
|
} | {
|
|
7148
7288
|
type: "images";
|
|
7149
7289
|
url: string | null;
|
|
@@ -7219,6 +7359,7 @@ export declare const youtubeRtmpSchema: z.ZodObject<{
|
|
|
7219
7359
|
type: "video";
|
|
7220
7360
|
url: string | null;
|
|
7221
7361
|
parameters: string;
|
|
7362
|
+
saveToSdCard: boolean;
|
|
7222
7363
|
} | {
|
|
7223
7364
|
type: "images";
|
|
7224
7365
|
url: string | null;
|