0
私は以下のコードを試しています。ビデオをmp3 node.jsに変換する
var ffmpeg = require('fluent-ffmpeg');
var proc = new ffmpeg({ source: 'C:/Users/Public/Videos/Sample
Videos/Wildlife.wmv', nolog: true })
proc.setFfmpegPath("C:\\nodejs\\ffmpeg")
.toFormat('mp3')
.on('end', function() {
console.log('file has been converted successfully');
})
.on('error', function(err) {
console.log('an error happened: ' + err.message);
})
// save to file <-- the new file I want -->
.saveToFile('C:/Users/Public/Videos/Sample Videos/Wildlife.mp3');
Cいただきました!間違ったコード内の誰もが私を伝えることができます:\ nodejs>ノードが をtest.jsエラーが起こった:スポーンC:\ nodejs \ ffmpegののENOENT
以下
てみてください絶対パスを必要とします! ありがとうございます。 –