vs --info 和 ffmpeg 拆成 ```ts import { promisify } from 'node:util' import { exec as _exec } from 'node:child_process' const exec = promisify(_exec) const { stdout, stderr } = await exec('your-command --args', { encoding: 'utf8' }) console.log(stdout, stderr) ```