@deepfish-ai/ffmpeg7-media-tools 1.0.2 → 1.0.3
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/index.js +5 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -6,8 +6,13 @@
|
|
|
6
6
|
const functions = require('./ffmpeg-functions.js');
|
|
7
7
|
const descriptions = require('./ffmpeg-descriptions.js');
|
|
8
8
|
|
|
9
|
+
const name = '@deepfish-ai/ffmpeg7-media-tools';
|
|
10
|
+
const description = 'A DeepFish AI extension tool for FFmpeg 7 media processing, including FFmpeg installation/version checks, video/audio format conversion, video trim/merge/concat/crop/rotate/resize, playback speed and bitrate/volume adjustment, video compression, GIF generation, frame and thumbnail extraction, subtitle and watermark/text overlay, audio extraction/mixing, video-audio muxing, and media metadata inspection.';
|
|
11
|
+
|
|
9
12
|
// 导出
|
|
10
13
|
module.exports = {
|
|
14
|
+
name,
|
|
15
|
+
description,
|
|
11
16
|
descriptions,
|
|
12
17
|
functions
|
|
13
18
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deepfish-ai/ffmpeg7-media-tools",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"description": "A DeepFish AI extension tool for comprehensive FFmpeg 7 media processing with 24 audio/video manipulation functions",
|
|
6
6
|
"main": "index.js",
|