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

This commit is contained in:
Martin Riedl 2025-02-23 19:36:38 +01:00
parent e1f7866390
commit 7422f50b74
Signed by: martinr92
GPG key ID: FB68DA65516A804C

View file

@ -1,4 +1,4 @@
# goMP4 # mp4
[![release](https://git.martin-riedl.de/golang/mp4/badges/release.svg)](https://git.martin-riedl.de/golang/mp4/tags) [![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://git.martin-riedl.de/golang/mp4/badges/workflows/build.yml/badge.svg)](https://git.martin-riedl.de/golang/mp4/actions)
@ -8,7 +8,7 @@ mp4 implementation in golang based on spec ISO/IEC 14496-12:2015
## Parser ## Parser
```go ```go
parser := gomp4.NewParser(file) parser := mp4.NewParser(file)
if err := parser.Parse(); err != nil { if err := parser.Parse(); err != nil {
panic(err) panic(err)
} }