Skip to content

Commit 424bdb1

Browse files
committed
feat: update document references
1 parent 501ba88 commit 424bdb1

5 files changed

Lines changed: 467 additions & 442 deletions

File tree

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ A Matroska parser written in Go.
1313
1414
Source: https://en.wikipedia.org/wiki/Matroska
1515

16-
This library is based on the 14th iteration of [draft-ietf-cellar-matroska][draft-ietf-cellar-matroska-14] and the 10th iteration of [draft-ietf-cellar-codec][draft-ietf-cellar-codec-10]. None of these documents reached ["Internet Standard"](https://tools.ietf.org/html/rfc2026#section-4.1.3) status yet.
16+
This 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.
1717

18-
- draft-ietf-cellar-matroska is still an [Internet-Draft](https://tools.ietf.org/html/rfc2026#section-2.2).
19-
- draft-ietf-cellar-codec is still an [Internet-Draft](https://tools.ietf.org/html/rfc2026#section-2.2).
18+
- RFC 9559 is still a [Proposed Standard](https://datatracker.ietf.org/doc/html/rfc2026#section-4.1.1)
19+
- draft-ietf-cellar-codec is still an [Internet-Draft](https://datatracker.ietf.org/html/rfc2026#section-2.2).
2020

2121
The goal of this project is to create an implementation based on these documents and during the implementation provide feedback.
2222

@@ -26,7 +26,7 @@ The goal of this project is to create an implementation based on these documents
2626

2727
Beta 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.
2828

29-
Stable 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://tools.ietf.org/html/rfc2026#section-4.1.3).
29+
Stable 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).
3030

3131
## Documents
3232

@@ -43,8 +43,8 @@ Huge thanks to the [Matroska.org](https://www.matroska.org/) for their work.
4343

4444
### IETF Documents
4545

46-
- [draft-ietf-cellar-matroska-14: Matroska Media Container Format Specifications][draft-ietf-cellar-matroska-14]
47-
- [draft-ietf-cellar-codec-10: Matroska Media Container Codec Specifications][draft-ietf-cellar-codec-10]
46+
- [RFC 9559: Matroska Media Container Format Specification][rfc9559]
47+
- [draft-ietf-cellar-codec-14: Matroska Media Container Codec Specifications][draft-ietf-cellar-codec-14]
4848

4949
Huge thanks to the [IETF CELLAR Working Group](https://datatracker.ietf.org/wg/cellar/charter/) for their work.
5050

@@ -61,20 +61,20 @@ Inspiration for the implementation comes from the following places:
6161

6262
Last updated: 2020-02-18
6363

64-
| URL | Status |
65-
|-------------------------------------------------------------------| ----------- |
66-
| https://github.com/at-wat/ebml-go | In active development |
64+
| URL | Status |
65+
|-------------------------------------------------------------------|-----------------------------|
66+
| https://github.com/at-wat/ebml-go | In active development |
6767
| https://github.com/ebml-go/ebml + https://github.com/ebml-go/webm | Last updated on 25 Sep 2016 |
68-
| https://github.com/ehmry/go-ebml | Archived |
68+
| https://github.com/ehmry/go-ebml | Archived |
6969
| https://github.com/jacereda/ebml | Last updated on 10 Jan 2016 |
7070
| https://github.com/mediocregopher/ebmlstream | Last updated on 15 Dec 2014 |
7171
| https://github.com/pankrator/ebml-parser | Last updated on 24 Jun 2020 |
7272
| https://github.com/pixelbender/go-matroska | Last updated on 29 Oct 2018 |
7373
| https://github.com/pubblic/ebml | Last updated on 12 Dec 2018 |
7474
| https://github.com/quadrifoglio/go-mkv | Last updated on 20 Jun 2018 |
75-
| https://github.com/rrerolle/ebml-go | Last updated on 1 Dec 2012 |
75+
| https://github.com/rrerolle/ebml-go | Last updated on 1 Dec 2012 |
7676
| https://github.com/remko/go-mkvparse | Last updated on 14 Jun 2020 |
77-
| https://github.com/tpjg/ebml-go | Last updated on 1 Dec 2012 |
77+
| https://github.com/tpjg/ebml-go | Last updated on 1 Dec 2012 |
7878

79-
[draft-ietf-cellar-matroska-14]: https://www.ietf.org/archive/id/draft-ietf-cellar-matroska-14.html
80-
[draft-ietf-cellar-codec-10]: https://www.ietf.org/archive/id/draft-ietf-cellar-codec-10.html
79+
[rfc9559]: https://datatracker.ietf.org/doc/html/rfc9559
80+
[draft-ietf-cellar-codec-14]: https://datatracker.ietf.org/doc/html/draft-ietf-cellar-codec-14

cmd/mkc/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ A CLI tool to inspect Matroska files. The tool is written in Go.
1010

1111
`mkc` stands for "Matroska Command". The name of the command follows the logic of the extension naming used for Matroska files. The most used extensions are `mkv` "Matroska Video", `mka` "Matroska Audio", and `mks` "Matroska Subtitle".
1212

13-
The library used by this command is based on the 7th iteration of [draft-ietf-cellar-matroska][draft-ietf-cellar-matroska-07] and the 6th iteration of [draft-ietf-cellar-codec][draft-ietf-cellar-codec-06]. None of these documents reached ["Internet Standard"](https://tools.ietf.org/html/rfc2026#section-4.1.3) status yet.
13+
This 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.
1414

15-
- draft-ietf-cellar-matroska is still an [Internet-Draft](https://tools.ietf.org/html/rfc2026#section-2.2).
16-
- draft-ietf-cellar-codec is still an [Internet-Draft](https://tools.ietf.org/html/rfc2026#section-2.2).
15+
- RFC 9559 is still a [Proposed Standard](https://datatracker.ietf.org/doc/html/rfc2026#section-4.1.1)
16+
- draft-ietf-cellar-codec is still an [Internet-Draft](https://datatracker.ietf.org/html/rfc2026#section-2.2).
1717

1818
The goal of this command line tool is to see how one would use the libraries provided by [github.com/coding-socks/matroska](https://github.com/coding-socks/matroska) and [github.com/coding-socks/ebml](https://github.com/coding-socks/ebml).
1919

@@ -41,11 +41,11 @@ Huge thanks to the [Matroska.org](https://www.matroska.org/) for their work.
4141
### IETF Documents
4242

4343
- [RFC 8794: Extensible Binary Meta Language][rfc8794]
44-
- [draft-ietf-cellar-matroska-07: Matroska Media Container Format Specifications][draft-ietf-cellar-matroska-07]
45-
- [draft-ietf-cellar-codec-06: Matroska Media Container Codec Specifications][draft-ietf-cellar-codec-06]
44+
- [RFC 9559: Matroska Media Container Format Specification][rfc9559]
45+
- [draft-ietf-cellar-codec-14: Matroska Media Container Codec Specifications][draft-ietf-cellar-codec-14]
4646

4747
Huge thanks to the [IETF CELLAR Working Group](https://datatracker.ietf.org/wg/cellar/charter/) for their work.
4848

4949
[rfc8794]: https://tools.ietf.org/html/rfc8794
50-
[draft-ietf-cellar-matroska-07]: https://www.ietf.org/archive/id/draft-ietf-cellar-matroska-07.html
51-
[draft-ietf-cellar-codec-06]: https://www.ietf.org/archive/id/draft-ietf-cellar-codec-06.html
50+
[rfc9559]: https://datatracker.ietf.org/doc/html/rfc9559
51+
[draft-ietf-cellar-codec-14]: https://datatracker.ietf.org/doc/html/draft-ietf-cellar-codec-14

doctype.go

Lines changed: 15 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)