-
-
Notifications
You must be signed in to change notification settings - Fork 105
Screenshots and video capture
https://developer.oculus.com/documentation/mobilesdk/latest/concepts/mobile-testing-capture/
- Ensure your VR headset is set up for
adb
(i.e., your Oculus device has Developer Mode enabled, you haveadb
installed, etc.). - If you're inside Wolvic, press the controller's Oculus button to return to the Oculus OS.
- From the tray menu at the bottom, press the button for Sharing > Take Photo.
- The screenshot is taken after 5 seconds, so quickly return to Wolvic, and arrange the screenshot.
- Launch Android File Transfer on your desktop computer.
- Find the video in
sdcard
>oculus
>ScreenShots
(/sdcard/oculus/ScreenShots
).
First, if you have not already enabled local storage for Wolvic, do the following:
- Navigate to
Settings
>Apps
>Apps
. - Search for “Wolvic”, tap
Wolvic
>Permissions
>Storage
. - Select
enable
.
Once that has been done, you can take a screenshot by pressing the trigger and circle (home) button simultaneously while in Wolvic. This should work both on 3dof and 6dof controllers.
https://developer.oculus.com/documentation/mobilesdk/latest/concepts/mobile-testing-capture/
Note: Previous Oculus support for the
adb
method of capturing screenshots (adb shell setprop debug.oculus.enableVideoCapture 1
+adb shell setprop debug.oculus.enableVideoCapture 0
) has been removed. You now have to manually record from Oculus' menu, Sharing > Record Video. See detailed instructions below.
- Ensure your VR headset is set up for
adb
(i.e., your Oculus device has Developer Mode enabled, you haveadb
installed, etc.). - If you're inside Wolvic, press the controller's Oculus button to return to the Oculus OS.
- From the tray menu at the bottom, press the button for Sharing > Record Video.
- Do stuff in Wolvic, but make sure you keep your face in the headset for the remainder of the session you want to video capture. (There is an Oculus software bug where the video file gets terminated early and corrupted if you take off the headset during a video capture without first explicitly stopping the video capture.)
- Press the controller's Oculus button.
- From the tray menu at the bottom, press the button for Sharing > Stop Video.
- Launch Android File Transfer on your desktop computer.
- Find the video in
sdcard
>oculus
>VideoShots
(/sdcard/oculus/VideoShots
).
Or you can run these adb
commands from your command-line terminal:
adb shell ls -al /sdcard/oculus/VideoShots
adb pull /sdcard/oculus/VideoShots
(@TODO)