Hi all, i have problem with playing video with VR mode on Oculus Go.
I implemented DeoVR player to page successfully, on mobile devices and destkops are ok.
But when i wear goggles video play only on "normal mode", when i clicked to Go VR, now im see only looping 1sec from video.
I encoding original video 6000x3000 to these sizes with ffmpeg ->
ffmpeg -i ./video-full.mp4 -y -acodec copy -vcodec libx264 -filter:v scale"=w=trunc(oha/2)2:h=2400" -f mp4 -crf 20 -movflags +faststart -preset slow -tune film -x264-params mvrange=511 -pix_fmt yuv420p -colorspace bt709 -color_trc bt709 -color_primaries bt709 -color_range tv -maxrate 50M -bufsize 100M ./video-180-2400.mp4 -filter:v scale"=w=trunc(oha/2)2:h=1440" ./video-180-1440.mp4 -filter:v scale"=w=trunc(oha/2)2:h=720" ./video-180-720.mp4
Any ideas to resolve this issue? Thank you.