问题:视频无法成功与VLC播放器,Google Chrome浏览器一起播放时,无法与Windows Media Player播放。
以下是我正在使用的详细信息: 1. npm“ fluent-ffmpeg”版本:节点应用程序中的“ 2.1.2”。 2.节点版本8.11.3。 3.从http://ffmpeg.zeranoe.com/builds下载的FFmpeg版本:20161230-6993bb4。 4.将ffmpeg.exe的路径设置为系统环境中的路径。 5.这是示例代码。
let command = new ffmpeg({ source: 'rtsp://192.168.2.198/cam0_1' }), fileName = 'abc.mp4';
// Record video from camera.
command.inputFPS(20)
.duration(10)
.on('start', function () {
console.log('Recording started.', ('File: ' + fileName));
})
.on('end', function () {
console.log('Recording completed.', ('File: ' + fileName));
})
.on('error', function (err, stdout, stderr) {
console.log('An error occurs while recording.', ('File: ' + fileName), err.message, stdout, stderr);
})
.format('mp4')
.save(fileName);