-
Notifications
You must be signed in to change notification settings - Fork 35
/
index.js
37 lines (35 loc) · 930 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import WebVideoCreator from "./api/WebVideoCreator.js";
import SingleVideo from "./api/SingleVideo.js";
import MultiVideo from "./api/MultiVideo.js";
import ChunkVideo from "./api/ChunkVideo.js";
import examples from "./examples/index.js";
import * as core from "./core/index.js";
import * as entity from "./entity/index.js";
import logger from "./lib/logger.js";
import util from "./lib/util.js";
import { VIDEO_ENCODER, AUDIO_ENCODER, TRANSITION } from "./lib/const.js";
export default WebVideoCreator;
export {
/** 视频编码器 */
VIDEO_ENCODER,
/** 音频编码器 */
AUDIO_ENCODER,
/** 转场效果 */
TRANSITION,
/** 单幕视频 */
SingleVideo,
/** 多幕视频 */
MultiVideo,
/** 分块视频 */
ChunkVideo,
/** 示例 */
examples,
/** 核心类 */
core,
/** 实体类 */
entity,
/** 日志类 */
logger,
/** 工具类 */
util
};