@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/README.md +299 -0
- package/ffmpeg-descriptions.js +679 -0
- package/ffmpeg-functions.js +987 -0
- package/index.js +13 -0
- package/package.json +26 -0
package/index.js
ADDED
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
|
+
}
|