Skip to content

Commit

Permalink
Add CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
corny committed Nov 14, 2019
1 parent 432deb9 commit 31fa30e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
10 changes: 10 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
jobs:
build:
docker:
- image: circleci/golang:1.13-buster
steps:
- checkout
- run: sudo apt-get install -qq -y libavdevice-dev libavfilter-dev libswscale-dev libavcodec-dev libavformat-dev libswresample-dev libavutil-dev
- run: go get -v -t -d ./...
- run: go test -v ./...
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Golang binding for FFmpeg
A comprehensive binding to the ffmpeg video/audio manipulation library.

[![GoDoc](https://godoc.org/github.com/giorgisio/goav?status.svg)](https://godoc.org/github.com/giorgisio/goav)
[![CircleCI](https://circleci.com/gh/giorgisio/goav/tree/master.svg?style=shield)](https://circleci.com/gh/giorgisio/goav/tree/master)


## Usage

Expand Down Expand Up @@ -66,12 +68,12 @@ export FFMPEG_ROOT=$HOME/ffmpeg
export CGO_LDFLAGS="-L$FFMPEG_ROOT/lib/ -lavcodec -lavformat -lavutil -lswscale -lswresample -lavdevice -lavfilter"
export CGO_CFLAGS="-I$FFMPEG_ROOT/include"
export LD_LIBRARY_PATH=$HOME/ffmpeg/lib
```
```

```
```
go get github.com/giorgisio/goav
```
```

## More Examples

Expand Down

0 comments on commit 31fa30e

Please sign in to comment.