()
| 43 | } |
| 44 | |
| 45 | async function ffmpegVersion() { |
| 46 | logger.log("ffmpegInstaller", ffmpeg); |
| 47 | |
| 48 | const childProcess = await execute(ffmpeg.path, ["-version"]); |
| 49 | |
| 50 | logger.log("ffmpeg -version", { |
| 51 | output: childProcess.stdout.split("\n")[0], |
| 52 | }); |
| 53 | } |
| 54 | |
| 55 | export const ffprobeInstaller = task({ |
| 56 | id: "ffprobe-installer", |
no test coverage detected
searching dependent graphs…