go-mkvparse icon indicating copy to clipboard operation
go-mkvparse copied to clipboard

Fast Matroska parser in Go

Results 5 go-mkvparse issues
Sort by recently updated
recently updated
newest added

Please, provide some examples of how to extract tracks using this lib.

I just programmed an app which ready all audios from a MKV, formats it and writes it back, But it does have a lot of dependencies. Since this programm does...

The current push parser is convenient for metadata extraction and streaming. However, for playing MKV files (including seeking etc.), a resumable pull-based parser is necessary. I don't know if it...

enhancement

Change the following methods on the Handler interface: HandleBinary(ElementID, []byte, ElementInfo) error HandleString(ElementID, string, ElementInfo) error to HandleBinary(ElementID, io.Reader, ElementInfo) error HandleString(ElementID, io.Reader, ElementInfo) error This allows handlers to only...

proposal

Add fuzz tests to check for crashes etc.

help wanted
good first issue