backdoor? nah more like easier access

This commit is contained in:
2026-07-01 15:29:34 +02:00
parent bbddf10438
commit 6b7f8c43d9
9 changed files with 49 additions and 34 deletions
+1 -3
View File
@@ -1,6 +1,6 @@
const { spawn } = require('child_process');
function checkFFmpeg() {
module.exports = function() {
return new Promise((resolve, reject) => {
const checkFFmpegProcess = spawn('ffmpeg', ['-version'], {
stdio: ['ignore', 'ignore', 'ignore'],
@@ -16,5 +16,3 @@ function checkFFmpeg() {
});
});
}
module.exports = checkFFmpeg;