mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
521681e1b8
* safely generate the thumbnail.jpg & preview.gif * Sort after build variants index number, fix broken index for HLS path. * Don't export VideoBitrate and IsVideoPassthrough * Unused variables deleted * Solution for sorting not working correctly. * Rename StreamSortVariants to streamSortVariants
59 lines
1.5 KiB
Go
59 lines
1.5 KiB
Go
package controllers
|
|
|
|
import (
|
|
"net/http"
|
|
"sort"
|
|
|
|
"github.com/owncast/owncast/core/data"
|
|
)
|
|
|
|
type variantsSort struct {
|
|
Index int
|
|
Name string
|
|
IsVideoPassthrough bool
|
|
VideoBitrate int
|
|
}
|
|
|
|
type variantsResponse struct {
|
|
Index int `json:"index"`
|
|
Name string `json:"name"`
|
|
}
|
|
|
|
// GetVideoStreamOutputVariants will return the video variants available.
|
|
func GetVideoStreamOutputVariants(w http.ResponseWriter, r *http.Request) {
|
|
outputVariants := data.GetStreamOutputVariants()
|
|
|
|
streamSortVariants := make([]variantsSort, len(outputVariants))
|
|
for i, variant := range outputVariants {
|
|
variantSort := variantsSort{
|
|
Index: i,
|
|
Name: variant.GetName(),
|
|
IsVideoPassthrough: variant.IsVideoPassthrough,
|
|
VideoBitrate: variant.VideoBitrate,
|
|
}
|
|
streamSortVariants[i] = variantSort
|
|
}
|
|
|
|
sort.Slice(streamSortVariants, func(i, j int) bool {
|
|
if streamSortVariants[i].IsVideoPassthrough && !streamSortVariants[j].IsVideoPassthrough {
|
|
return true
|
|
}
|
|
|
|
if !streamSortVariants[i].IsVideoPassthrough && streamSortVariants[j].IsVideoPassthrough {
|
|
return false
|
|
}
|
|
|
|
return streamSortVariants[i].VideoBitrate > streamSortVariants[j].VideoBitrate
|
|
})
|
|
|
|
response := make([]variantsResponse, len(streamSortVariants))
|
|
for i, variant := range streamSortVariants {
|
|
variantResponse := variantsResponse{
|
|
Index: variant.Index,
|
|
Name: variant.Name,
|
|
}
|
|
response[i] = variantResponse
|
|
}
|
|
|
|
WriteResponse(w, response)
|
|
}
|