mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-03-09 01:56:12 -04:00
15 lines
406 B
C++
15 lines
406 B
C++
#pragma once
|
|
|
|
#include <obs.hpp>
|
|
#include <QString>
|
|
|
|
#include "models/multitrack-video.hpp"
|
|
|
|
/** Returns either GO_LIVE_API_PRODUCTION_URL or a command line override. */
|
|
QString MultitrackVideoAutoConfigURL(obs_service_t *service);
|
|
|
|
class QWidget;
|
|
|
|
GoLiveApi::Config DownloadGoLiveConfig(QWidget *parent, QString url, const GoLiveApi::PostData &post_data,
|
|
const QString &multitrack_video_name);
|