我一直在寻找一种从 NodeJS 同时编码多个视频的方法,但我还没有找到一个好的解决方案。
使用 FFMPEG 我从来没有得到 100% 的无故障响应。总是有一个坏的视频。
操作系统:Ubuntu 12.04
size = "#{options.maxWidth}x#{options.maxHeight}"
proc = new ffmpeg({
source: options.input
}).withVideoCodec(options.encoder).withSize(size).keepPixelAspect(true).withStrictExperimental()
proc.onProgress (progress) ->
console.log "progress: " + progress.percent
proc.saveToFile options.output, (stdout, stderr) ->
console.log "file has been converted succesfully"