mirror of
https://github.com/imputnet/cobalt.git
synced 2025-01-27 00:41:45 +00:00
6465ac8d6f
closes #62, #66, #75
21 lines
833 B
JavaScript
21 lines
833 B
JavaScript
import loadJson from "./sub/loadJSON.js";
|
|
const config = loadJson("./src/config.json");
|
|
const packageJson = loadJson("./package.json");
|
|
const servicesConfigJson = loadJson("./src/modules/processing/servicesConfig.json");
|
|
|
|
export const
|
|
services = servicesConfigJson.config,
|
|
audioIgnore = servicesConfigJson.audioIgnore,
|
|
appName = packageJson.name,
|
|
version = packageJson.version,
|
|
streamLifespan = config.streamLifespan,
|
|
maxVideoDuration = config.maxVideoDuration,
|
|
maxAudioDuration = config.maxAudioDuration,
|
|
genericUserAgent = config.genericUserAgent,
|
|
repo = packageJson["bugs"]["url"].replace('/issues', ''),
|
|
authorInfo = config.authorInfo,
|
|
donations = config.donations,
|
|
ffmpegArgs = config.ffmpegArgs,
|
|
supportedAudio = config.supportedAudio,
|
|
celebrations = config.celebrations
|