Harbeth icon indicating copy to clipboard operation
Harbeth copied to clipboard

Rotate video on export block app

Open BRIKSING opened this issue 1 week ago • 2 comments

Hello! When I try to use this code (rotate video right) when fiter exporting video by Kakapos my app blocked export session

let filtering = FilterInstruction { buffer, time, callback in
      let uiimage = UIImage(cgImage: buffer.c7.toCGImage()!, scale: 1, orientation: orientation!)
      let dest = HarbethIO(element: uiimage, filters: self.filters)

      return dest.transmitOutput { image in
            callback(image.c7.toPixelBuffer() ?? buffer)
      }
}

But on simulator (iPhone 15 pro) it's works great

BRIKSING avatar Jun 21 '24 18:06 BRIKSING