Skip to content
This repository was archived by the owner on Sep 14, 2020. It is now read-only.

Latest commit

 

History

History
22 lines (17 loc) · 451 Bytes

File metadata and controls

22 lines (17 loc) · 451 Bytes

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))