Its. Not. There. The page says it’s archived and read only. So how are people getting the thing? Or can someone who has it just give me a copy? PLEASE?
THANK YOU SO MUCH!! I was clicking the first link in the post which doesnt go there.
For any fellow linux users experiencing double mpv player bug with controls not working:
- clone repo
- git submodule update --init
- go to
/OFS-lib/videoplayer/impl/OFS_MpvVideoplayer.cpp
after line 182 add
error = mpv_set_option_string(CTX->mpv, "vo", "libmpv");
if(error != 0) {
LOG_WARN("Failed to set mpv: vo=libmpv");
}
error = mpv_set_option_string(CTX->mpv, "gpu-context", "cocoa");
if(error != 0) {
LOG_WARN("Failed to set mpv: gpu-context=cocoa");
}
- go to
/lib/bitsery/include/bitsery/details/adapter_common.h
after line 33 add
#include <cstdint>
- go to
/localization/gen_localization.cpp
on line 10 change
enum ColIdx : uint32_t
to
enum ColIdx
- go to main directory
- cmake -B build
- cd build
- make
3 Likes
Thanks for sharing this, I’ve been trying on and off to get it working for the last month.