removed some debug console outputs

This commit is contained in:
2025-11-12 20:03:09 +01:00
parent fbd5368223
commit 6d9c94c685
-3
View File
@@ -10,8 +10,6 @@ manualUploadBtn.addEventListener('click', () => {
}); });
//function to check if one checkbox is at least klicked //function to check if one checkbox is at least klicked
function checkBoxes() {
console.log("fuck");
try { try {
const checkboxes = document.querySelectorAll('input[name="docFormat"]'); const checkboxes = document.querySelectorAll('input[name="docFormat"]');
@@ -27,7 +25,6 @@ function checkBoxes() {
//Code to submit the video //Code to submit the video
var pathTest = fileName.textContent + ""; var pathTest = fileName.textContent + "";
if(pathTest.endsWith(".mp4") || holdy.endsWith(".mov") || holdy.endsWith(".avi") || holdy.endsWith( ".mkv")){ if(pathTest.endsWith(".mp4") || holdy.endsWith(".mov") || holdy.endsWith(".avi") || holdy.endsWith( ".mkv")){
console.log("fuck 2");
window.extractor.extract({inputVideoPath: pathTest, outputType:"wav"}) window.extractor.extract({inputVideoPath: pathTest, outputType:"wav"})
} }
} else { } else {