child_process = require('child_process'); json = child_process.execSync('ffprobe -i 1.flv -print_format json -show_frames -show_format -show_streams -v 0'); console.log(json) 有用 回复 wuhuama: 恩 是的就是这样,这样子默认返回值是buffer,因此需要多加一个参数,{encoding:'utf-8'},这...