craig
September 15, 2023, 8:11pm
1
You can stream a live preview from the THETA X direct to a web browser.
How To
connect laptop or mobile phone to camera with WiFi
if in access point mode, go to http://192.168.1.1/getLivePreview
example using Google Chrome browser
Alternative technique with live preview embedded in web page
snippet using bootstrap
<div class="col-lg-12 px-0">
<iframe src ="http://192.168.1.1/getLivePreview" width="100%" height="600">
</iframe>
</div>
Latency
310ms
362ms
188ms
1 Like
Is it possible to do the same thing on Client mode?
On client mode, when visit device from browser, user name and password needed.
What is the default user name and password?
craig
September 27, 2023, 9:51pm
4
yes, I think it works for client mode.
The username is the serial number. YR1411xxxx
password is just the digits 1411xxxx
User name and password don’t work.
My Theta X is start from YR1410xxxx, does this mean it is an old version?
Tried to reset setting, no luck…
Firmware is 2.21.0
I can connect to it by AP mode, but not Client mode.
craig
September 28, 2023, 4:00pm
6
Hmm, maybe this technique doesn’t work to display the stream in the browser.
To use the client mode API, you must use digest authentication. You can’t put the username and password into the browser pop up box as it will use basic authentication.
see this thread.
Update Sept 2018: If you read to the bottom of this thread, you will see that we finally figured out the authentication is Digest Authentication and that you can find the IP address with DNS-SD. These are the two main tips. It seems to work for most developers. The main problem was in in figuring out the authentication mechanism
Ricoh released client mode access for the THETA V last month. This allows the THETA V to connect to your home or office WiFi router directly. The THETA mobile app the…
I use insomnia to test the API. It is open source and free.
on the command line, curl will also work
Thanks for the webpage you linked, from that I figured the password should be THETAYR1410xxxx.
I can get live preview from CL mode now. Is there parameter, we can adjust resolution. For example:
http://192.168.20.213/getLivePreview?hd=true
craig
September 28, 2023, 6:31pm
8
sorry about my error with the username for client mode. I’m glad you were able to find out the username and password from the existing discussions.
The preview format is set with the API.
# previewFormat
### Overview
Format of live view ([camera.getLivePreview](../commands/camera.get_live_preview.md)).
Can be acquired by [camera.getOptions](../commands/camera.get_options.md) and set by [camera.setOptions](../commands/camera.set_options.md).
### Support model
| X | Z1 | V | SC | S |
|:--|:--|:--|:--|:--|
| All | All | All | All | All |
### Support value
#### For RICOH THETA X
{"width": 1024, "height": 512, "framerate": 30}
This file has been truncated. show original
The THETA X doesn’t have the 1920x960 format.
1 Like