This MPEG-DASH MPD implementation is meant to include all elements from the MPEG DASH specification (ISO/IEC 23009-1 5'th edition) by starting from the MPD XML schema and auto-generating all data structures. It should also handle namespaces and schemaLocation properly.
It has been enhanced with extra structures from the Common Encryption specification ISO/IEC 23001-7 and proprietary structures and name spaces for some DRM systems.
The XML Schema for MPEG DASH MPD being used is the 5'th edition fetched from the
DASHSchema repo commit 169fbd3
.
It was fed to a forked modified version of xgen.
The fork modified xgen
so that it could deal with DOCTYPE,
and also removed the suffix Attr
from all attribute names. The fork can be found at
tobbee xgen.
The process of generating this start MPD structures is done in the Github repo tobbee/mpdgen. The output provided the starting point for the MPD type of this project.
Mapping of the full MPD Schema to Go structures provides a good start, but it has some limitations and issues. Therefore, all structures have been scrutinized, and modified where needed. The main modifications made were:
- Change of top-level MPD type
- Add xlink name space
- Change some attributes to remove
omitempty
or become pointers. An example isavailabilityTimeComplete
. It is boolean, but it should either have the valuefalse
or be absent - Add type comments and document enum values for certain types
- Change names to plural for all subelement slices, e.g. Periods instead of Period
- Add ContentProtection elements and corresponding name spaces
The handling of XML name spaces in the Go standard library encoding/xml
is incomplete,
and has a number of quirks and limitations which makes it impossible to generate
namespaces and namespace prefixes in the standard way used in many places including
XML schemas and DASH MPDs.
There are a number of pull requests to improve the situation, and in particular PR #48641 - encoding/xml: support xmlns prefixes includes an extension to the XML struct tags that make it possible to specify name space prefixes.
Since this functionality has not yet (Go 1.19) made its way into the standard library, after more
than a year, the full patched version of the encoding/xml
package is included here
in the xml
directory. Therefore, the github.com/Eyevinn/dash-mpd/xml
package should
be used together with the XML structure in the package, rather than the standard library version.
The package functions mpd.ReadFromFile()
, mpd.ReadFromString()
, and mpd.Write()
do use
that XML library.
Since the MPD is mapped to Go structures, there are some limitations to what can be processed and how the output looks:
- Only elements and attributes specified in the data structures are kept. Unkonwn elements and attributes are silently discarded.
- All XML comments are removed
- The output order of XML attributes is given by the order in the structure, which is in turn comes from the XML schema. The order is therefore often different from the input document.
- Mapping to float numbers may not preserve the exact value of the input.
- Addition of extra name spaces, such as specific DRM systems must be done explicitly.
- In the output, the name-spaces are added to the level where they are used and not at the top MPD level. The output names are also fixed, and may differ from the input names.
- Durations are mapped to nanoseconds and back. This may change the duration slightly. All trailing zeros are also removed, as are the minutes and seconds counts if they are zero and a bigger unit is present.
The MPD marshaling/unmarshaling is tested by by using many MPDs in the testdata/schema-mpds
,
testdata/go-dash-fixtures
, and testdata/livesim
directories.
See the README.md files in these directories for their
origins and the small tweaks needed to make durations and some other values consistent after a
unmarshaling/marshaling process.
Including all elements, including rarely used ones, has some performance penalty.
One such contribution comes from matching attributes which is done in a linear fashion.
Some benchmark tests are included in the mpd/mpd_test.go
file.
This project aims to follow Semantic Versioning and Conventional Commits. There is a manual ChangeLog.
MIT, see LICENSE.
Join our community on Slack where you can post any questions regarding any of our open source projects. Eyevinn's consulting business can also offer you:
- Further development of this component
- Customization and integration of this component into your platform
- Support and maintenance agreement
Contact [email protected] if you are interested.
Eyevinn Technology is an independent consultant firm specialized in video and streaming. Independent in a way that we are not commercially tied to any platform or technology vendor. As our way to innovate and push the industry forward we develop proof-of-concepts and tools. The things we learn and the code we write we share with the industry in blogs and by open sourcing the code we have written.
Want to know more about Eyevinn and how it is to work here. Contact us at [email protected]!