mirror of
https://github.com/giorgisio/goav.git
synced 2024-04-21 12:31:56 +00:00
22 lines
675 B
Go
22 lines
675 B
Go
//Use of this source code is governed by a MIT license that can be found in the LICENSE file.
|
|
//Giorgis (habtom@giorgis.io)
|
|
|
|
/*
|
|
Package goav contains golang binding for FFmpeg.
|
|
|
|
A comprehensive binding to the ffmpeg video/audio manipulation library:
|
|
https://www.ffmpeg.org/
|
|
|
|
Contains:
|
|
|
|
libavcodec: encoding/decoding library
|
|
libavfilter: graph-based frame editing library
|
|
libavformat: I/O and muxing/demuxing library
|
|
libavdevice: special devices muxing/demuxing library
|
|
libavutil: common utility library
|
|
libswresample: audio resampling, format conversion and mixing
|
|
libpostproc: post processing library
|
|
libswscale: color conversion and scaling library
|
|
*/
|
|
package goav
|