()
| 34 | } |
| 35 | |
| 36 | async function ffprobeVersion() { |
| 37 | const ffprobe = await getFfprobe(); |
| 38 | const childProcess = await execute(ffprobe.path, ["-version"]); |
| 39 | |
| 40 | logger.log("ffprobe -version", { |
| 41 | output: childProcess.stdout.split("\n")[0], |
| 42 | }); |
| 43 | } |
| 44 | |
| 45 | async function ffmpegVersion() { |
| 46 | logger.log("ffmpegInstaller", ffmpeg); |
no test coverage detected
searching dependent graphs…