charlires / gosmooth

Smooth Streaming parser

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Smooth Streaming parser library

Reference

Godash is a go module to parse ISM files that corresponds to the Microsoft Smooth Streaming protocol

Example

ssm, err := gosmooth.Unmarshal(ism)
if err != nil {
    t.Fatal(err)
}
fmt.Println(ssm)

b, err := ssm.Marshal()
if err != nil {
    t.Fatal(err)
}
fmt.Println(string(b))

About

Smooth Streaming parser

License:MIT License


Languages

Language:Go 100.0%