video analysis2.0拆分,ffmpeg封装go接口库
zhangmeng
2019-05-13 633ab812c30fa2353800ad6431f41f25993ec6bd
goffmpeg.go
@@ -12,6 +12,31 @@
   "unsafe"
)
const (
   // ScaleFastBilinear SWS_FAST_BILINEAR
   ScaleFastBilinear = 1
   // ScaleBilinear SWS_BILINEAR
   ScaleBilinear = 2
   // ScaleBicubic SWS_BICUBIC
   ScaleBicubic = 4
   // ScaleX SWS_X
   ScaleX = 8
   // ScalePoint SWS_POINT
   ScalePoint = 0x10
   // ScaleArea SWS_AREA
   ScaleArea = 0x20
   // ScaleBicublin SWS_BICUBLIN
   ScaleBicublin = 0x40
   // ScaleGauss SWS_GAUSS
   ScaleGauss = 0x80
   // ScaleSinc SWS_SINC
   ScaleSinc = 0x100
   // ScaleLancZos SWS_LANCZOS
   ScaleLancZos = 0x200
   // ScaleSpline SWS_SPLINE
   ScaleSpline = 0x400
)
var libcffmpeg C.libcffmpeg
// InitFFmpeg init ffmepg
@@ -46,6 +71,17 @@
   }
}
// NewWithScale scale out pic
func NewWithScale(w, h int, flag int) *GoFFMPEG {
   f := C.wrap_fn_create()
   if f != nil {
      C.wrap_fn_scale(f, C.int(w), C.int(h), C.int(flag))
   }
   return &GoFFMPEG{
      ffmpeg: f,
   }
}
// Free free handle
func (h *GoFFMPEG) Free() {
   C.wrap_fn_destroy(h.ffmpeg)