├── .github └── workflows │ ├── golangci-lint.yaml │ └── test.yaml ├── .gitignore ├── .golangci.yml ├── Dockerfile ├── LICENSE ├── README.md ├── assets ├── test.avi ├── test.mov ├── test.mp4 ├── test.ts └── test.ts.json ├── example └── example.go ├── ffprobe.go ├── ffprobe_test.go ├── go.mod ├── go.sum ├── probedata.go ├── proc_attr_unix.go ├── proc_attr_windows.go ├── sidedata.go ├── sidedata_test.go └── tags.go /.github/workflows/golangci-lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vansante/go-ffprobe/HEAD/.github/workflows/golangci-lint.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vansante/go-ffprobe/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vansante/go-ffprobe/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vansante/go-ffprobe/HEAD/.golangci.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vansante/go-ffprobe/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vansante/go-ffprobe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vansante/go-ffprobe/HEAD/README.md -------------------------------------------------------------------------------- /assets/test.avi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/test.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vansante/go-ffprobe/HEAD/assets/test.mov -------------------------------------------------------------------------------- /assets/test.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vansante/go-ffprobe/HEAD/assets/test.mp4 -------------------------------------------------------------------------------- /assets/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vansante/go-ffprobe/HEAD/assets/test.ts -------------------------------------------------------------------------------- /assets/test.ts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vansante/go-ffprobe/HEAD/assets/test.ts.json -------------------------------------------------------------------------------- /example/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vansante/go-ffprobe/HEAD/example/example.go -------------------------------------------------------------------------------- /ffprobe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vansante/go-ffprobe/HEAD/ffprobe.go -------------------------------------------------------------------------------- /ffprobe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vansante/go-ffprobe/HEAD/ffprobe_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module gopkg.in/vansante/go-ffprobe.v2 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /probedata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vansante/go-ffprobe/HEAD/probedata.go -------------------------------------------------------------------------------- /proc_attr_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vansante/go-ffprobe/HEAD/proc_attr_unix.go -------------------------------------------------------------------------------- /proc_attr_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vansante/go-ffprobe/HEAD/proc_attr_windows.go -------------------------------------------------------------------------------- /sidedata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vansante/go-ffprobe/HEAD/sidedata.go -------------------------------------------------------------------------------- /sidedata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vansante/go-ffprobe/HEAD/sidedata_test.go -------------------------------------------------------------------------------- /tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vansante/go-ffprobe/HEAD/tags.go --------------------------------------------------------------------------------