@deepfish-ai/ffmpeg7-media-tools 1.0.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/index.js ADDED
@@ -0,0 +1,13 @@
1
+ /**
2
+ * FFmpeg媒体工具集成版本
3
+ * 重新导出拆分的功能函数和描述文件,提供向后兼容性
4
+ */
5
+
6
+ const functions = require('./ffmpeg-functions.js').functions;
7
+ const descriptions = require('./ffmpeg-descriptions.js');
8
+
9
+ // 导出
10
+ module.exports = {
11
+ descriptions,
12
+ functions
13
+ };
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "@deepfish-ai/ffmpeg7-media-tools",
3
+ "version": "1.0.0",
4
+ "description": "基于FFmpeg 7的音频视频处理工具函数集",
5
+ "main": "index.js",
6
+ "scripts": {},
7
+ "keywords": [
8
+ "ffmpeg",
9
+ "video",
10
+ "audio",
11
+ "media",
12
+ "processing",
13
+ "tools"
14
+ ],
15
+ "author": "DeepFish AI",
16
+ "license": "MIT",
17
+ "devDependencies": {},
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/qq306863030/deepfish-extensions.git"
21
+ },
22
+ "bugs": {
23
+ "url": "https://github.com/qq306863030/deepfish-extensions/issues"
24
+ },
25
+ "homepage": "https://github.com/qq306863030/deepfish-extensions#readme"
26
+ }