go-mkvparse
go-mkvparse copied to clipboard
Fast Matroska parser in Go
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...
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...