Compare commits

..

No commits in common. "7422f50b7408d86d37ab3bb10acb6d151d2f6d41" and "2dbce04d9974093fdcc8c91857397da20ceea1bb" have entirely different histories.

View file

@ -1,14 +1,14 @@
# mp4
# goMP4
[![release](https://git.martin-riedl.de/golang/mp4/badges/release.svg)](https://git.martin-riedl.de/golang/mp4/tags)
[![pipeline status](https://git.martin-riedl.de/golang/mp4/badges/workflows/build.yml/badge.svg)](https://git.martin-riedl.de/golang/mp4/actions)
[![pipeline status](https://gitlab.com/martinr92/gomp4/badges/main/pipeline.svg)](https://gitlab.com/martinr92/gomp4/commits/main)
[![coverage report](https://gitlab.com/martinr92/gomp4/badges/main/coverage.svg)](https://gitlab.com/martinr92/gomp4/commits/main)
mp4 implementation in golang based on spec ISO/IEC 14496-12:2015
## Parser
```go
parser := mp4.NewParser(file)
parser := gomp4.NewParser(file)
if err := parser.Parse(); err != nil {
panic(err)
}