Renamed stream exclude option.

This commit is contained in:
DebaucheryLibrarian
2026-02-08 03:36:16 +01:00
parent a6014a5d1a
commit 5bbfbc90a8
2 changed files with 2 additions and 2 deletions

View File

@@ -418,9 +418,9 @@ module.exports = {
attempts: 2, attempts: 2,
fetchStreams: true, fetchStreams: true,
streamConcurrency: 2, // max number of video streams (m3u8 etc.) to fetch and process at once streamConcurrency: 2, // max number of video streams (m3u8 etc.) to fetch and process at once
streamExcludeHostnames: [], // resource hogs
flushOrphaned: true, flushOrphaned: true,
flushWindow: 1000, flushWindow: 1000,
excludeStreamHostnames: [], // resource hogs
}, },
titleSlugLength: 50, titleSlugLength: 50,
}; };

View File

@@ -674,7 +674,7 @@ streamQueue.define('fetchStreamSource', async ({ source, tempFileTarget, hashStr
const { hostname } = new URL(source.stream); const { hostname } = new URL(source.stream);
if (config.media.excludeStreamHostnames.includes(hostname)) { if (config.media.streamExcludeHostnames.includes(hostname)) {
throw new Error(`Stream source hostname ${hostname} is excluded by config`); throw new Error(`Stream source hostname ${hostname} is excluded by config`);
} }