ffmpeg는 스트림과 일치하지 않습니다


0

유창한 ffmpeg 작업으로 복잡한 필터를 만들려고하는데 오류가 발생합니다.

필터 그래프 설명의 스트림 지정자 'pts'[0 : v] setpts = 0.3333333333333333 * PTS [pts]; [pts] crop = out_w = 3381.4186868767238 : out_h = 1728 : x = 0 : y = 0 [left]; [pts] crop = out_w = 74.58131312327646 : out_h = 1728 : x = 3381.4186868767238 : y = 0 [right]; [left] [right] hstack = inputs = 2 [orientated]; [1 : v] scale = 3456 : 1728 [hs1]; [ hs1] colorkey = 0x00ff00 : 0.8 : 0.1 [hs1x]; [orientated] [hs1x] overlay [out]는 스트림과 일치하지 않습니다.

이것이 내가 필터를 만들려고하는 방법입니다.

     const filter = []

        let init = '[0:v]' 

        if(node.video.playBackRate){

          filter.push({filter: 'setpts',options: 1/node.video.playBackRate+'*PTS', inputs: init, outputs: '[pts]'})
          init = '[pts]' 
        }

        if(node.scene && node.scene.cameraDefault){
          const theta = JSON.parse(node.scene.cameraDefault).rotationY
          const per = height * (theta/180)
          const left = height + per
          const right = height - per

          filter.push({filter: 'crop',options: {out_w: left, out_h: height, x: 0, y: 0}, inputs: init, outputs: '[left]'})
          filter.push({filter: 'crop',options: {out_w: right, out_h: height, x: left, y: 0}, inputs: init, outputs: '[right]'})

          filter.push({filter: 'hstack',options: {inputs : 2}, inputs: ['[left]','[right]'], outputs: '[orientated]'})
          init = '[orientated]'
        }  

        if(node.hotspots){

          const overlays = [init]

          node.hotspots.forEach((hotspot, index) => {
            if(hotspot.render){

              const options = {}

              if(hotspot.startTime)
                options['-ss'] = hotspot.startTime

              if(hotspot.endTime)
                options['-t'] = hotspot.endTime - (hotspot.startTime || 0)

              node.ffmpeg.addInput(dir + '/' + hotspot.render)//.withInputOptions(options)

              filter.push({filter: 'scale', options: `${width}:${height}`, inputs: `[${index + 1}:v]`, outputs: `[hs${index+1}]`})
              filter.push({filter: 'colorkey', options: '0x00ff00:0.8:0.1', inputs: `[hs${index+1}]`, outputs: `[hs${index+1}x]`})
              overlays.push(`[hs${index+1}x]`)
            }
          })

          filter.push({filter: 'overlay', inputs: overlays, outputs: '[out]'})
        }

        node.ffmpeg.complexFilter(filter, '[out]')

내가 어디로 잘못 가고 있니?

오른손 자르기 필터라고 가정합니다. 어떻게 든 동일한 입력으로 해당 필터를 실행해야합니다.

답변:


0

fluent-ffmpeg의 구문을 모르지만 문제를 식별 할 수 있습니다. 필터 그래프 내에서 생성 된 필터 출력을 재사용 할 수 없습니다. 필요한 방법은 출력을 분할하는 것이므로 필터 그래프의 초기 부분은 다음과 같습니다.

[0:v]setpts=0.3333333333333333*PTS,split=2[pts1][pts2];
[pts1]crop=out_w=3381.4186868767238:out_h=1728:x=0:y=0[left];
[pts2]crop=out_w=74.58131312327646:out_h=1728:x=3381.4186868767238:y=0[right];
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.