Compare commits

...

2 commits

Author SHA1 Message Date
7422f50b74
docs: renamed gomp4 to mp4
All checks were successful
Build / Checks (push) Successful in 37s
Build / Code Coverage (push) Successful in 1m2s
Build / Build (push) Successful in 35s
2025-02-23 19:36:38 +01:00
e1f7866390
docs: new badges from forgejo 2025-02-23 19:36:24 +01:00

View file

@ -1,14 +1,14 @@
# goMP4
# mp4
[![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)
[![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)
mp4 implementation in golang based on spec ISO/IEC 14496-12:2015
## Parser
```go
parser := gomp4.NewParser(file)
parser := mp4.NewParser(file)
if err := parser.Parse(); err != nil {
panic(err)
}