2017-02-18 15 views
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

答えて

0

あなたが何のファイルまたはディレクトリのエラーを得ませんでした。 Windowsプラットフォーム上では、それが働いコード

var os = require('os'); // add at top 

var ffmpeg = require('fluent-ffmpeg'); 

    var proc = new ffmpeg({ source: 'C:/Users/Public/Videos/Sample 

    Videos/Wildlife.wmv', nolog: true }) 

    if(os.platform() === 'win32'){ 
     proc.setFfmpegPath("C:\\nodejs\\ffmpeg.exe") 
    }else{ 
     proc.setFfmpegPath("C:\\nodejs\\ffmpeg") // change it for linux 
    } 


    .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'); 
+0

以下

てみてください絶対パスを必要とします! ありがとうございます。 –

関連する問題