#include "GoLiveAPI_PostData.hpp" #include "models/multitrack-video.hpp" #include #include GoLiveApi::PostData constructGoLivePost(QString streamKey, const std::optional &maximum_aggregate_bitrate, const std::optional &maximum_video_tracks, bool vod_track_enabled) { GoLiveApi::PostData post_data{}; post_data.service = "IVS"; post_data.schema_version = "2025-01-25"; post_data.authentication = streamKey.toStdString(); system_info(post_data.capabilities); auto &client = post_data.client; client.name = "obs-studio"; client.version = obs_get_version_string(); auto add_codec = [&](const char *codec) { auto it = std::find(std::begin(client.supported_codecs), std::end(client.supported_codecs), codec); if (it != std::end(client.supported_codecs)) return; client.supported_codecs.push_back(codec); }; const char *encoder_id = nullptr; for (size_t i = 0; obs_enum_encoder_types(i, &encoder_id); i++) { auto codec = obs_get_encoder_codec(encoder_id); if (!codec) continue; if (qstricmp(codec, "h264") == 0) { add_codec("h264"); #ifdef ENABLE_HEVC } else if (qstricmp(codec, "hevc")) { add_codec("h265"); #endif } else if (qstricmp(codec, "av1")) { add_codec("av1"); } } auto &preferences = post_data.preferences; preferences.vod_track_audio = vod_track_enabled; obs_video_info ovi; if (obs_get_video_info(&ovi)) { preferences.composition_gpu_index = ovi.adapter; preferences.canvases.emplace_back(GoLiveApi::Canvas{ovi.output_width, ovi.output_height, ovi.base_width, ovi.base_height, {ovi.fps_num, ovi.fps_den}}); } obs_audio_info2 oai2; if (obs_get_audio_info2(&oai2)) { preferences.audio_samples_per_sec = oai2.samples_per_sec; preferences.audio_channels = get_audio_channels(oai2.speakers); preferences.audio_fixed_buffering = oai2.fixed_buffering; preferences.audio_max_buffering_ms = oai2.max_buffering_ms; } if (maximum_aggregate_bitrate.has_value()) preferences.maximum_aggregate_bitrate = maximum_aggregate_bitrate.value(); if (maximum_video_tracks.has_value()) preferences.maximum_video_tracks = maximum_video_tracks.value(); /* Always cap to maximum number of output encoders. */ if (!preferences.maximum_video_tracks.has_value() || preferences.maximum_video_tracks.value() > MAX_OUTPUT_VIDEO_ENCODERS) { preferences.maximum_video_tracks = MAX_OUTPUT_VIDEO_ENCODERS; } return post_data; }