1
56
2
4
3
8
4
7

cross-posted from: https://lemmy.today/post/54594628

According to video discovered in Pico’s public SDK, it appears the company’s next flagship headset has just been leaked.

What it reveals: a headset very much inspired by Apple Vision Pro and Samsung Galaxy XR, as it appears to include a separate battery unit and woven headstrap à la Vision Pro, and a body similar to Galaxy XR.

5
12

Finally found the time (and courage) to remove the shaded lenses and rims from my XReal Air 1 glasses. I'm going to try the magnet modification so I can put the shades back on in sunlight.

6
5

I created a simple Nushell script that will always disable the default/internal monitor(s) on your laptop or external display when using AR glasses. I find this useful for when using AR glasses such as the XReal One which allows you to change the mode from regular mode to ultra-wide mode and when doing this, it will act as your unplugging the XReal ones and plugging in XReal one again in a new mode, causing the other display to become enabled.

To keep the laptop display always off, weather the laptop lid is either closed or open, this simple Nushell script will always disable the screen every X seconds (You can change it by changing the wait constant)

Simply copy this script and create a new Nushell script such as disable-displays.nu, add it to your startup applications with the command of nu /path/to/disable-displays.nu and it will run in the background. You will need to run xrandr command with all of your displays enabled to get the names of the displays and change the constants values in the script accordingly.

NOTE: This script may not work with a full Wayland setup and may only work on X11.

Enjoy

# RUN xrandr TO GET THE NAMES OF THE DISPLAYS AND SET THE VARIABLES TO THESE NAMES
const ar_glasses_display = 'USB-C-0'
const displays = [
    'eDP',
    'HDMI-0'
]

const wait = 5

def is-ar-glasses-connected [] {
    return (xrandr | str contains $"($ar_glasses_display) connected")
}

def disable-display [display: string] {
    xrandr --output $display --off
}

def enable-display [display: string] {
    xrandr --output $display --auto
}

loop {
    if (is-ar-glasses-connected) {
        for current_display in $displays {
            disable-display $current_display
        }
    } else {
        for current_display in $displays {
            enable-display $current_display
        }
    }

    sleep ($wait * 1sec)
}
7
4
submitted 3 months ago* (last edited 3 months ago) by 73ms@sopuli.xyz to c/augmented_reality@lemmy.world

One model from Warby Parker and another from Gentle Monster. The display versions are coming next year at the earliest.

8
-5
submitted 5 months ago* (last edited 5 months ago) by 73ms@sopuli.xyz to c/augmented_reality@lemmy.world

The video reviews both the visual translation (looking at text) as well as live transcription features of different smart glasses. There's some through the lens footage for all of them.

The following glasses are included: Meta Ray-Ban display glasses Rokid Glasses RayNeo X3 Pro Even Realities G2 Inmo Air3 Inmo Go3

9
7

The Qwen S1 specs have a heads-up waveguide display etched into the lenses, and serve as a rival to Meta's Ray-Ban Display model (minus the gesture control). My first impression of these AR glasses was that they were light and comfortable to wear -- I wouldn't have known that they were smart glasses by their weight alone. At the end of each arm are swappable batteries, which snap off easily so you can keep the glasses running for longer when you're on the go.

10
49

The workers in Kenya say that it feels uncomfortable to go to work. They tell us about deeply private video clips, which appear to come straight out of Western homes, from people who use the glasses in their everyday lives.

Several describe video material showing bathroom visits, sex and other intimate moments.

11
6

RayNeo further refines its AR formula for the Air series with HDR10 support and improved audio.

12
87

The creator of Nearby Glasses made the app after reading 404 Media’s coverage of how people are using Meta’s Ray-Bans smartglasses to film people without their knowledge or consent. “I consider it to be a tiny part of resistance against surveillance tech.”

13
19
submitted 6 months ago* (last edited 6 months ago) by 73ms@sopuli.xyz to c/augmented_reality@lemmy.world

Meta sold more than seven million smart glasses last year. This is according to the annual report of the world's largest eyewear manufacturer EssilorLuxottica, which the company published on Wednesday evening. EssilorLuxottica develops and sells the smart glasses together with Meta.

A year ago, it was said that two million smart glasses were sold and that the annual production capacity was to be increased to 10 million units by the end of 2026. In the summer, the company announced that sales had more than tripled compared to the previous year. A quarter later, EssilorLuxottica stated that smart glasses now accounted for a third of its revenue growth and that plans to increase production were being further accelerated.

14
5

The mission to boost refresh rates extends to AR glasses

15
15
16
8

Meta smartglasses "Conversation focus" live demo, new feature that helps you hear the person you're facing

https://yewtu.be/watch?v=he%5C_%5C_FFJX%5C_B4
( direct YouTube link: https://www.youtube.com/watch?v=he%5C_%5C_FFJX%5C_B4 )

This is mainly meant for being able to hear the person you are conversing with in noisy environments. The video demonstrates the amplification and shows that it can also work over longer distances even though that is not really the main use case advertised.

@augmented_reality@lemmy.world #smartglasses #ar #augmentedreality #hearingaid

17
8

China’s traffic police are using AI smart glasses to identify vehicles in seconds, reduce inspection time, and improve road safety.

18
148

MSC Cruises is the latest one to ban smart glasses and this may be becoming more and more of a problem for people using them.

Previously in Egypt tourists have reportedly been blocked from going to see the pyramids and some museums there also ban them. Saudi Arabian authorities apparently confiscate them at the airport from arriving passengers. Anyone who needs a prescription needs to consider that they may not be able to use them everywhere.

19
18
20
3

Google offers more details on their upcoming smart glasses and demos features at Android XR event

Google recently shared new information about their upcoming Android XR devices and software features at an event dedicated to Android XR.

Some information from the event that I found particularly interesting:

* in 2026 Google will release a pair of smart glasses without a display as well as a pair with a monocular display as their answer to the different Ray-ban Meta variants currently out
* it sounds like both first-party and third-party app support will be much stronger than for Meta as the SDK is out and devkits are already being offered to third-party devs
* Google is confident they will be able to offer these with a wider prescription range than Meta's Display glasses
* in 2027 they will release a model with two displays
* Google plans to make WearOS watches able to work to enhance the experience of using smart glasses
* project Aurora done in collaboration with Xreal uses a tethered compute puck and will offer the full Android XR spatial computing environment but uses an optical passthrough similar to currently existing display glasses instead of video from cameras
* Google demoed a new feature that lets users transform any content to 3D in real-time using Android XR

More info:
https://9to5google.com/2025/12/08/android-xr-glasses-displays-2026/utm/_medium=mastodon

https://www.youtube.com/watch?v=w%5C_ANVojMDHY

@augmented_reality@lemmy.world
#ar #vr #xr #androidxr #smartglasses #virtualreality

21
11
submitted 8 months ago* (last edited 8 months ago) by 73ms@sopuli.xyz to c/augmented_reality@lemmy.world

Gizmodo points out that smart glasses are still in an interesting phase where the there's a lot of experimentation on what exactly the feature set and even the form should look like which is similar to what happened with phones.

22
9
23
3

Even Realities G2 smartglasses available, no cameras or speakers

The latest generation glasses still support translation, notifications, teleprompter and adds a new "Conversate" feature that adds AI generated contextual information to conversations as well as a controller ring that also tracks health information.

https://www.engadget.com/mobile/even-realities-g2-first-look-this-years-best-looking-new-smart-glasses-still-need-work-151500132.html?utm%5C_medium=activitypub

@augmented_reality@lemmy.world #augmentedreality #smartglasses #evenrealities

24
7
25
5
view more: next ›

Augmented Reality (AR)

1351 readers
1 users here now

Augmented Reality (AR) related topics only (for now)

Rules:

founded 2 years ago
MODERATORS