加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.js 930 Bytes
一键复制 编辑 原始数据 按行查看 历史
Vinlic 提交于 2023-09-30 18:05 . 增加日志暴露
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
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化