diff options
| author | yum <yum.food.vr@gmail.com> | 2023-09-18 21:00:56 -0700 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2023-09-18 21:23:14 -0700 |
| commit | c2bc70c18d2fd1c3601b32f2a93b3b4a704786a5 (patch) | |
| tree | d945752abe708c5634a50b7cd0e17f9bf39d8e64 /GUI | |
| parent | b037e158065bec98d91231c0c6443b63f45ec7ea (diff) | |
Reimplement BrowserSource as a StreamingPlugin
BrowserSource now fades text out continuously over time.
TODO
* Delete C++ webserver, browsersource, transcript code
* Add UI for text age fading
Diffstat (limited to 'GUI')
| -rw-r--r-- | GUI/GUI/GUI/Frame.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/GUI/GUI/GUI/Frame.cpp b/GUI/GUI/GUI/Frame.cpp index 30ccbde..23ac38c 100644 --- a/GUI/GUI/GUI/Frame.cpp +++ b/GUI/GUI/GUI/Frame.cpp @@ -2492,6 +2492,7 @@ void Frame::OnAppStart(wxCommandEvent& event) { EnsureVirtualEnv(/*block=*/true);
};
+#if 0
obs_app_ = std::async(std::launch::async,
[this, enable_browser_src, browser_src_port]() -> bool {
if (enable_browser_src) {
@@ -2500,6 +2501,7 @@ void Frame::OnAppStart(wxCommandEvent& event) { }
return true;
});
+#endif
const std::string config_path(AppConfig::kConfigPath);
py_app_ = std::move(PythonWrapper::StartApp(*app_c_,
config_path, transcribe_out_,
|
