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

A Go library for generating MPEG-DASH manifests.

Results 10 go-dash issues
Sort by recently updated
recently updated
newest added

Currently it seems the actual MPD package is one level down: https://godocs.io/github.com/zencoder/go-dash/mpd it should be at the top level: https://godocs.io/github.com/zencoder/go-dash

This is a fix for this issue. https://github.com/zencoder/go-dash/issues/82

Needs work

We are using this library in our software to manipulate DASH manifests created by Unified Streaming Packager (https://www.unified-streaming.com/products/unified-packager). That packager puts content protection IDs in uppercase, but this library only...

CommonAttributesAndElements.InbandEventStream has an XML tag to be an attribute, but should be an element: InbandEventStream *DescriptorType `xml:"inbandEventStream,attr"` should be InbandEventStream *DescriptorType `xml:"InbandEventStream,omitempty"` otherwise it will never be unmarshaled. I think...

Get this error : This page contains the following errors: error on line 7 at column 141: Namespace prefix cenc for default_KID on ContentProtection is not defined Below is a...

I noticed your data structure has changed (my code that uses your library won't build) from 74b837a15f801c07021ded58680e1c3bc75f0ba0 so that we have lists of AdaptionSets in lists of Periods IIUC. I...

Manifests are set to static by default which makes them unusable for continuous live streams that have no declared ending. Proposing adding the dynamic presentation type as specified by the...

- fixes setting dolby xmlns - xmlns attr needs custom marshal / unmarshal - handle scte214 xmlns attr for dolby vision profile 8.1 - set both supplementalCodec and supplementalProfile when...