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

davimdo/gosmooth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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