KO
|
EN
gitlite — search
Search
#python
#react
#javascript
#nodejs
#golang
#go
#java
#flutter
#android
#flask
#machine-learning
#windows
go-matroska
★ 40
Open GitHub ↗
Golang: Matroska and WebM Format
Download README (.md)
Explore Similar Repositories
ChapSnap
:
Resync Chapters by snapping them to Scene Changes
pymplschapters
:
Extract chapters from a Blu-ray .mpls to a Matroska recognized XML file
node-matroska
:
Matroska library written for nodejs
aeyae
:
apprenticevideo (video player), aeyae remux (video remuxer), yaetv (digital video recorder), yamka (matroska format toolkit), yathe (legacy code for 3D geometry transforms, bezier curves, spline curves, and UI abstraction layers)
An_Archivists_Guide_To_Matroska
:
No description available.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
go-matroska
?
Download (.md)
# Golang implementation of Matroska and WebM media container formats [](https://travis-ci.org/pixelbender/go-matroska) [](https://coveralls.io/github/pixelbender/go-matroska?branch=master) [](https://goreportcard.com/report/github.com/pixelbender/go-matroska) [](https://godoc.org/github.com/pixelbender/go-matroska) ## Installation ```sh go get github.com/pixelbender/go-matroska/... ``` ## Usage ```go import ( "os" "fmt" "github.com/pixelbender/go-matroska/matroska" ) func main() { doc, err := matroska.Decode("example.mkv") if err != nil { fmt.Println(err) return } fmt.Println(doc.Segment.Info[0].Duration) } ``` ## Specifications - [Matroska Media Container - Specifications](https://matroska.org/technical/specs/index.html) - [WebM Container - Guidelines](https://www.webmproject.org/docs/container/)