{"id":41718314,"url":"https://github.com/coding-socks/matroska","last_synced_at":"2026-01-24T22:23:47.916Z","repository":{"id":144346465,"uuid":"406636244","full_name":"coding-socks/matroska","owner":"coding-socks","description":"A Matroska parser written in Go.","archived":false,"fork":false,"pushed_at":"2025-04-28T11:21:02.000Z","size":272,"stargazers_count":3,"open_issues_count":4,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-28T11:41:51.899Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/coding-socks.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2021-09-15T06:15:36.000Z","updated_at":"2025-04-28T11:21:05.000Z","dependencies_parsed_at":"2024-01-28T23:24:07.724Z","dependency_job_id":"c54cb495-1d0b-42ad-a487-dbe58866a9c1","html_url":"https://github.com/coding-socks/matroska","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/coding-socks/matroska","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coding-socks%2Fmatroska","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coding-socks%2Fmatroska/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coding-socks%2Fmatroska/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coding-socks%2Fmatroska/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/coding-socks","download_url":"https://codeload.github.com/coding-socks/matroska/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coding-socks%2Fmatroska/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28738658,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T22:12:27.248Z","status":"ssl_error","status_checked_at":"2026-01-24T22:12:10.529Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-24T22:23:44.706Z","updated_at":"2026-01-24T22:23:47.909Z","avatar_url":"https://github.com/coding-socks.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Matroska\n\nA Matroska parser written in Go.\n\n- [Introduction](#introduction)\n- [Production readiness](#production-readiness)\n- [Documents](#documents)\n- [Similar libraries](#similar-libraries)\n\n## Introduction\n\n\u003e The Matroska Multimedia Container is a free and open container format, a file format that can hold an unlimited number of video, audio, picture, or subtitle tracks in one file.\n\nSource: https://en.wikipedia.org/wiki/Matroska\n\nThis library is based on the version of [RFC 9559][rfc9559] and the 10th iteration of [draft-ietf-cellar-codec][draft-ietf-cellar-codec-14]. None of these documents reached [\"Internet Standard\"](https://datatracker.ietf.org/html/rfc2026#section-4.1.3) status yet.\n\n- RFC 9559 is still a [Proposed Standard](https://datatracker.ietf.org/doc/html/rfc2026#section-4.1.1)\n- draft-ietf-cellar-codec is still an [Internet-Draft](https://datatracker.ietf.org/html/rfc2026#section-2.2).\n\nThe goal of this project is to create an implementation based on these documents and during the implementation provide feedback.\n\n## Production readiness\n\n**This project is still in alpha phase.** In this stage the public API can change between days.\n\nBeta version will be considered when the feature set covers most of the documents the implementation is based on, and the public API is reached a mature state.\n\nStable version will be considered only if enough positive feedback is gathered to lock the public API and all document the implementation is based on became [\"Internet Standard\"](https://datatracker.ietf.org/html/rfc2026#section-4.1.3).\n\n## Documents\n\n### Official sites\n\n- [libEBML](http://matroska-org.github.io/libebml/)\n- [EBML Specification](https://matroska-org.github.io/libebml/specs.html)\n- [Matroska](https://www.matroska.org/index.html)\n- [Matroska Element Specification](https://matroska.org/technical/elements.html)\n- [WebM](https://www.webmproject.org/)\n- [WebM Container Guidelines](https://www.webmproject.org/docs/container/)\n\nHuge thanks to the [Matroska.org](https://www.matroska.org/) for their work.\n\n### IETF Documents\n\n- [RFC 9559: Matroska Media Container Format Specification][rfc9559]\n- [draft-ietf-cellar-codec-14: Matroska Media Container Codec Specifications][draft-ietf-cellar-codec-14]\n\nHuge thanks to the [IETF CELLAR Working Group](https://datatracker.ietf.org/wg/cellar/charter/) for their work.\n\n## Inspiration\n\nInspiration for the implementation comes from the following places:\n\n- https://pkg.go.dev/database/sql#Drivers\n- https://pkg.go.dev/database/sql#Register\n- https://pkg.go.dev/encoding/json#Decoder\n- https://pkg.go.dev/golang.org/x/image/vp8#Decoder\n\n## Similar libraries\n\nLast updated: 2020-02-18\n\n| URL                                                               | Status                      |\n|-------------------------------------------------------------------|-----------------------------|\n| https://github.com/at-wat/ebml-go                                 | In active development       |\n| https://github.com/ebml-go/ebml + https://github.com/ebml-go/webm | Last updated on 25 Sep 2016 |\n| https://github.com/ehmry/go-ebml                                  | Archived                    |\n| https://github.com/jacereda/ebml                                  | Last updated on 10 Jan 2016 |\n| https://github.com/mediocregopher/ebmlstream                      | Last updated on 15 Dec 2014 |\n| https://github.com/pankrator/ebml-parser                          | Last updated on 24 Jun 2020 |\n| https://github.com/pixelbender/go-matroska                        | Last updated on 29 Oct 2018 |\n| https://github.com/pubblic/ebml                                   | Last updated on 12 Dec 2018 |\n| https://github.com/quadrifoglio/go-mkv                            | Last updated on 20 Jun 2018 |\n| https://github.com/rrerolle/ebml-go                               | Last updated on 1 Dec 2012  |\n| https://github.com/remko/go-mkvparse                              | Last updated on 14 Jun 2020 |\n| https://github.com/tpjg/ebml-go                                   | Last updated on 1 Dec 2012  |\n\n[rfc9559]: https://datatracker.ietf.org/doc/html/rfc9559\n[draft-ietf-cellar-codec-14]: https://datatracker.ietf.org/doc/html/draft-ietf-cellar-codec-14\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoding-socks%2Fmatroska","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcoding-socks%2Fmatroska","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoding-socks%2Fmatroska/lists"}