adjust -cq shit due to file size

This commit is contained in:
matty 2024-03-10 17:52:02 -04:00
parent 29d44fc31a
commit 2bab551803

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 19`,
`-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 21`
`-cq 22` // increase for accessibility
]
};
logger.info(`EncoderOptions: ${JSON.stringify(options)}`);