Remove logging

This commit is contained in:
HaveAGitGat 2022-05-22 13:25:39 +01:00
parent 96de8feba7
commit bad596f3e6

View file

@ -440,15 +440,10 @@ function buildVideoConfiguration(inputs, file, logger) {
/* Determine tiered bitrate variables */
var tier = tiered[file.video_resolution];
console.log(file.video_resolution);
console.log(tier);
bitratecheck = parseInt(tier["bitrate"]);
if (bitrateprobe !== null && bitrateprobe < bitratecheck) {
console.log('here1')
bitratetarget = parseInt((bitrateprobe * inputs.target_pct_reduction) / 1000);
} else {
console.log('here2')
bitratetarget = parseInt(tier["bitrate"] / 1000);
}
bitratemax = bitratetarget + tier["max_increase"];