fuc-new/doc/node_modules/vuepress-plugin-md-power/lib/client/options.js
hellcat 6adbc04d4b 1
2025-10-03 17:17:08 +08:00

21 lines
802 B
JavaScript

//#region src/client/options.ts
const pluginOptions = __MD_POWER_INJECT_OPTIONS__;
const installed = {
dashjs: __MD_POWER_DASHJS_INSTALLED__,
hlsjs: __MD_POWER_HLSJS_INSTALLED__,
mpegtsjs: __MD_POWER_MPEGTSJS_INSTALLED__
};
const ART_PLAYER_SUPPORTED_VIDEO_TYPES = [
"mp4",
"mp3",
"webm",
"ogg"
];
if (installed.dashjs) ART_PLAYER_SUPPORTED_VIDEO_TYPES.push("mpd", "dash");
if (installed.hlsjs) ART_PLAYER_SUPPORTED_VIDEO_TYPES.push("m3u8", "hls");
if (installed.mpegtsjs) ART_PLAYER_SUPPORTED_VIDEO_TYPES.push("ts", "flv");
const INJECT_TIMELINE_KEY = Symbol(__VUEPRESS_DEV__ ? "timeline" : "");
const INJECT_COLLAPSE_KEY = Symbol(__VUEPRESS_DEV__ ? "collapse" : "");
//#endregion
export { ART_PLAYER_SUPPORTED_VIDEO_TYPES, INJECT_COLLAPSE_KEY, INJECT_TIMELINE_KEY, installed, pluginOptions };