We figured out how to do high quality videos natively on quest! (check desc.)

Опубликовано: 27 Июнь 2026
на канале: RedBrumbler
188
9

Keep in mind, it might not look high quality when just uploading, since youtube still needs to process it!

first you run these adb commands with your quest connected:

adb shell "setprop debug.oculus.capture.width 1536"
adb shell "setprop debug.oculus.capture.height 1536"
adb shell "setprop debug.oculus.capture.bitrate 160000000"
adb shell "setprop debug.oculus.foveation.level 0"
adb shell "setprop debug.oculus.foveation.usev2 1"

then you just record (it creates REALLY big files, this video was about 2 GB)

then you fix the audio, and load the fixed audio video into davinci resolve, along with the original video file.

drag the "audio" video file on the left screen on the right side of the program, drag the "original" video file onto the right screen next to it.

disable the sound of the original video file, and disable the video on the "audio" video file, this way you have fixed audio but are not losing video quality here

next make sure your project settings are correct, use these images for reference:
https://cdn.discordapp.com/attachment...

https://cdn.discordapp.com/attachment...

now your size and everything should be fixed, go to deliver and on the left have these settings:
https://cdn.discordapp.com/attachment...

now you'll get a video file that's high quality, but we're gonna take it one step further and trick youtube into thinking the video is 4k

we use ffmpeg to scale up each video frame, you use these commands in a bat file for that:

ffmpeg -i "../Resolve/export.mov" ^
-pix_fmt yuv420p ^
-vf "scale=2iw:2ih" -sws_flags neighbor ^
-c:v libx265 -crf 24 -preset fast ^
-b:a 192000 ^
-movflags faststart ^
export_2x.mp4
pause

put this bat in the ffmpeg bin, make a folder next to the bin called "Resolve" and have resolve export to that