Live video on the AT Protocol
at natb/urfave 12 lines 248 B view raw
1package api 2 3import "net/http" 4 5// get rendition from query params, defaulting to "source" 6func getRendition(r *http.Request) string { 7 rendition := r.URL.Query().Get("rendition") 8 if rendition == "" { 9 rendition = "source" 10 } 11 return rendition 12}