All Projects → BOLL7708 → SuperScreenShotterVR

BOLL7708 / SuperScreenShotterVR

Licence: other
Extends SteamVR screenshot functionality

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to SuperScreenShotterVR

Swift Screencapture
A Swift framework to easily capture the screen on OS X.
Stars: ✭ 105 (+303.85%)
Mutual labels:  screenshots
Mobile Toolkit
📱 Shell scripts for Android and iOS device management
Stars: ✭ 161 (+519.23%)
Mutual labels:  screenshots
Indicium-Supra
DirectX API-hooking framework
Stars: ✭ 292 (+1023.08%)
Mutual labels:  overlay
Screenshots
Simple Website Screenshots as a Service (Django, Selenium, Docker, Docker-compose)
Stars: ✭ 126 (+384.62%)
Mutual labels:  screenshots
Screenshotty
A library for programatically capturing screenshots on Android
Stars: ✭ 141 (+442.31%)
Mutual labels:  screenshots
Bepisplugins
A collection of essential BepInEx plugins for games made by Illusion.
Stars: ✭ 197 (+657.69%)
Mutual labels:  screenshots
Cypress Match Screenshot
Utility to take screenshots during a cypress test and match them against previous runs
Stars: ✭ 61 (+134.62%)
Mutual labels:  screenshots
pinecone
Peer-to-peer overlay routing for the Matrix ecosystem
Stars: ✭ 361 (+1288.46%)
Mutual labels:  overlay
Timecat
A Magical Web Recorder & Player 🖥
Stars: ✭ 1,955 (+7419.23%)
Mutual labels:  screenshots
Xcparse
Command line tool & Swift framework for parsing Xcode 11+ xcresult
Stars: ✭ 221 (+750%)
Mutual labels:  screenshots
Screenshoteer
Make website screenshots and mobile emulations from the command line.
Stars: ✭ 1,650 (+6246.15%)
Mutual labels:  screenshots
Scrot
SCReenshOT - command line screen capture utility
Stars: ✭ 138 (+430.77%)
Mutual labels:  screenshots
Reporting
Zebrunner Reporting Tool
Stars: ✭ 198 (+661.54%)
Mutual labels:  screenshots
Dotfiles
▒ rice ░░ custom linux config files
Stars: ✭ 1,514 (+5723.08%)
Mutual labels:  screenshots
VRJoystickAndSteeringWheel
SteamVR Joystick And Steering Wheel | Flying Mechanics and Vehicle Control for VR
Stars: ✭ 24 (-7.69%)
Mutual labels:  steamvr
Cronshot
Node module to schedule, take, alter, and store web page screenshots.
Stars: ✭ 69 (+165.38%)
Mutual labels:  screenshots
Technowlogger
TechNowLogger is Windows/Linux Keylogger Generator which sends key-logs via email with other juicy target info
Stars: ✭ 172 (+561.54%)
Mutual labels:  screenshots
toppy
Overlay library for Angular 7+
Stars: ✭ 81 (+211.54%)
Mutual labels:  overlay
HomeAssistantRepository
🏡 Home Assistant on Gentoo Linux.
Stars: ✭ 26 (+0%)
Mutual labels:  overlay
Vcsi
Create video contact sheets, thumbnails
Stars: ✭ 219 (+742.31%)
Mutual labels:  screenshots

SuperScreenShotterVR

Extends SteamVR screenshot functionality, download the latest release here.

Description

This application can do any or all of the following: use custom output folder, save uncompressed .PNG files, use the same screenshot chord as SteamVR, display the result in a notification, display a helpful viewfinder. Things to note are listed below.

Application Window

Output folder

If not specifically set it will default to the application folder it is running in. Screenshots are automatically put into subfolders based on the current app ID from SteamVR.

Submit to Steam

This will submit the screenshot to Steam so it gets included in the screenshot library for the running title in the desktop client. One caveat right now is that this will cause the default screenshot notification to be shown regardless of settings in this application.

Capture on timer

Enable this to automatically take screenshots at an interval, these will end up in the folder for the title in a subfolder for the current date. These screenshots will not trigger notifications or audio.

Delayed capture

This option will delay the screenshot with a set amount of seconds, and if the viewfinder is enabled it will show that during the delay. This is mostly meant to be used with controllers that have no good input to map for the viewfinder. There are separate actions to use in bindings for this if you want to be able to trigger it separately with certain devices.

Notifications and audio

On capture you can choose to get a notification, if it should include a thumbnail of the result, and to play back an audio file.

Notification with thumbnail

Viewfinder

This is an overlay that is shown when a specific input is triggered, the app only comes with Index bindings as that is what it was developed on, but you can bind the action to any controller using the SteamVR input binding interface. The default binding for Index is: system button touch + trigger push.

Viewfinder

The outer frame shows the approximate crop of the screenshot. The roll indicator helps you level with the horizon, and the pitch indicator helps you get vertical lines in architecture.

Remote Server

When enabling the server it is possible to send and receive requests to and from the application. Namely, you can trigger screenshot taking and get the results back, including tagging the stored files. Below are the payload specifications, both requests and response are JSON encoded.

Send this to the server on the port defined, default address is ws://localhost:8807, which you can try from here. The delay is in whole seconds, and if enabled, the viewfinder will be shown during the delay just as with the manual delayed shots.

{
  "nonce": "your-identifier",
  "tag": "tag-the-files",
  "delay": 2
}

On the same connection you will get these responses containing the result, the image is a Base64 encoded .PNG image.

{
  "nonce": "your-identifier",
  "image": "base64-encoded-png-image"
}

Customization

The overlay graphics can be customized by overwriting the images in the resources folder. Right now screenshot output is assumed to be square, so the viewfinder border is square as well. With the way overlays work we set the size of the overlay to be the width of the screenshot field of view. Images are limited to a maximum of 1920x1080 in resolution by SteamVR.

The capture audio can be customized by replacing the waveform audio file in the resources directory.

For these changes to take effect, you will have to restart SteamVR and/or this application, to flush caches and reload files.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].