Heyo, this is a great project - esp cause vr-video-player is old & throws xrizer errors and xr-video-player only works w/ wayland!
Looking forward to seeing where you go with it.
I'm on archlinux w/ Python 3.13, needed a special pip install command for imgui because they haven't merged 3.13 support yet:
pip install 'git+https://github.com/TibRib/pyimgui@support-cython-python3.13#egg=imgui[glfw]'
Needed to manually pip install xxhash & cupy, but maybe that's because I couldn't pip install -r requirements.txt. Used a venv so I can try again if you want.
Also, the top-level vplay/xrplay exes don't work for me, I get errors like this:
$ ./vplay ~/Videos/
Traceback (most recent call last):
File "/home/prikhi/Projects/vr/xrplay/./vplay", line 3, in <module>
import glfw
ModuleNotFoundError: No module named 'glfw'
Which I can resolve by running python src/vplay instead.
Heyo, this is a great project - esp cause vr-video-player is old & throws xrizer errors and xr-video-player only works w/ wayland!
Looking forward to seeing where you go with it.
I'm on archlinux w/ Python 3.13, needed a special pip install command for
imguibecause they haven't merged 3.13 support yet:pip install 'git+https://github.com/TibRib/pyimgui@support-cython-python3.13#egg=imgui[glfw]'Needed to manually pip install
xxhash&cupy, but maybe that's because I couldn'tpip install -r requirements.txt. Used avenvso I can try again if you want.Also, the top-level
vplay/xrplayexes don't work for me, I get errors like this:Which I can resolve by running
python src/vplayinstead.