【问题标题】:ffmpeg exited with code 1: Error reinitializing filters! Failed to inject frame into filter network: Invalid argumentffmpeg 以代码 1 退出:重新初始化过滤器时出错!无法将帧注入过滤器网络:参数无效
【发布时间】:2021-12-13 17:36:49
【问题描述】:

使用 video show npm 我正在从多个图像创建视频。最初有一个 问题但后来我下载并安装了ffmpeg。 现在发生了另一个错误。提前感谢每一个人。这是我的代码。

   //create a video from multiple images 

var secondsToShowEachImage = 3
var finalVideoPath = '/outputImages/newvideo2.mp4'

// setup videoshow options
var videoOptions = {
  fps: 24,
  transition: false,
  videoBitrate: 1024 ,
  videoCodec: 'libx264', 
  size: '640x640',
  outputOptions: ['-pix_fmt yuv420p'],
  format: 'mp4' 
}
let path1= '/InputImages/abc.jpg';
let path2 = '/InputImages/xy.jpg'
let path3 = '/InputImages/ab.jpg'

// array of images to make the 'videoshow' from
var images = [
  {path: path1, loop: secondsToShowEachImage}, 
  {path: path2, loop: secondsToShowEachImage}
]
console.log('working --->')
 videoshow(images, videoOptions)
.save(finalVideoPath)
// console.log('hello world')
.on('start', function (command) { 

  console.log('encoding ' + finalVideoPath + ' with command ' + command) 
})
.on('error', function (err) {
   console.log('err' , err)
//   return Promise.reject(new Error(err)) 
})
.on('end', function (output) {
  // do stuff here when done
})

错误是

err Error: ffmpeg exited with code 1: Error reinitializing filters!
Failed to inject frame into filter network: Invalid argument
Error while processing the decoded data for stream #1:0
Conversion failed!

    at ChildProcess.<anonymous> (E:\Video-Editor-Practice\Nodees6video-editor\NewVideoEditor\node_modules\fluent-ffmpeg\lib\processor.js:182:22)

【问题讨论】:

    标签: javascript node.js ffmpeg video-processing


    【解决方案1】:
    This issue is due to images sizes. Resize all images first then try again 
    use this below code 
    use this code for all images of video.
    const image = await Jimp.read(path);  
    image.resize(ResizeImageWidth , ResizeImageHeight )
    .write(outputImagepath);
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2019-04-27
      • 1970-01-01
      • 2022-01-03
      • 2018-08-31
      • 1970-01-01
      • 2020-10-07
      相关资源
      最近更新 更多