When viewing the XBVR library from the DeoVR player, some covers don't show up.
Underlying problem being that, Custom, cover images when uploaded from PC or from URLs is saved as data:image base64 URI,
in xbvr db in "images" and "cover_url" fields. Close inspection shows that it is these covers the DeoVR does not want to display, or shows as blanks. Those which are scraped from official sites are stored as https:// links not data base64, hence which is shown in DeoVR.
Any solution to this.
Maybe make XBVR myfiles link to be https, that way
for example. folder structure:
xbvr
|--myfiles
|----covers
|----images
we can put custom covers and images in respective folders. and xbvr can save those links
example
cover_url = "https://host:9999/myfiles/covers/vrmovie.jpg"
images = "[{"url":"https://host:9999/covers/vrmovie.jpg","type":"cover","orientation":""},
{"url":"https://host:9999/images/vrmovie-image1.jpg","type":"gallery","orientation":""},
{"url":"https://host:9999/images/vrmovie-image2.jpg","type":"gallery","orientation":""}]"
maybe this way deovr might show images instead of going via https reverse proxy.
When viewing the XBVR library from the DeoVR player, some covers don't show up.
Underlying problem being that, Custom, cover images when uploaded from PC or from URLs is saved as data:image base64 URI,
in xbvr db in "images" and "cover_url" fields. Close inspection shows that it is these covers the DeoVR does not want to display, or shows as blanks. Those which are scraped from official sites are stored as https:// links not data base64, hence which is shown in DeoVR.
Any solution to this.
Maybe make XBVR myfiles link to be https, that way
for example. folder structure:
xbvr
|--myfiles
|----covers
|----images
we can put custom covers and images in respective folders. and xbvr can save those links
example
cover_url = "https://host:9999/myfiles/covers/vrmovie.jpg"
images = "[{"url":"https://host:9999/covers/vrmovie.jpg","type":"cover","orientation":""},
{"url":"https://host:9999/images/vrmovie-image1.jpg","type":"gallery","orientation":""},
{"url":"https://host:9999/images/vrmovie-image2.jpg","type":"gallery","orientation":""}]"
maybe this way deovr might show images instead of going via https reverse proxy.