@types/fluent-ffmpeg
Advanced tools
Comparing version 2.1.26 to 2.1.27
@@ -390,3 +390,3 @@ /// <reference types="node" /> | ||
* @event FfmpegCommand#start | ||
* @param {String} command ffmpeg command line | ||
* @param command ffmpeg command line | ||
*/ | ||
@@ -399,9 +399,9 @@ on(event: "start", listener: (command: string) => void): this; | ||
* @event FfmpegCommand#progress | ||
* @param {Object} progress progress object | ||
* @param {Number} progress.frames number of frames transcoded | ||
* @param {Number} progress.currentFps current processing speed in frames per second | ||
* @param {Number} progress.currentKbps current output generation speed in kilobytes per second | ||
* @param {Number} progress.targetSize current output file size | ||
* @param {String} progress.timemark current video timemark | ||
* @param {Number} [progress.percent] processing progress (may not be available depending on input) | ||
* @param progress progress object | ||
* @param progress.frames number of frames transcoded | ||
* @param progress.currentFps current processing speed in frames per second | ||
* @param progress.currentKbps current output generation speed in kilobytes per second | ||
* @param progress.targetSize current output file size | ||
* @param progress.timemark current video timemark | ||
* @param [progress.percent] processing progress (may not be available depending on input) | ||
*/ | ||
@@ -424,3 +424,3 @@ on( | ||
* @event FfmpegCommand#stderr | ||
* @param {String} line stderr output line | ||
* @param line stderr output line | ||
*/ | ||
@@ -433,8 +433,9 @@ on(event: "stderr", listener: (line: string) => void): this; | ||
* @event FfmpegCommand#codecData | ||
* @param {Object} codecData codec data object | ||
* @param {String} codecData.format input format name | ||
* @param {String} codecData.audio input audio codec name | ||
* @param {String} codecData.audio_details input audio codec parameters | ||
* @param {String} codecData.video input video codec name | ||
* @param {String} codecData.video_details input video codec parameters | ||
* @param codecData codec data object | ||
* @param codecData.format input format name | ||
* @param codecData.audio input audio codec name | ||
* @param codecData.audio_details input audio codec parameters | ||
* @param codecData.video input video codec name | ||
* @param codecData.video_details input video codec parameters | ||
* @param codecData.duration input video duration | ||
*/ | ||
@@ -446,5 +447,6 @@ on( | ||
audio: string; | ||
audio_details: string; | ||
audio_details: string[]; | ||
video: string; | ||
video_details: string; | ||
video_details: string[]; | ||
duration: string; | ||
}) => void, | ||
@@ -457,5 +459,5 @@ ): this; | ||
* @event FfmpegCommand#error | ||
* @param {Error} error error object, with optional properties 'inputStreamError' / 'outputStreamError' for errors on their respective streams | ||
* @param {String|null} stdout ffmpeg stdout, unless outputting to a stream | ||
* @param {String|null} stderr ffmpeg stderr | ||
* @param error error object, with optional properties 'inputStreamError' / 'outputStreamError' for errors on their respective streams | ||
* @param stdout ffmpeg stdout, unless outputting to a stream | ||
* @param stderr ffmpeg stderr | ||
*/ | ||
@@ -468,3 +470,3 @@ on(event: "error", listener: (error: Error, stdout: string | null, stderr: string | null) => void): this; | ||
* @event FfmpegCommand#filenames | ||
* @param {Array} [filenames] generated filenames when taking screenshots | ||
* @param filenames generated filenames when taking screenshots | ||
*/ | ||
@@ -477,4 +479,4 @@ on(event: "filenames", listener: (filenames: string[]) => void): this; | ||
* @event FfmpegCommand#end | ||
* @param {String|null} stdout ffmpeg stdout when not outputting to a stream, null otherwise | ||
* @param {String|null} stderr ffmpeg stderr | ||
* @param stdout ffmpeg stdout when not outputting to a stream, null otherwise | ||
* @param stderr ffmpeg stderr | ||
*/ | ||
@@ -481,0 +483,0 @@ on(event: "end", listener: (stdout: string | null, stderr: string | null) => void): this; |
{ | ||
"name": "@types/fluent-ffmpeg", | ||
"version": "2.1.26", | ||
"version": "2.1.27", | ||
"description": "TypeScript definitions for fluent-ffmpeg", | ||
@@ -45,4 +45,5 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/fluent-ffmpeg", | ||
}, | ||
"typesPublisherContentHash": "c4aadfb7d37c7df14aed7f20ba443ab922b88a56917a4cd353424730c9d5803b", | ||
"peerDependencies": {}, | ||
"typesPublisherContentHash": "d4b5f12a5ceab07664481cac21a1d61a55eeadf6bbb95f0ba5f4875918d102d1", | ||
"typeScriptVersion": "4.8" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Tue, 27 Aug 2024 00:52:34 GMT | ||
* Last updated: Sat, 26 Oct 2024 09:02:18 GMT | ||
* Dependencies: [@types/node](https://npmjs.com/package/@types/node) | ||
@@ -14,0 +14,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
471
25304