Closed tlsunn closed 5 months ago
The preferred way is to save each image in their own stream, in concurrent threads. That's what we do with all our devices that have multiple equivalent cameras pointing in different directions (eg, Quest's positional cameras). You then need to identify each stream/camera, using a stream tag or a stream flavor, and that works well with vrsplayer that will show multiple cameras side by side. Another way is to create a record with multiple image content types, but you then need to grab the multiple frames and create a record that combines them all in one API call. That's more error prone (more complex definitions/formats) and bug prone (race conditions), and vrsplayer won't display all the images.
Got it, thank you so much!
Hi there, I have read the sample record app and have the above quesiton. If I have multiple images arrive at once, what's a good way to save them? Should I split them into multiple image streams or should I add content blocks in addRecordFormat?
Thanks in advance for your time and help!