node-av 2.0.0 → 2.1.0
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/README.md +10 -2
- package/binding.gyp +12 -0
- package/dist/api/bitstream-filter.d.ts +132 -0
- package/dist/api/bitstream-filter.js +198 -0
- package/dist/api/bitstream-filter.js.map +1 -1
- package/dist/api/decoder.d.ts +145 -0
- package/dist/api/decoder.js +225 -0
- package/dist/api/decoder.js.map +1 -1
- package/dist/api/encoder.d.ts +206 -0
- package/dist/api/encoder.js +315 -0
- package/dist/api/encoder.js.map +1 -1
- package/dist/api/filter-presets.d.ts +92 -0
- package/dist/api/filter-presets.js +92 -0
- package/dist/api/filter-presets.js.map +1 -1
- package/dist/api/filter.d.ts +225 -0
- package/dist/api/filter.js +363 -0
- package/dist/api/filter.js.map +1 -1
- package/dist/api/hardware.d.ts +17 -0
- package/dist/api/hardware.js +17 -0
- package/dist/api/hardware.js.map +1 -1
- package/dist/api/io-stream.d.ts +6 -0
- package/dist/api/io-stream.js +2 -0
- package/dist/api/io-stream.js.map +1 -1
- package/dist/api/media-input.d.ts +207 -1
- package/dist/api/media-input.js +353 -0
- package/dist/api/media-input.js.map +1 -1
- package/dist/api/media-output.d.ts +132 -1
- package/dist/api/media-output.js +339 -0
- package/dist/api/media-output.js.map +1 -1
- package/dist/api/pipeline.d.ts +65 -0
- package/dist/api/pipeline.js +61 -0
- package/dist/api/pipeline.js.map +1 -1
- package/dist/api/types.d.ts +7 -0
- package/dist/api/utils.js +2 -0
- package/dist/api/utils.js.map +1 -1
- package/dist/lib/audio-fifo.d.ts +103 -0
- package/dist/lib/audio-fifo.js +109 -0
- package/dist/lib/audio-fifo.js.map +1 -1
- package/dist/lib/binding.d.ts +1 -0
- package/dist/lib/binding.js.map +1 -1
- package/dist/lib/bitstream-filter-context.d.ts +79 -0
- package/dist/lib/bitstream-filter-context.js +83 -0
- package/dist/lib/bitstream-filter-context.js.map +1 -1
- package/dist/lib/bitstream-filter.d.ts +2 -0
- package/dist/lib/bitstream-filter.js +2 -0
- package/dist/lib/bitstream-filter.js.map +1 -1
- package/dist/lib/codec-context.d.ts +168 -0
- package/dist/lib/codec-context.js +178 -0
- package/dist/lib/codec-context.js.map +1 -1
- package/dist/lib/codec-parameters.d.ts +3 -0
- package/dist/lib/codec-parameters.js +3 -0
- package/dist/lib/codec-parameters.js.map +1 -1
- package/dist/lib/codec-parser.d.ts +6 -0
- package/dist/lib/codec-parser.js +6 -0
- package/dist/lib/codec-parser.js.map +1 -1
- package/dist/lib/codec.d.ts +12 -0
- package/dist/lib/codec.js +12 -0
- package/dist/lib/codec.js.map +1 -1
- package/dist/lib/dictionary.d.ts +16 -0
- package/dist/lib/dictionary.js +16 -0
- package/dist/lib/dictionary.js.map +1 -1
- package/dist/lib/error.d.ts +8 -0
- package/dist/lib/error.js +9 -0
- package/dist/lib/error.js.map +1 -1
- package/dist/lib/filter-context.d.ts +100 -0
- package/dist/lib/filter-context.js +104 -0
- package/dist/lib/filter-context.js.map +1 -1
- package/dist/lib/filter-graph.d.ts +80 -0
- package/dist/lib/filter-graph.js +84 -0
- package/dist/lib/filter-graph.js.map +1 -1
- package/dist/lib/filter-inout.d.ts +1 -0
- package/dist/lib/filter-inout.js +1 -0
- package/dist/lib/filter-inout.js.map +1 -1
- package/dist/lib/filter.d.ts +2 -0
- package/dist/lib/filter.js +2 -0
- package/dist/lib/filter.js.map +1 -1
- package/dist/lib/format-context.d.ts +338 -2
- package/dist/lib/format-context.js +355 -3
- package/dist/lib/format-context.js.map +1 -1
- package/dist/lib/frame.d.ts +41 -0
- package/dist/lib/frame.js +43 -0
- package/dist/lib/frame.js.map +1 -1
- package/dist/lib/hardware-device-context.d.ts +8 -0
- package/dist/lib/hardware-device-context.js +8 -0
- package/dist/lib/hardware-device-context.js.map +1 -1
- package/dist/lib/hardware-frames-context.d.ts +55 -0
- package/dist/lib/hardware-frames-context.js +57 -0
- package/dist/lib/hardware-frames-context.js.map +1 -1
- package/dist/lib/input-format.d.ts +43 -3
- package/dist/lib/input-format.js +48 -0
- package/dist/lib/input-format.js.map +1 -1
- package/dist/lib/io-context.d.ts +212 -0
- package/dist/lib/io-context.js +228 -0
- package/dist/lib/io-context.js.map +1 -1
- package/dist/lib/log.d.ts +2 -0
- package/dist/lib/log.js +2 -0
- package/dist/lib/log.js.map +1 -1
- package/dist/lib/native-types.d.ts +39 -1
- package/dist/lib/option.d.ts +90 -0
- package/dist/lib/option.js +97 -0
- package/dist/lib/option.js.map +1 -1
- package/dist/lib/output-format.d.ts +4 -0
- package/dist/lib/output-format.js +4 -0
- package/dist/lib/output-format.js.map +1 -1
- package/dist/lib/packet.d.ts +7 -0
- package/dist/lib/packet.js +7 -0
- package/dist/lib/packet.js.map +1 -1
- package/dist/lib/rational.d.ts +1 -0
- package/dist/lib/rational.js +1 -0
- package/dist/lib/rational.js.map +1 -1
- package/dist/lib/software-resample-context.d.ts +64 -0
- package/dist/lib/software-resample-context.js +66 -0
- package/dist/lib/software-resample-context.js.map +1 -1
- package/dist/lib/software-scale-context.d.ts +98 -0
- package/dist/lib/software-scale-context.js +102 -0
- package/dist/lib/software-scale-context.js.map +1 -1
- package/dist/lib/stream.d.ts +1 -0
- package/dist/lib/stream.js +1 -0
- package/dist/lib/stream.js.map +1 -1
- package/dist/lib/utilities.d.ts +60 -0
- package/dist/lib/utilities.js +60 -0
- package/dist/lib/utilities.js.map +1 -1
- package/package.json +13 -13
package/dist/lib/utilities.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ import type { ChannelLayout, IRational } from './types.js';
|
|
|
10
10
|
* Direct mapping to av_get_bytes_per_sample().
|
|
11
11
|
*
|
|
12
12
|
* @param sampleFmt - Audio sample format
|
|
13
|
+
*
|
|
13
14
|
* @returns Number of bytes per sample, or 0 if unknown format
|
|
14
15
|
*
|
|
15
16
|
* @example
|
|
@@ -31,6 +32,7 @@ export declare function avGetBytesPerSample(sampleFmt: AVSampleFormat): number;
|
|
|
31
32
|
* Direct mapping to av_get_sample_fmt_name().
|
|
32
33
|
*
|
|
33
34
|
* @param sampleFmt - Audio sample format
|
|
35
|
+
*
|
|
34
36
|
* @returns Format name, or null if unknown
|
|
35
37
|
*
|
|
36
38
|
* @example
|
|
@@ -53,6 +55,7 @@ export declare function avGetSampleFmtName(sampleFmt: AVSampleFormat): string |
|
|
|
53
55
|
* Direct mapping to av_get_packed_sample_fmt().
|
|
54
56
|
*
|
|
55
57
|
* @param sampleFmt - Audio sample format
|
|
58
|
+
*
|
|
56
59
|
* @returns Packed version of the format
|
|
57
60
|
*
|
|
58
61
|
* @example
|
|
@@ -76,6 +79,7 @@ export declare function avGetPackedSampleFmt(sampleFmt: AVSampleFormat): AVSampl
|
|
|
76
79
|
* Direct mapping to av_get_planar_sample_fmt().
|
|
77
80
|
*
|
|
78
81
|
* @param sampleFmt - Audio sample format
|
|
82
|
+
*
|
|
79
83
|
* @returns Planar version of the format
|
|
80
84
|
*
|
|
81
85
|
* @example
|
|
@@ -99,6 +103,7 @@ export declare function avGetPlanarSampleFmt(sampleFmt: AVSampleFormat): AVSampl
|
|
|
99
103
|
* Direct mapping to av_sample_fmt_is_planar().
|
|
100
104
|
*
|
|
101
105
|
* @param sampleFmt - Audio sample format to check
|
|
106
|
+
*
|
|
102
107
|
* @returns True if planar, false if packed/interleaved
|
|
103
108
|
*
|
|
104
109
|
* @example
|
|
@@ -120,6 +125,7 @@ export declare function avSampleFmtIsPlanar(sampleFmt: AVSampleFormat): boolean;
|
|
|
120
125
|
* Direct mapping to avcodec_get_name().
|
|
121
126
|
*
|
|
122
127
|
* @param codecId - Codec ID from AVCodecID enum
|
|
128
|
+
*
|
|
123
129
|
* @returns Codec name string or null
|
|
124
130
|
*
|
|
125
131
|
* @example
|
|
@@ -143,6 +149,7 @@ export declare function avGetCodecName(codecId: AVCodecID): string | null;
|
|
|
143
149
|
* Direct mapping to av_get_pix_fmt_name().
|
|
144
150
|
*
|
|
145
151
|
* @param pixFmt - Pixel format
|
|
152
|
+
*
|
|
146
153
|
* @returns Format name, or null if unknown
|
|
147
154
|
*
|
|
148
155
|
* @example
|
|
@@ -164,6 +171,7 @@ export declare function avGetPixFmtName(pixFmt: AVPixelFormat): string | null;
|
|
|
164
171
|
* Direct mapping to av_get_pix_fmt().
|
|
165
172
|
*
|
|
166
173
|
* @param name - Pixel format name
|
|
174
|
+
*
|
|
167
175
|
* @returns Pixel format enum, or AV_PIX_FMT_NONE if unknown
|
|
168
176
|
*
|
|
169
177
|
* @example
|
|
@@ -185,6 +193,7 @@ export declare function avGetPixFmtFromName(name: string): AVPixelFormat;
|
|
|
185
193
|
* Direct mapping to av_pix_fmt_desc_get() with hwaccel check.
|
|
186
194
|
*
|
|
187
195
|
* @param pixFmt - Pixel format to check
|
|
196
|
+
*
|
|
188
197
|
* @returns True if hardware format, false if software format
|
|
189
198
|
*
|
|
190
199
|
* @example
|
|
@@ -206,6 +215,7 @@ export declare function avIsHardwarePixelFormat(pixFmt: AVPixelFormat): boolean;
|
|
|
206
215
|
* Direct mapping to av_get_media_type_string().
|
|
207
216
|
*
|
|
208
217
|
* @param mediaType - Media type enum
|
|
218
|
+
*
|
|
209
219
|
* @returns Media type name, or null if unknown
|
|
210
220
|
*
|
|
211
221
|
* @example
|
|
@@ -228,9 +238,13 @@ export declare function avGetMediaTypeString(mediaType: AVMediaType): string | n
|
|
|
228
238
|
* Direct mapping to av_image_alloc().
|
|
229
239
|
*
|
|
230
240
|
* @param width - Image width in pixels
|
|
241
|
+
*
|
|
231
242
|
* @param height - Image height in pixels
|
|
243
|
+
*
|
|
232
244
|
* @param pixFmt - Pixel format
|
|
245
|
+
*
|
|
233
246
|
* @param align - Buffer alignment (typically 1 or 32)
|
|
247
|
+
*
|
|
234
248
|
* @returns Object with buffer, size, and line sizes
|
|
235
249
|
*
|
|
236
250
|
* @throws {FFmpegError} If allocation fails
|
|
@@ -262,11 +276,17 @@ export declare function avImageAlloc(width: number, height: number, pixFmt: AVPi
|
|
|
262
276
|
* Direct mapping to av_image_copy2().
|
|
263
277
|
*
|
|
264
278
|
* @param dstData - Destination data planes
|
|
279
|
+
*
|
|
265
280
|
* @param dstLinesizes - Destination bytes per line
|
|
281
|
+
*
|
|
266
282
|
* @param srcData - Source data planes
|
|
283
|
+
*
|
|
267
284
|
* @param srcLinesizes - Source bytes per line
|
|
285
|
+
*
|
|
268
286
|
* @param pixFmt - Pixel format
|
|
287
|
+
*
|
|
269
288
|
* @param width - Image width
|
|
289
|
+
*
|
|
270
290
|
* @param height - Image height
|
|
271
291
|
*
|
|
272
292
|
* @example
|
|
@@ -289,9 +309,13 @@ export declare function avImageCopy2(dstData: Buffer[], dstLinesizes: number[],
|
|
|
289
309
|
* Direct mapping to av_image_get_buffer_size().
|
|
290
310
|
*
|
|
291
311
|
* @param pixFmt - Pixel format
|
|
312
|
+
*
|
|
292
313
|
* @param width - Image width
|
|
314
|
+
*
|
|
293
315
|
* @param height - Image height
|
|
316
|
+
*
|
|
294
317
|
* @param align - Buffer alignment
|
|
318
|
+
*
|
|
295
319
|
* @returns Required buffer size in bytes
|
|
296
320
|
*
|
|
297
321
|
* @example
|
|
@@ -314,13 +338,21 @@ export declare function avImageGetBufferSize(pixFmt: AVPixelFormat, width: numbe
|
|
|
314
338
|
* Direct mapping to av_image_copy_to_buffer().
|
|
315
339
|
*
|
|
316
340
|
* @param dst - Destination buffer
|
|
341
|
+
*
|
|
317
342
|
* @param dstSize - Destination buffer size
|
|
343
|
+
*
|
|
318
344
|
* @param srcData - Source data planes
|
|
345
|
+
*
|
|
319
346
|
* @param srcLinesize - Source bytes per line
|
|
347
|
+
*
|
|
320
348
|
* @param pixFmt - Pixel format
|
|
349
|
+
*
|
|
321
350
|
* @param width - Image width
|
|
351
|
+
*
|
|
322
352
|
* @param height - Image height
|
|
353
|
+
*
|
|
323
354
|
* @param align - Buffer alignment
|
|
355
|
+
*
|
|
324
356
|
* @returns Bytes written, or negative AVERROR
|
|
325
357
|
*
|
|
326
358
|
* @example
|
|
@@ -344,6 +376,7 @@ export declare function avImageCopyToBuffer(dst: Buffer, dstSize: number, srcDat
|
|
|
344
376
|
* Direct mapping to av_ts2str().
|
|
345
377
|
*
|
|
346
378
|
* @param ts - Timestamp value
|
|
379
|
+
*
|
|
347
380
|
* @returns String representation
|
|
348
381
|
*
|
|
349
382
|
* @example
|
|
@@ -363,7 +396,9 @@ export declare function avTs2Str(ts: bigint | number | null): string;
|
|
|
363
396
|
* Direct mapping to av_ts2timestr().
|
|
364
397
|
*
|
|
365
398
|
* @param ts - Timestamp value
|
|
399
|
+
*
|
|
366
400
|
* @param timeBase - Time base for conversion
|
|
401
|
+
*
|
|
367
402
|
* @returns Time string representation
|
|
368
403
|
*
|
|
369
404
|
* @example
|
|
@@ -381,9 +416,13 @@ export declare function avTs2TimeStr(ts: bigint | number | null, timeBase: IRati
|
|
|
381
416
|
* Allocates image data as separate plane arrays.
|
|
382
417
|
*
|
|
383
418
|
* @param width - Image width
|
|
419
|
+
*
|
|
384
420
|
* @param height - Image height
|
|
421
|
+
*
|
|
385
422
|
* @param pixFmt - Pixel format
|
|
423
|
+
*
|
|
386
424
|
* @param align - Buffer alignment
|
|
425
|
+
*
|
|
387
426
|
* @returns Object with data planes, line sizes, and total size
|
|
388
427
|
*
|
|
389
428
|
* @example
|
|
@@ -407,9 +446,13 @@ export declare function avImageAllocArrays(width: number, height: number, pixFmt
|
|
|
407
446
|
* Direct mapping to av_compare_ts().
|
|
408
447
|
*
|
|
409
448
|
* @param tsA - First timestamp
|
|
449
|
+
*
|
|
410
450
|
* @param tbA - First time base
|
|
451
|
+
*
|
|
411
452
|
* @param tsB - Second timestamp
|
|
453
|
+
*
|
|
412
454
|
* @param tbB - Second time base
|
|
455
|
+
*
|
|
413
456
|
* @returns -1 if A < B, 0 if A == B, 1 if A > B
|
|
414
457
|
*
|
|
415
458
|
* @example
|
|
@@ -432,8 +475,11 @@ export declare function avCompareTs(tsA: bigint | number | null, tbA: IRational,
|
|
|
432
475
|
* Direct mapping to av_rescale_q().
|
|
433
476
|
*
|
|
434
477
|
* @param a - Timestamp to rescale
|
|
478
|
+
*
|
|
435
479
|
* @param bq - Source time base
|
|
480
|
+
*
|
|
436
481
|
* @param cq - Destination time base
|
|
482
|
+
*
|
|
437
483
|
* @returns Rescaled timestamp
|
|
438
484
|
*
|
|
439
485
|
* @example
|
|
@@ -476,9 +522,13 @@ export declare function avUsleep(usec: number): void;
|
|
|
476
522
|
* Direct mapping to av_rescale_rnd().
|
|
477
523
|
*
|
|
478
524
|
* @param a - Value to rescale
|
|
525
|
+
*
|
|
479
526
|
* @param b - Multiplier
|
|
527
|
+
*
|
|
480
528
|
* @param c - Divisor
|
|
529
|
+
*
|
|
481
530
|
* @param rnd - Rounding mode (AV_ROUND_*)
|
|
531
|
+
*
|
|
482
532
|
* @returns Rescaled value
|
|
483
533
|
*
|
|
484
534
|
* @example
|
|
@@ -500,9 +550,13 @@ export declare function avRescaleRnd(a: bigint | number, b: bigint | number, c:
|
|
|
500
550
|
* Direct mapping to av_samples_alloc().
|
|
501
551
|
*
|
|
502
552
|
* @param nbChannels - Number of audio channels
|
|
553
|
+
*
|
|
503
554
|
* @param nbSamples - Number of samples per channel
|
|
555
|
+
*
|
|
504
556
|
* @param sampleFmt - Sample format
|
|
557
|
+
*
|
|
505
558
|
* @param align - Buffer alignment
|
|
559
|
+
*
|
|
506
560
|
* @returns Object with data buffers, line size, and total size
|
|
507
561
|
*
|
|
508
562
|
* @throws {FFmpegError} If allocation fails
|
|
@@ -533,9 +587,13 @@ export declare function avSamplesAlloc(nbChannels: number, nbSamples: number, sa
|
|
|
533
587
|
* Direct mapping to av_samples_get_buffer_size().
|
|
534
588
|
*
|
|
535
589
|
* @param nbChannels - Number of channels
|
|
590
|
+
*
|
|
536
591
|
* @param nbSamples - Number of samples per channel
|
|
592
|
+
*
|
|
537
593
|
* @param sampleFmt - Sample format
|
|
594
|
+
*
|
|
538
595
|
* @param align - Buffer alignment
|
|
596
|
+
*
|
|
539
597
|
* @returns Object with size and line size
|
|
540
598
|
*
|
|
541
599
|
* @throws {FFmpegError} If parameters are invalid
|
|
@@ -565,6 +623,7 @@ export declare function avSamplesGetBufferSize(nbChannels: number, nbSamples: nu
|
|
|
565
623
|
* Direct mapping to av_channel_layout_describe().
|
|
566
624
|
*
|
|
567
625
|
* @param channelLayout - Channel layout to describe
|
|
626
|
+
*
|
|
568
627
|
* @returns Layout description string, or null
|
|
569
628
|
*
|
|
570
629
|
* @example
|
|
@@ -585,6 +644,7 @@ export declare function avChannelLayoutDescribe(channelLayout: Partial<ChannelLa
|
|
|
585
644
|
* Direct mapping to av_sdp_create().
|
|
586
645
|
*
|
|
587
646
|
* @param contexts - Array of format contexts
|
|
647
|
+
*
|
|
588
648
|
* @returns SDP string, or null on error
|
|
589
649
|
*
|
|
590
650
|
* @example
|
package/dist/lib/utilities.js
CHANGED
|
@@ -9,6 +9,7 @@ import { FFmpegError } from './error.js';
|
|
|
9
9
|
* Direct mapping to av_get_bytes_per_sample().
|
|
10
10
|
*
|
|
11
11
|
* @param sampleFmt - Audio sample format
|
|
12
|
+
*
|
|
12
13
|
* @returns Number of bytes per sample, or 0 if unknown format
|
|
13
14
|
*
|
|
14
15
|
* @example
|
|
@@ -32,6 +33,7 @@ export function avGetBytesPerSample(sampleFmt) {
|
|
|
32
33
|
* Direct mapping to av_get_sample_fmt_name().
|
|
33
34
|
*
|
|
34
35
|
* @param sampleFmt - Audio sample format
|
|
36
|
+
*
|
|
35
37
|
* @returns Format name, or null if unknown
|
|
36
38
|
*
|
|
37
39
|
* @example
|
|
@@ -56,6 +58,7 @@ export function avGetSampleFmtName(sampleFmt) {
|
|
|
56
58
|
* Direct mapping to av_get_packed_sample_fmt().
|
|
57
59
|
*
|
|
58
60
|
* @param sampleFmt - Audio sample format
|
|
61
|
+
*
|
|
59
62
|
* @returns Packed version of the format
|
|
60
63
|
*
|
|
61
64
|
* @example
|
|
@@ -81,6 +84,7 @@ export function avGetPackedSampleFmt(sampleFmt) {
|
|
|
81
84
|
* Direct mapping to av_get_planar_sample_fmt().
|
|
82
85
|
*
|
|
83
86
|
* @param sampleFmt - Audio sample format
|
|
87
|
+
*
|
|
84
88
|
* @returns Planar version of the format
|
|
85
89
|
*
|
|
86
90
|
* @example
|
|
@@ -106,6 +110,7 @@ export function avGetPlanarSampleFmt(sampleFmt) {
|
|
|
106
110
|
* Direct mapping to av_sample_fmt_is_planar().
|
|
107
111
|
*
|
|
108
112
|
* @param sampleFmt - Audio sample format to check
|
|
113
|
+
*
|
|
109
114
|
* @returns True if planar, false if packed/interleaved
|
|
110
115
|
*
|
|
111
116
|
* @example
|
|
@@ -129,6 +134,7 @@ export function avSampleFmtIsPlanar(sampleFmt) {
|
|
|
129
134
|
* Direct mapping to avcodec_get_name().
|
|
130
135
|
*
|
|
131
136
|
* @param codecId - Codec ID from AVCodecID enum
|
|
137
|
+
*
|
|
132
138
|
* @returns Codec name string or null
|
|
133
139
|
*
|
|
134
140
|
* @example
|
|
@@ -154,6 +160,7 @@ export function avGetCodecName(codecId) {
|
|
|
154
160
|
* Direct mapping to av_get_pix_fmt_name().
|
|
155
161
|
*
|
|
156
162
|
* @param pixFmt - Pixel format
|
|
163
|
+
*
|
|
157
164
|
* @returns Format name, or null if unknown
|
|
158
165
|
*
|
|
159
166
|
* @example
|
|
@@ -177,6 +184,7 @@ export function avGetPixFmtName(pixFmt) {
|
|
|
177
184
|
* Direct mapping to av_get_pix_fmt().
|
|
178
185
|
*
|
|
179
186
|
* @param name - Pixel format name
|
|
187
|
+
*
|
|
180
188
|
* @returns Pixel format enum, or AV_PIX_FMT_NONE if unknown
|
|
181
189
|
*
|
|
182
190
|
* @example
|
|
@@ -200,6 +208,7 @@ export function avGetPixFmtFromName(name) {
|
|
|
200
208
|
* Direct mapping to av_pix_fmt_desc_get() with hwaccel check.
|
|
201
209
|
*
|
|
202
210
|
* @param pixFmt - Pixel format to check
|
|
211
|
+
*
|
|
203
212
|
* @returns True if hardware format, false if software format
|
|
204
213
|
*
|
|
205
214
|
* @example
|
|
@@ -223,6 +232,7 @@ export function avIsHardwarePixelFormat(pixFmt) {
|
|
|
223
232
|
* Direct mapping to av_get_media_type_string().
|
|
224
233
|
*
|
|
225
234
|
* @param mediaType - Media type enum
|
|
235
|
+
*
|
|
226
236
|
* @returns Media type name, or null if unknown
|
|
227
237
|
*
|
|
228
238
|
* @example
|
|
@@ -247,9 +257,13 @@ export function avGetMediaTypeString(mediaType) {
|
|
|
247
257
|
* Direct mapping to av_image_alloc().
|
|
248
258
|
*
|
|
249
259
|
* @param width - Image width in pixels
|
|
260
|
+
*
|
|
250
261
|
* @param height - Image height in pixels
|
|
262
|
+
*
|
|
251
263
|
* @param pixFmt - Pixel format
|
|
264
|
+
*
|
|
252
265
|
* @param align - Buffer alignment (typically 1 or 32)
|
|
266
|
+
*
|
|
253
267
|
* @returns Object with buffer, size, and line sizes
|
|
254
268
|
*
|
|
255
269
|
* @throws {FFmpegError} If allocation fails
|
|
@@ -284,11 +298,17 @@ export function avImageAlloc(width, height, pixFmt, align) {
|
|
|
284
298
|
* Direct mapping to av_image_copy2().
|
|
285
299
|
*
|
|
286
300
|
* @param dstData - Destination data planes
|
|
301
|
+
*
|
|
287
302
|
* @param dstLinesizes - Destination bytes per line
|
|
303
|
+
*
|
|
288
304
|
* @param srcData - Source data planes
|
|
305
|
+
*
|
|
289
306
|
* @param srcLinesizes - Source bytes per line
|
|
307
|
+
*
|
|
290
308
|
* @param pixFmt - Pixel format
|
|
309
|
+
*
|
|
291
310
|
* @param width - Image width
|
|
311
|
+
*
|
|
292
312
|
* @param height - Image height
|
|
293
313
|
*
|
|
294
314
|
* @example
|
|
@@ -313,9 +333,13 @@ export function avImageCopy2(dstData, dstLinesizes, srcData, srcLinesizes, pixFm
|
|
|
313
333
|
* Direct mapping to av_image_get_buffer_size().
|
|
314
334
|
*
|
|
315
335
|
* @param pixFmt - Pixel format
|
|
336
|
+
*
|
|
316
337
|
* @param width - Image width
|
|
338
|
+
*
|
|
317
339
|
* @param height - Image height
|
|
340
|
+
*
|
|
318
341
|
* @param align - Buffer alignment
|
|
342
|
+
*
|
|
319
343
|
* @returns Required buffer size in bytes
|
|
320
344
|
*
|
|
321
345
|
* @example
|
|
@@ -340,13 +364,21 @@ export function avImageGetBufferSize(pixFmt, width, height, align) {
|
|
|
340
364
|
* Direct mapping to av_image_copy_to_buffer().
|
|
341
365
|
*
|
|
342
366
|
* @param dst - Destination buffer
|
|
367
|
+
*
|
|
343
368
|
* @param dstSize - Destination buffer size
|
|
369
|
+
*
|
|
344
370
|
* @param srcData - Source data planes
|
|
371
|
+
*
|
|
345
372
|
* @param srcLinesize - Source bytes per line
|
|
373
|
+
*
|
|
346
374
|
* @param pixFmt - Pixel format
|
|
375
|
+
*
|
|
347
376
|
* @param width - Image width
|
|
377
|
+
*
|
|
348
378
|
* @param height - Image height
|
|
379
|
+
*
|
|
349
380
|
* @param align - Buffer alignment
|
|
381
|
+
*
|
|
350
382
|
* @returns Bytes written, or negative AVERROR
|
|
351
383
|
*
|
|
352
384
|
* @example
|
|
@@ -372,6 +404,7 @@ export function avImageCopyToBuffer(dst, dstSize, srcData, srcLinesize, pixFmt,
|
|
|
372
404
|
* Direct mapping to av_ts2str().
|
|
373
405
|
*
|
|
374
406
|
* @param ts - Timestamp value
|
|
407
|
+
*
|
|
375
408
|
* @returns String representation
|
|
376
409
|
*
|
|
377
410
|
* @example
|
|
@@ -393,7 +426,9 @@ export function avTs2Str(ts) {
|
|
|
393
426
|
* Direct mapping to av_ts2timestr().
|
|
394
427
|
*
|
|
395
428
|
* @param ts - Timestamp value
|
|
429
|
+
*
|
|
396
430
|
* @param timeBase - Time base for conversion
|
|
431
|
+
*
|
|
397
432
|
* @returns Time string representation
|
|
398
433
|
*
|
|
399
434
|
* @example
|
|
@@ -416,9 +451,13 @@ export function avTs2TimeStr(ts, timeBase) {
|
|
|
416
451
|
* Allocates image data as separate plane arrays.
|
|
417
452
|
*
|
|
418
453
|
* @param width - Image width
|
|
454
|
+
*
|
|
419
455
|
* @param height - Image height
|
|
456
|
+
*
|
|
420
457
|
* @param pixFmt - Pixel format
|
|
458
|
+
*
|
|
421
459
|
* @param align - Buffer alignment
|
|
460
|
+
*
|
|
422
461
|
* @returns Object with data planes, line sizes, and total size
|
|
423
462
|
*
|
|
424
463
|
* @example
|
|
@@ -451,9 +490,13 @@ export function avImageAllocArrays(width, height, pixFmt, align) {
|
|
|
451
490
|
* Direct mapping to av_compare_ts().
|
|
452
491
|
*
|
|
453
492
|
* @param tsA - First timestamp
|
|
493
|
+
*
|
|
454
494
|
* @param tbA - First time base
|
|
495
|
+
*
|
|
455
496
|
* @param tsB - Second timestamp
|
|
497
|
+
*
|
|
456
498
|
* @param tbB - Second time base
|
|
499
|
+
*
|
|
457
500
|
* @returns -1 if A < B, 0 if A == B, 1 if A > B
|
|
458
501
|
*
|
|
459
502
|
* @example
|
|
@@ -478,8 +521,11 @@ export function avCompareTs(tsA, tbA, tsB, tbB) {
|
|
|
478
521
|
* Direct mapping to av_rescale_q().
|
|
479
522
|
*
|
|
480
523
|
* @param a - Timestamp to rescale
|
|
524
|
+
*
|
|
481
525
|
* @param bq - Source time base
|
|
526
|
+
*
|
|
482
527
|
* @param cq - Destination time base
|
|
528
|
+
*
|
|
483
529
|
* @returns Rescaled timestamp
|
|
484
530
|
*
|
|
485
531
|
* @example
|
|
@@ -526,9 +572,13 @@ export function avUsleep(usec) {
|
|
|
526
572
|
* Direct mapping to av_rescale_rnd().
|
|
527
573
|
*
|
|
528
574
|
* @param a - Value to rescale
|
|
575
|
+
*
|
|
529
576
|
* @param b - Multiplier
|
|
577
|
+
*
|
|
530
578
|
* @param c - Divisor
|
|
579
|
+
*
|
|
531
580
|
* @param rnd - Rounding mode (AV_ROUND_*)
|
|
581
|
+
*
|
|
532
582
|
* @returns Rescaled value
|
|
533
583
|
*
|
|
534
584
|
* @example
|
|
@@ -552,9 +602,13 @@ export function avRescaleRnd(a, b, c, rnd) {
|
|
|
552
602
|
* Direct mapping to av_samples_alloc().
|
|
553
603
|
*
|
|
554
604
|
* @param nbChannels - Number of audio channels
|
|
605
|
+
*
|
|
555
606
|
* @param nbSamples - Number of samples per channel
|
|
607
|
+
*
|
|
556
608
|
* @param sampleFmt - Sample format
|
|
609
|
+
*
|
|
557
610
|
* @param align - Buffer alignment
|
|
611
|
+
*
|
|
558
612
|
* @returns Object with data buffers, line size, and total size
|
|
559
613
|
*
|
|
560
614
|
* @throws {FFmpegError} If allocation fails
|
|
@@ -587,9 +641,13 @@ export function avSamplesAlloc(nbChannels, nbSamples, sampleFmt, align) {
|
|
|
587
641
|
* Direct mapping to av_samples_get_buffer_size().
|
|
588
642
|
*
|
|
589
643
|
* @param nbChannels - Number of channels
|
|
644
|
+
*
|
|
590
645
|
* @param nbSamples - Number of samples per channel
|
|
646
|
+
*
|
|
591
647
|
* @param sampleFmt - Sample format
|
|
648
|
+
*
|
|
592
649
|
* @param align - Buffer alignment
|
|
650
|
+
*
|
|
593
651
|
* @returns Object with size and line size
|
|
594
652
|
*
|
|
595
653
|
* @throws {FFmpegError} If parameters are invalid
|
|
@@ -622,6 +680,7 @@ export function avSamplesGetBufferSize(nbChannels, nbSamples, sampleFmt, align)
|
|
|
622
680
|
* Direct mapping to av_channel_layout_describe().
|
|
623
681
|
*
|
|
624
682
|
* @param channelLayout - Channel layout to describe
|
|
683
|
+
*
|
|
625
684
|
* @returns Layout description string, or null
|
|
626
685
|
*
|
|
627
686
|
* @example
|
|
@@ -644,6 +703,7 @@ export function avChannelLayoutDescribe(channelLayout) {
|
|
|
644
703
|
* Direct mapping to av_sdp_create().
|
|
645
704
|
*
|
|
646
705
|
* @param contexts - Array of format contexts
|
|
706
|
+
*
|
|
647
707
|
* @returns SDP string, or null on error
|
|
648
708
|
*
|
|
649
709
|
* @example
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utilities.js","sourceRoot":"","sources":["../../src/lib/utilities.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAMzC
|
|
1
|
+
{"version":3,"file":"utilities.js","sourceRoot":"","sources":["../../src/lib/utilities.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAMzC;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,MAAM,UAAU,mBAAmB,CAAC,SAAyB;IAC3D,OAAO,QAAQ,CAAC,mBAAmB,CAAC,SAAS,CAAC,CAAC;AACjD,CAAC;AAED;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,MAAM,UAAU,kBAAkB,CAAC,SAAyB;IAC1D,OAAO,QAAQ,CAAC,kBAAkB,CAAC,SAAS,CAAC,CAAC;AAChD,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,MAAM,UAAU,oBAAoB,CAAC,SAAyB;IAC5D,OAAO,QAAQ,CAAC,oBAAoB,CAAC,SAAS,CAAC,CAAC;AAClD,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,MAAM,UAAU,oBAAoB,CAAC,SAAyB;IAC5D,OAAO,QAAQ,CAAC,oBAAoB,CAAC,SAAS,CAAC,CAAC;AAClD,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,MAAM,UAAU,mBAAmB,CAAC,SAAyB;IAC3D,OAAO,QAAQ,CAAC,mBAAmB,CAAC,SAAS,CAAC,CAAC;AACjD,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,MAAM,UAAU,cAAc,CAAC,OAAkB;IAC/C,OAAO,QAAQ,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;AAC1C,CAAC;AAED;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,MAAM,UAAU,eAAe,CAAC,MAAqB;IACnD,OAAO,QAAQ,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC;AAC1C,CAAC;AAED;;;;;;;;;;;;;;;;;;;GAmBG;AACH,MAAM,UAAU,mBAAmB,CAAC,IAAY;IAC9C,OAAO,QAAQ,CAAC,mBAAmB,CAAC,IAAI,CAAC,CAAC;AAC5C,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,MAAM,UAAU,uBAAuB,CAAC,MAAqB;IAC3D,OAAO,QAAQ,CAAC,uBAAuB,CAAC,MAAM,CAAC,CAAC;AAClD,CAAC;AAED;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,MAAM,UAAU,oBAAoB,CAAC,SAAsB;IACzD,OAAO,QAAQ,CAAC,oBAAoB,CAAC,SAAS,CAAC,CAAC;AAClD,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,MAAM,UAAU,YAAY,CAC1B,KAAa,EACb,MAAc,EACd,MAAqB,EACrB,KAAa;IAMb,MAAM,MAAM,GAAG,QAAQ,CAAC,YAAY,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,CAAC,CAAC;IACnE,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE,CAAC;QAC/B,wCAAwC;QACxC,MAAM,IAAI,WAAW,CAAC,MAAM,CAAC,CAAC;IAChC,CAAC;IACD,OAAO,MAAM,CAAC;AAChB,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,MAAM,UAAU,YAAY,CAC1B,OAAiB,EACjB,YAAsB,EACtB,OAAiB,EACjB,YAAsB,EACtB,MAAqB,EACrB,KAAa,EACb,MAAc;IAEd,QAAQ,CAAC,YAAY,CAAC,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,YAAY,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;AAC7F,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,MAAM,UAAU,oBAAoB,CAAC,MAAqB,EAAE,KAAa,EAAE,MAAc,EAAE,KAAa;IACtG,OAAO,QAAQ,CAAC,oBAAoB,CAAC,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC,CAAC;AACrE,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,MAAM,UAAU,mBAAmB,CACjC,GAAW,EACX,OAAe,EACf,OAAwB,EACxB,WAA4B,EAC5B,MAAqB,EACrB,KAAa,EACb,MAAc,EACd,KAAa;IAEb,OAAO,QAAQ,CAAC,mBAAmB,CAAC,GAAG,EAAE,OAAO,EAAE,OAAO,EAAE,WAAW,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC,CAAC;AACxG,CAAC;AAED;;;;;;;;;;;;;;;;;;GAkBG;AACH,MAAM,UAAU,QAAQ,CAAC,EAA0B;IACjD,OAAO,QAAQ,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC;AAC/B,CAAC;AAED;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,MAAM,UAAU,YAAY,CAAC,EAA0B,EAAE,QAA0B;IACjF,IAAI,CAAC,QAAQ,EAAE,CAAC;QACd,OAAO,QAAQ,CAAC,EAAE,CAAC,CAAC;IACtB,CAAC;IACD,OAAO,QAAQ,CAAC,YAAY,CAAC,EAAE,EAAE,QAAQ,CAAC,CAAC;AAC7C,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,MAAM,UAAU,kBAAkB,CAChC,KAAa,EACb,MAAc,EACd,MAAqB,EACrB,KAAa;IAMb,MAAM,MAAM,GAAG,YAAY,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,CAAC,CAAC;IAE1D,qDAAqD;IACrD,MAAM,IAAI,GAAa,EAAE,CAAC;IAC1B,MAAM,SAAS,GAAG,MAAM,CAAC,SAAS,CAAC;IAEnC,6CAA6C;IAC7C,qFAAqF;IACrF,IAAI,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC;IAExB,OAAO;QACL,IAAI;QACJ,SAAS;QACT,IAAI,EAAE,MAAM,CAAC,IAAI;KAClB,CAAC;AACJ,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,MAAM,UAAU,WAAW,CAAC,GAA2B,EAAE,GAAc,EAAE,GAA2B,EAAE,GAAc;IAClH,OAAO,QAAQ,CAAC,WAAW,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;AAClD,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,MAAM,UAAU,UAAU,CAAC,CAAyB,EAAE,EAAa,EAAE,EAAa;IAChF,OAAO,QAAQ,CAAC,UAAU,CAAC,CAAC,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;AACxC,CAAC;AAED;;;;;;;;;;;;;;;;GAgBG;AACH,MAAM,UAAU,QAAQ,CAAC,IAAY;IACnC,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;AAC1B,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,MAAM,UAAU,YAAY,CAAC,CAAkB,EAAE,CAAkB,EAAE,CAAkB,EAAE,GAAW;IAClG,OAAO,QAAQ,CAAC,YAAY,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,CAAC,CAAC;AAC7C,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,MAAM,UAAU,cAAc,CAC5B,UAAkB,EAClB,SAAiB,EACjB,SAAyB,EACzB,KAAa;IAMb,MAAM,MAAM,GAAG,QAAQ,CAAC,cAAc,CAAC,UAAU,EAAE,SAAS,EAAE,SAAS,EAAE,KAAK,CAAC,CAAC;IAChF,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE,CAAC;QAC/B,MAAM,IAAI,WAAW,CAAC,MAAM,CAAC,CAAC;IAChC,CAAC;IACD,OAAO,MAAM,CAAC;AAChB,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,MAAM,UAAU,sBAAsB,CACpC,UAAkB,EAClB,SAAiB,EACjB,SAAyB,EACzB,KAAa;IAKb,MAAM,MAAM,GAAG,QAAQ,CAAC,sBAAsB,CAAC,UAAU,EAAE,SAAS,EAAE,SAAS,EAAE,KAAK,CAAC,CAAC;IACxF,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE,CAAC;QAC/B,MAAM,IAAI,WAAW,CAAC,MAAM,CAAC,CAAC;IAChC,CAAC;IACD,OAAO,MAAM,CAAC;AAChB,CAAC;AAED;;;;;;;;;;;;;;;;;;GAkBG;AACH,MAAM,UAAU,uBAAuB,CAAC,aAAqC;IAC3E,OAAO,QAAQ,CAAC,uBAAuB,CAAC,aAAa,CAAC,CAAC;AACzD,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,MAAM,UAAU,WAAW,CAAC,QAAyB;IACnD,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,QAAQ,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QACtD,OAAO,IAAI,CAAC;IACd,CAAC;IAED,yCAAyC;IACzC,MAAM,cAAc,GAAG,QAAQ;SAC5B,GAAG,CAAC,CAAC,GAAG,EAAE,EAAE;QACX,IAAI,GAAG,IAAI,OAAO,GAAG,CAAC,SAAS,KAAK,UAAU,EAAE,CAAC;YAC/C,MAAM,SAAS,GAAG,GAAG,CAAC,SAAS,EAAE,CAAC;YAClC,IAAI,SAAS,EAAE,CAAC;gBACd,OAAO,SAAS,CAAC;YACnB,CAAC;QACH,CAAC;IACH,CAAC,CAAC;SACD,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,KAAK,SAAS,CAAC,CAAC;IAEtC,oDAAoD;IACpD,IAAI,cAAc,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QAChC,OAAO,IAAI,CAAC;IACd,CAAC;IAED,OAAO,QAAQ,CAAC,WAAW,CAAC,cAAc,CAAC,CAAC;AAC9C,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-av",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "FFmpeg bindings for Node.js",
|
|
5
5
|
"author": "seydx (https://github.com/seydx/av)",
|
|
6
6
|
"type": "module",
|
|
@@ -55,28 +55,28 @@
|
|
|
55
55
|
"update": "updates --update ./"
|
|
56
56
|
},
|
|
57
57
|
"optionalDependencies": {
|
|
58
|
-
"@seydx/node-av-darwin-arm64": "^2.
|
|
59
|
-
"@seydx/node-av-darwin-x64": "^2.
|
|
60
|
-
"@seydx/node-av-linux-arm64": "^2.
|
|
61
|
-
"@seydx/node-av-linux-x64": "^2.
|
|
62
|
-
"@seydx/node-av-win32-arm64": "^2.
|
|
63
|
-
"@seydx/node-av-win32-x64": "^2.
|
|
58
|
+
"@seydx/node-av-darwin-arm64": "^2.1.0",
|
|
59
|
+
"@seydx/node-av-darwin-x64": "^2.1.0",
|
|
60
|
+
"@seydx/node-av-linux-arm64": "^2.1.0",
|
|
61
|
+
"@seydx/node-av-linux-x64": "^2.1.0",
|
|
62
|
+
"@seydx/node-av-win32-arm64": "^2.1.0",
|
|
63
|
+
"@seydx/node-av-win32-x64": "^2.1.0"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"@camera.ui/ffmpeg": "^0.0.14",
|
|
67
67
|
"@stylistic/eslint-plugin": "^5.3.1",
|
|
68
68
|
"@types/debug": "^4.1.12",
|
|
69
|
-
"@types/node": "^24.
|
|
69
|
+
"@types/node": "^24.5.2",
|
|
70
70
|
"@types/node-abi": "^3.0.3",
|
|
71
71
|
"@types/pngjs": "^6.0.5",
|
|
72
72
|
"@types/semver": "^7.7.1",
|
|
73
73
|
"@types/unzipper": "^0.10.11",
|
|
74
|
-
"@typescript-eslint/parser": "^8.
|
|
74
|
+
"@typescript-eslint/parser": "^8.44.0",
|
|
75
75
|
"concurrently": "^9.2.1",
|
|
76
76
|
"cpy-cli": "^6.0.0",
|
|
77
77
|
"cross-env": "^10.0.0",
|
|
78
78
|
"eslint": "^9.35.0",
|
|
79
|
-
"eslint-plugin-jsdoc": "^
|
|
79
|
+
"eslint-plugin-jsdoc": "^58.1.1",
|
|
80
80
|
"globals": "^16.4.0",
|
|
81
81
|
"node-addon-api": "^8.5.0",
|
|
82
82
|
"node-gyp": "^11.4.2",
|
|
@@ -84,12 +84,12 @@
|
|
|
84
84
|
"prettier": "^3.6.2",
|
|
85
85
|
"rimraf": "^6.0.1",
|
|
86
86
|
"tsx": "^4.20.5",
|
|
87
|
-
"typedoc": "^0.28.
|
|
87
|
+
"typedoc": "^0.28.13",
|
|
88
88
|
"typedoc-plugin-markdown": "^4.8.1",
|
|
89
89
|
"typedoc-vitepress-theme": "^1.1.2",
|
|
90
90
|
"typescript": "^5.9.2",
|
|
91
|
-
"typescript-eslint": "^8.
|
|
92
|
-
"updates": "^16.7.
|
|
91
|
+
"typescript-eslint": "^8.44.0",
|
|
92
|
+
"updates": "^16.7.2",
|
|
93
93
|
"vitepress": "^2.0.0-alpha.12"
|
|
94
94
|
},
|
|
95
95
|
"bugs": {
|