-
-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can obtain .r3d data format by recording from USB live streaming (iPad)? #93
Comments
I think it would be best if you would "dissect" a .r3d file produced by Record3D, see what is inside, and then create your own .r3d files according to that. The .r3d files are just ZIP files with The contents of a typical (unzipped) .r3d file:
A single The You can compress the raw The To construct the metadata JSON file, I recommend that you inspect the See #33 (comment) and #27 to learn how to encode the camera poses into Record3D's storage format (stored under the "poses" key in the metadata JSON file). Since Record3D 1.10.3, Record3D includes even the relative timestamp of the camera in the USB stream. See #91 for more details. The frame timestamps are stored under the Caveat: the .r3d files do not contain a root folder. This means that when creating the ZIP/r3d file, you should compress the I think the information above is enough for you to develop what you need. |
The Record3D app you developed is very useful and I appreciate it. That's fully answered, thank you! |
We extracted .r3d data format using the existing Record3d app.
However, we have now succeeded in streaming in real-time by connecting the iPad (USB) to Linux,
but we do not know how to record and save it in .r3d data format like the existing Record3d app.
I would appreciate it if you could tell me how to save r3d data like the app provided by existing Apple apps.
The text was updated successfully, but these errors were encountered: