openvideo 0.0.1
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-pXK0PjzC.js +2691 -0
- package/dist/WebGLRenderer-B_y7ugdK.js +2639 -0
- package/dist/WebGPURenderer-ByeYcldK.js +1655 -0
- package/dist/browserAll-lTqv9nwW.js +1876 -0
- package/dist/clips/audio-clip.d.ts +128 -0
- package/dist/clips/base-clip.d.ts +116 -0
- package/dist/clips/caption-clip.d.ts +392 -0
- package/dist/clips/effect-clip.d.ts +37 -0
- package/dist/clips/iclip.d.ts +178 -0
- package/dist/clips/image-clip.d.ts +115 -0
- package/dist/clips/index.d.ts +14 -0
- package/dist/clips/placeholder-clip.d.ts +15 -0
- package/dist/clips/text-clip.d.ts +266 -0
- package/dist/clips/transition-clip.d.ts +45 -0
- package/dist/clips/video-clip.d.ts +238 -0
- package/dist/colorToUniform-C2jGzNe1.js +97 -0
- package/dist/compositor.d.ts +107 -0
- package/dist/effect/effect.d.ts +6 -0
- package/dist/effect/glsl/custom-glsl.d.ts +1017 -0
- package/dist/effect/glsl/gl-effect.d.ts +16 -0
- package/dist/effect/types.d.ts +24 -0
- package/dist/effect/vertex.d.ts +1 -0
- package/dist/event-emitter.d.ts +55 -0
- package/dist/index-CIRqJXOw.js +41882 -0
- package/dist/index.d.ts +20 -0
- package/dist/index.es.js +28 -0
- package/dist/index.umd.js +7741 -0
- package/dist/json-serialization.d.ts +222 -0
- package/dist/mp4-utils/index.d.ts +31 -0
- package/dist/mp4-utils/mp4box-utils.d.ts +44 -0
- package/dist/mp4-utils/sample-transform.d.ts +26 -0
- package/dist/sprite/base-sprite.d.ts +183 -0
- package/dist/sprite/pixi-sprite-renderer.d.ts +49 -0
- package/dist/studio/history-manager.d.ts +46 -0
- package/dist/studio/resource-manager.d.ts +53 -0
- package/dist/studio/resource-manager.spec.d.ts +1 -0
- package/dist/studio/selection-manager.d.ts +50 -0
- package/dist/studio/timeline-model.d.ts +110 -0
- package/dist/studio/transport.d.ts +44 -0
- package/dist/studio.d.ts +380 -0
- package/dist/studio.spec.d.ts +1 -0
- package/dist/transfomer/parts/handle.d.ts +17 -0
- package/dist/transfomer/parts/snapping.d.ts +41 -0
- package/dist/transfomer/parts/wireframe.d.ts +5 -0
- package/dist/transfomer/transformer.d.ts +31 -0
- package/dist/transition/fragment.d.ts +1 -0
- package/dist/transition/glsl/custom-glsl.d.ts +231 -0
- package/dist/transition/glsl/gl-transition.d.ts +18 -0
- package/dist/transition/transition.d.ts +6 -0
- package/dist/transition/types.d.ts +29 -0
- package/dist/transition/uniforms.d.ts +35 -0
- package/dist/transition/vertex.d.ts +1 -0
- package/dist/utils/asset-manager.d.ts +6 -0
- package/dist/utils/audio-codec-detector.d.ts +28 -0
- package/dist/utils/audio.d.ts +82 -0
- package/dist/utils/chromakey.d.ts +24 -0
- package/dist/utils/color.d.ts +9 -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 +6 -0
- package/dist/utils/log.d.ts +27 -0
- package/dist/utils/srt-parser.d.ts +15 -0
- package/dist/utils/stream-utils.d.ts +9 -0
- package/dist/utils/video.d.ts +16 -0
- package/dist/utils/worker-timer.d.ts +1 -0
- package/dist/webworkerAll-BsrA7oC4.js +2670 -0
- package/package.json +63 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export { fastConcatMP4, fixFMP4Duration, mixinMP4AndAudio } from './mp4-utils';
|
|
2
|
+
export { createChromakey } from './utils/chromakey';
|
|
3
|
+
export { renderTxt2ImgBitmap } from './utils/dom';
|
|
4
|
+
export { Audio, Caption, Image, Video, Text, Effect, Transition, Placeholder, } from './clips';
|
|
5
|
+
export type { IClip, IMP4ClipOpts } from './clips';
|
|
6
|
+
export { DEFAULT_AUDIO_CONF } from './clips/iclip';
|
|
7
|
+
export { Video 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 './utils/log';
|
|
13
|
+
export { clipToJSON, jsonToClip, type ClipJSON, type ProjectJSON, } from './json-serialization';
|
|
14
|
+
export { fontManager } from './utils/fonts';
|
|
15
|
+
export { makeEffect } from './effect/effect';
|
|
16
|
+
export type { EffectKey } from './effect/glsl/gl-effect';
|
|
17
|
+
export { GL_EFFECT_OPTIONS } from './effect/glsl/gl-effect';
|
|
18
|
+
export { makeTransition } from './transition/transition';
|
|
19
|
+
export type { TransitionKey } from './transition/glsl/gl-transition';
|
|
20
|
+
export { GL_TRANSITION_OPTIONS } from './transition/glsl/gl-transition';
|
package/dist/index.es.js
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { ay as o, az as i, aH as t, aG as e, aD as n, aO as r, aQ as T, aA as m, aJ as C, aB as O, aF as f, aI as I, aC as P, aE as d, aB as p, aK as A, aw as N, at as c, au as x, aM as E, aL as F, aN as M, aP as _, av as l, ax as u } from "./index-CIRqJXOw.js";
|
|
2
|
+
export {
|
|
3
|
+
o as Audio,
|
|
4
|
+
i as Caption,
|
|
5
|
+
t as Compositor,
|
|
6
|
+
e as DEFAULT_AUDIO_CONF,
|
|
7
|
+
n as Effect,
|
|
8
|
+
r as GL_EFFECT_OPTIONS,
|
|
9
|
+
T as GL_TRANSITION_OPTIONS,
|
|
10
|
+
m as Image,
|
|
11
|
+
C as Log,
|
|
12
|
+
O as MP4Clip,
|
|
13
|
+
f as Placeholder,
|
|
14
|
+
I as Studio,
|
|
15
|
+
P as Text,
|
|
16
|
+
d as Transition,
|
|
17
|
+
p as Video,
|
|
18
|
+
A as clipToJSON,
|
|
19
|
+
N as createChromakey,
|
|
20
|
+
c as fastConcatMP4,
|
|
21
|
+
x as fixFMP4Duration,
|
|
22
|
+
E as fontManager,
|
|
23
|
+
F as jsonToClip,
|
|
24
|
+
M as makeEffect,
|
|
25
|
+
_ as makeTransition,
|
|
26
|
+
l as mixinMP4AndAudio,
|
|
27
|
+
u as renderTxt2ImgBitmap
|
|
28
|
+
};
|