@mcut/media 0.1.0-alpha.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/LICENSE +187 -0
- package/README.md +11 -0
- package/dist/export-core-B8z3duRc.js +605 -0
- package/dist/export-worker.d.ts +1 -0
- package/dist/export-worker.js +87 -0
- package/dist/index.d.ts +431 -0
- package/dist/index.js +1384 -0
- package/package.json +56 -0
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mcut/media",
|
|
3
|
+
"version": "0.1.0-alpha.0",
|
|
4
|
+
"description": "Media I/O for mcut on Mediabunny: probing, thumbnails, audio extraction, frame sources, client-side export with a pluggable container-format registry (MP4/WebM/MKV built in)",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"sideEffects": false,
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "tsdown",
|
|
21
|
+
"dev": "tsdown --watch --no-clean",
|
|
22
|
+
"typecheck": "tsc --noEmit",
|
|
23
|
+
"test": "bun test"
|
|
24
|
+
},
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "https://github.com/mattppal/mcut.git",
|
|
28
|
+
"directory": "packages/media"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@mcut/compositor": "0.1.0-alpha.0",
|
|
32
|
+
"@mcut/timeline": "0.1.0-alpha.0",
|
|
33
|
+
"@mediabunny/aac-encoder": "1.46.0",
|
|
34
|
+
"mediabunny": "1.46.0",
|
|
35
|
+
"signalsmith-stretch": "1.3.2"
|
|
36
|
+
},
|
|
37
|
+
"publishConfig": {
|
|
38
|
+
"access": "public",
|
|
39
|
+
"provenance": true
|
|
40
|
+
},
|
|
41
|
+
"author": "Matt Palmer",
|
|
42
|
+
"homepage": "https://github.com/mattppal/mcut/tree/main/packages/media#readme",
|
|
43
|
+
"bugs": {
|
|
44
|
+
"url": "https://github.com/mattppal/mcut/issues"
|
|
45
|
+
},
|
|
46
|
+
"keywords": [
|
|
47
|
+
"mcut",
|
|
48
|
+
"video",
|
|
49
|
+
"video-editing",
|
|
50
|
+
"timeline",
|
|
51
|
+
"typescript",
|
|
52
|
+
"media",
|
|
53
|
+
"webcodecs",
|
|
54
|
+
"export"
|
|
55
|
+
]
|
|
56
|
+
}
|