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");
|
2022-07-28 17:03:17 +01:00
|
|
|
const packageJson = loadJson("./package.json");
|
2022-10-09 18:44:00 +01:00
|
|
|
const servicesConfigJson = loadJson("./src/modules/processing/servicesConfig.json");
|
2022-07-17 12:08:49 +01:00
|
|
|
|
|
|
|
export const
|
2022-08-23 15:43:56 +01:00
|
|
|
services = servicesConfigJson.config,
|
|
|
|
audioIgnore = servicesConfigJson.audioIgnore,
|
2022-08-16 08:14:19 +01:00
|
|
|
appName = packageJson.name,
|
|
|
|
version = packageJson.version,
|
|
|
|
streamLifespan = config.streamLifespan,
|
|
|
|
maxVideoDuration = config.maxVideoDuration,
|
|
|
|
genericUserAgent = config.genericUserAgent,
|
|
|
|
repo = packageJson["bugs"]["url"].replace('/issues', ''),
|
|
|
|
authorInfo = config.authorInfo,
|
|
|
|
donations = config.donations,
|
|
|
|
ffmpegArgs = config.ffmpegArgs,
|
2022-10-27 17:27:20 +01:00
|
|
|
supportedAudio = config.supportedAudio,
|
|
|
|
celebrations = config.celebrations
|