Add DASH streams for VP9 transcoding (#3275)

This commit is contained in:
DingDongSoLong4
2023-03-07 03:57:27 +02:00
committed by GitHub
parent 71e1451c94
commit 2d4384169a
21 changed files with 2118 additions and 34 deletions

View File

@@ -0,0 +1,9 @@
package mpd
// Validate checks for incomplete MPD object
func (m *MPD) Validate() error {
if m.Profiles == nil {
return ErrNoDASHProfileSet
}
return nil
}