5214d81264
* Query for installed codecs * Start modeling out codecs * Can now specify a codec and get the correct settings returned from the model * Return codecs in admin/serverconfig * Start handling transcoding errors and return messages to user * filter available codecs against a whitelist * Fix merge * Codecs are working * Switching between codecs work * Add apis for setting a custom video codec * Cleanup the logging of transcoder errors * Add v4l codec * Add fetching v4l * Add support for per-codec presets * Use updated nvenc encoding parameters * Update log message * Some more codec WIP * Turn off v4l. It is a mess. * Try to make the lowest latency level a bit more playable * Use a human redable display name in console messages * Turn on transcoder persistent connections * Add more codec-related user-facing error messages * Give the initial offline state transcoder an id * Force a minimum segment count of 3 * Disable qsv for now. set x264 specific params in VariantFlags * Close body in case * Ignore vbv underflow message, it is not actionable * Determine a dynamic gop value based on the length of segments * Add codec-specific tests * Cleanup * Ignore goconst lint warnings in codec file * Troubleshoot omx * Add more codec tests * Remove no longer accurate comment * Bundle admin from codec branch * Revert back to old setting * Cleanup list of codecs a bit * Remove old references to the encoder preset * Commit updated API documentation * Update admin bundle * Commit updated API documentation * Add codec setting to api spec * Commit updated API documentation Co-authored-by: Owncast <owncast@owncast.online>
112 lines
4.3 KiB
Go
112 lines
4.3 KiB
Go
package admin
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
|
|
"github.com/owncast/owncast/config"
|
|
"github.com/owncast/owncast/core/data"
|
|
"github.com/owncast/owncast/core/transcoder"
|
|
"github.com/owncast/owncast/models"
|
|
"github.com/owncast/owncast/utils"
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
// GetServerConfig gets the config details of the server.
|
|
func GetServerConfig(w http.ResponseWriter, r *http.Request) {
|
|
ffmpeg := utils.ValidatedFfmpegPath(data.GetFfMpegPath())
|
|
|
|
var videoQualityVariants = make([]models.StreamOutputVariant, 0)
|
|
for _, variant := range data.GetStreamOutputVariants() {
|
|
videoQualityVariants = append(videoQualityVariants, models.StreamOutputVariant{
|
|
Name: variant.GetName(),
|
|
IsAudioPassthrough: variant.GetIsAudioPassthrough(),
|
|
IsVideoPassthrough: variant.IsVideoPassthrough,
|
|
Framerate: variant.GetFramerate(),
|
|
VideoBitrate: variant.VideoBitrate,
|
|
AudioBitrate: variant.AudioBitrate,
|
|
CPUUsageLevel: variant.CPUUsageLevel,
|
|
ScaledWidth: variant.ScaledWidth,
|
|
ScaledHeight: variant.ScaledHeight,
|
|
})
|
|
}
|
|
response := serverConfigAdminResponse{
|
|
InstanceDetails: webConfigResponse{
|
|
Name: data.GetServerName(),
|
|
Summary: data.GetServerSummary(),
|
|
Tags: data.GetServerMetadataTags(),
|
|
ExtraPageContent: data.GetExtraPageBodyContent(),
|
|
StreamTitle: data.GetStreamTitle(),
|
|
WelcomeMessage: data.GetServerWelcomeMessage(),
|
|
Logo: data.GetLogoPath(),
|
|
SocialHandles: data.GetSocialHandles(),
|
|
NSFW: data.GetNSFW(),
|
|
CustomStyles: data.GetCustomStyles(),
|
|
},
|
|
FFmpegPath: ffmpeg,
|
|
StreamKey: data.GetStreamKey(),
|
|
WebServerPort: config.WebServerPort,
|
|
RTMPServerPort: data.GetRTMPPortNumber(),
|
|
ChatDisabled: data.GetChatDisabled(),
|
|
VideoSettings: videoSettings{
|
|
VideoQualityVariants: videoQualityVariants,
|
|
LatencyLevel: data.GetStreamLatencyLevel().Level,
|
|
},
|
|
YP: yp{
|
|
Enabled: data.GetDirectoryEnabled(),
|
|
InstanceURL: data.GetServerURL(),
|
|
},
|
|
S3: data.GetS3Config(),
|
|
ExternalActions: data.GetExternalActions(),
|
|
SupportedCodecs: transcoder.GetCodecs(ffmpeg),
|
|
VideoCodec: data.GetVideoCodec(),
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
err := json.NewEncoder(w).Encode(response)
|
|
if err != nil {
|
|
log.Errorln(err)
|
|
}
|
|
}
|
|
|
|
type serverConfigAdminResponse struct {
|
|
InstanceDetails webConfigResponse `json:"instanceDetails"`
|
|
FFmpegPath string `json:"ffmpegPath"`
|
|
StreamKey string `json:"streamKey"`
|
|
WebServerPort int `json:"webServerPort"`
|
|
RTMPServerPort int `json:"rtmpServerPort"`
|
|
S3 models.S3 `json:"s3"`
|
|
VideoSettings videoSettings `json:"videoSettings"`
|
|
LatencyLevel int `json:"latencyLevel"`
|
|
YP yp `json:"yp"`
|
|
ChatDisabled bool `json:"chatDisabled"`
|
|
ExternalActions []models.ExternalAction `json:"externalActions"`
|
|
SupportedCodecs []string `json:"supportedCodecs"`
|
|
VideoCodec string `json:"videoCodec"`
|
|
}
|
|
|
|
type videoSettings struct {
|
|
VideoQualityVariants []models.StreamOutputVariant `json:"videoQualityVariants"`
|
|
LatencyLevel int `json:"latencyLevel"`
|
|
}
|
|
|
|
type webConfigResponse struct {
|
|
Name string `json:"name"`
|
|
Summary string `json:"summary"`
|
|
WelcomeMessage string `json:"welcomeMessage"`
|
|
Logo string `json:"logo"`
|
|
Tags []string `json:"tags"`
|
|
Version string `json:"version"`
|
|
NSFW bool `json:"nsfw"`
|
|
ExtraPageContent string `json:"extraPageContent"`
|
|
StreamTitle string `json:"streamTitle"` // What's going on with the current stream
|
|
SocialHandles []models.SocialHandle `json:"socialHandles"`
|
|
CustomStyles string `json:"customStyles"`
|
|
}
|
|
|
|
type yp struct {
|
|
Enabled bool `json:"enabled"`
|
|
InstanceURL string `json:"instanceUrl"` // The public URL the directory should link to
|
|
YPServiceURL string `json:"-"` // The base URL to the YP API to register with (optional)
|
|
}
|