diff --git a/README.md b/README.md index b2223ac3..6079c1fd 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,7 @@ Since this will change the size of boxes, it is important that this function is before `Encode` on any parent box of `Traf`. In particular, this method is called automatically when running `Fragment.Encode`. -Another value which is automatically set by `Moof.Encode` is `MoofBox.Traf.Trun.DataOffset`. +Another value which is automatically set by `Moof.Encode` is `MoofBox.Traf.Trun.DataOffset`. This value is the address of the first media sample relative to the start of the `MoofBox` start. It therefore depends on the size of `MoofBox` and is unknown until all values are in place so that it can be calculated. It is set to `MoofBox.Size()+8`. @@ -121,7 +121,7 @@ Some simple command line tools are available in `cmd`. 2. `mp4ff-info` prints a tree of the box hierarchy of an mp4 file with information of the boxes. The level of detail can be increased with the option `-l`, like `-l all:1` for all boxes or `-l trun:1,stss:1` for specific boxes. -You can install them by going to their respective directory and run `go install`. +You can install them by going to their respective directory and run `go install .`. ## Example code diff --git a/Versions.md b/Versions.md index cd5f9a2c..9b6e52e1 100644 --- a/Versions.md +++ b/Versions.md @@ -2,6 +2,7 @@ | Version | Highlight | | ------ | --------- | +| 0.16.1 | fix: isNonSync flag declaration and use sdtp values in segmenter example | | 0.16.0 | New mp4ff-info tool. Many new boxes incl. encryption boxes and sdtp. ADTS support. Test improvements with golden files | | 0.15.0 | Support for multiple SPS and more explicit NALU types for AVC | | 0.14.0 | Added functions to use Annex B byte stream for AVC/H.264 | diff --git a/cmd/doc.go b/cmd/doc.go index e3c1be39..2df93588 100644 --- a/cmd/doc.go +++ b/cmd/doc.go @@ -3,8 +3,7 @@ Package cmd - command line tools built using mp4ff. Install like - go install github.com/edgeware/mp4ff/cmd/mp4ff-info - go install github.com/edgeware/mp4ff/cmd/mp4ff-pslister + go install ./... */ package cmd