2022-07-17 12:21:51 +01:00
|
|
|
import loadJson from "./sub/loadJSON.js";
|
2022-07-17 12:08:49 +01:00
|
|
|
const config = loadJson("./src/config.json");
|
|
|
|
|
|
|
|
export const
|
2022-07-24 11:54:05 +01:00
|
|
|
services = loadJson("./src/modules/services/_config.json"),
|
2022-07-17 12:08:49 +01:00
|
|
|
appName = config.appName,
|
|
|
|
version = config.version,
|
|
|
|
streamLifespan = config.streamLifespan,
|
|
|
|
maxVideoDuration = config.maxVideoDuration,
|
|
|
|
genericUserAgent = config.genericUserAgent,
|
|
|
|
repo = config.repo,
|
|
|
|
authorInfo = config.authorInfo,
|
|
|
|
supportedLanguages = config.supportedLanguages,
|
|
|
|
quality = config.quality,
|
|
|
|
internetExplorerRedirect = config.internetExplorerRedirect,
|
|
|
|
donations = config.donations,
|
|
|
|
ffmpegArgs = config.ffmpegArgs
|