func FetchId(urlData string) (int, error)
extracts the numeric ID and converts it to an integer
func FetchLogin(session *http.Cookie, email, password string) error
func FetchSession() (*http.Cookie, error)
type Dash struct { Body []byte Url *url.URL }
type MediaLink struct { MimeType string Url string }
func (m *MediaLink) Dash() (*Dash, error)
type Stream struct { Error string Links []MediaLink NoAccess bool }
func FetchStream(session *http.Cookie, id int) (*Stream, error)
must run login first
func (s *Stream) Dash() (*MediaLink, error)