@designcombo/video 0.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/LICENSE +63 -0
- package/dist/SharedSystems-BSw9neqH.js +2691 -0
- package/dist/WebGLRenderer-BrabW-VK.js +2639 -0
- package/dist/WebGPURenderer-BKwBKkzk.js +1655 -0
- package/dist/browserAll-C7HVZtqZ.js +1876 -0
- package/dist/clips/audio-clip.d.ts +132 -0
- package/dist/clips/base-clip.d.ts +86 -0
- package/dist/clips/caption-clip.d.ts +257 -0
- package/dist/clips/iclip.d.ts +120 -0
- package/dist/clips/image-clip.d.ts +110 -0
- package/dist/clips/index.d.ts +8 -0
- package/dist/clips/text-clip.d.ts +192 -0
- package/dist/clips/video-clip.d.ts +200 -0
- package/dist/colorToUniform-Du0ROyNd.js +274 -0
- package/dist/compositor.d.ts +111 -0
- package/dist/index-CjzowIhV.js +28270 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.es.js +20 -0
- package/dist/index.umd.js +1295 -0
- package/dist/internal-utils/event-tool.d.ts +50 -0
- package/dist/internal-utils/index.d.ts +14 -0
- package/dist/internal-utils/log.d.ts +34 -0
- package/dist/internal-utils/meta-box.d.ts +1 -0
- package/dist/internal-utils/recodemux.d.ts +65 -0
- package/dist/internal-utils/stream-utils.d.ts +43 -0
- package/dist/internal-utils/worker-timer.d.ts +8 -0
- package/dist/json-serialization.d.ts +142 -0
- package/dist/mp4-utils/index.d.ts +31 -0
- package/dist/mp4-utils/mp4box-utils.d.ts +36 -0
- package/dist/mp4-utils/sample-transform.d.ts +23 -0
- package/dist/sprite/base-sprite.d.ts +147 -0
- package/dist/sprite/pixi-sprite-renderer.d.ts +48 -0
- package/dist/studio.d.ts +142 -0
- package/dist/transfomer/parts/handle.d.ts +17 -0
- package/dist/transfomer/parts/wireframe.d.ts +5 -0
- package/dist/transfomer/transformer.d.ts +21 -0
- package/dist/utils/audio.d.ts +82 -0
- package/dist/utils/chromakey.d.ts +24 -0
- package/dist/utils/color.d.ts +4 -0
- package/dist/utils/common.d.ts +7 -0
- package/dist/utils/dom.d.ts +48 -0
- package/dist/utils/fonts.d.ts +16 -0
- package/dist/utils/index.d.ts +5 -0
- package/dist/utils/srt-parser.d.ts +15 -0
- package/dist/utils/video.d.ts +18 -0
- package/dist/webworkerAll-DsE6HIYE.js +2497 -0
- package/package.json +53 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export { fastConcatMP4, fixFMP4Duration, mixinMP4AndAudio } from './mp4-utils';
|
|
2
|
+
export { createChromakey } from './utils/chromakey';
|
|
3
|
+
export { renderTxt2ImgBitmap } from './utils/dom';
|
|
4
|
+
export { AudioClip, CaptionClip, ImageClip, VideoClip, TextClip, } from './clips';
|
|
5
|
+
export type { ITextClipOpts } from './clips';
|
|
6
|
+
export type { IClip, IMP4ClipOpts } from './clips';
|
|
7
|
+
export { VideoClip as MP4Clip } from './clips';
|
|
8
|
+
export { Compositor } from './compositor';
|
|
9
|
+
export type { ICompositorOpts } from './compositor';
|
|
10
|
+
export { Studio } from './studio';
|
|
11
|
+
export type { IStudioOpts } from './studio';
|
|
12
|
+
export { Log } from './internal-utils';
|
|
13
|
+
export { clipToJSON, jsonToClip, type ClipJSON, type ProjectJSON, } from './json-serialization';
|
|
14
|
+
export { fontManager } from './utils/fonts';
|
package/dist/index.es.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { au as i, av as o, az as p, aw as t, aB as C, ax as e, aA as r, ay as n, ax as l, aC as m, as as x, ap as d, aq as u, aE as M, aD as f, ar as g, at as A } from "./index-CjzowIhV.js";
|
|
2
|
+
export {
|
|
3
|
+
i as AudioClip,
|
|
4
|
+
o as CaptionClip,
|
|
5
|
+
p as Compositor,
|
|
6
|
+
t as ImageClip,
|
|
7
|
+
C as Log,
|
|
8
|
+
e as MP4Clip,
|
|
9
|
+
r as Studio,
|
|
10
|
+
n as TextClip,
|
|
11
|
+
l as VideoClip,
|
|
12
|
+
m as clipToJSON,
|
|
13
|
+
x as createChromakey,
|
|
14
|
+
d as fastConcatMP4,
|
|
15
|
+
u as fixFMP4Duration,
|
|
16
|
+
M as fontManager,
|
|
17
|
+
f as jsonToClip,
|
|
18
|
+
g as mixinMP4AndAudio,
|
|
19
|
+
A as renderTxt2ImgBitmap
|
|
20
|
+
};
|