actually remove -cq shit, it's not really necessary

This commit is contained in:
matty 2024-03-10 17:52:33 -04:00
parent 2bab551803
commit dba92b3043

4
dist/main.js vendored
View File

@ -164,7 +164,7 @@ async function vodBuilder(params) {
`-preset ${pluginSettings.vodQuality}`,
`-b:v${streamSuffix} ${targetBitrate}`,
`-bufsize ${targetBitrate * 2}`,
`-cq 21`, // increased 19 to 21, file size massive
// `-cq 21`, // increased 19 to 21, file size massive
`-profile:v${streamSuffix} high`
]
};
@ -196,7 +196,7 @@ async function liveBuilder(params) {
`-g:v${streamSuffix} ${fps * 2}`,
`-b:v${streamSuffix} ${targetBitrate}`,
`-bufsize ${targetBitrate * 2}`,
`-cq 22` // increase for accessibility
// `-cq 22` // increase for accessibility
]
};
logger.info(`EncoderOptions: ${JSON.stringify(options)}`);