Meta Glasses Converter – Official Website, What It Is & How to Use
Instagram has a small party trick that only Ray-Ban Meta Smart Glasses owners are supposed to see: post a Story from the glasses and Instagram attaches a special glasses icon with a 3D "spin view" parallax effect, because the photo's EXIF metadata says Meta AI / Ray-Ban Meta Smart Glasses 2. The glasses cost around $299. Meta Glasses Converter (https://habeebbk.github.io/metarayban/) is a free, single-page web tool that takes any ordinary JPG and rebuilds it to the exact Ray-Ban Meta format — 3024×4032 pixels, camera EXIF rewritten to "Meta AI", GPS and other identifying tags wiped — entirely inside your browser.
We opened the site, read its full source code, and traced exactly which metadata fields it writes and deletes, so you know precisely what it does before you hand it a photo.
🎯 Key Takeaways
- Meta Glasses Converter is a free, no-login, 100% client-side web app hosted on GitHub Pages under the account habeebbk, first published on September 1, 2026 and updated for mobile on September 2.
- Its job is one conversion: any JPG → 3024×4032 px portrait with EXIF
Make = Meta AIandModel = Ray-Ban Meta Smart Glasses 2— the exact signature Instagram looks for when it enables the Ray-Ban Meta 3D Spin View effect on Stories. - It deletes sensitive metadata at the same time: GPS coordinates, software watermarks, lens details, and maker notes are stripped before the new camera tags are injected.
- One tap does everything: the ALL-IN-ONE button converts, copies the photo as Base64 to your clipboard, and opens the native Save/Share sheet (or downloads the file on desktop).
- Real limits we verified in the code: it accepts JPG/JPEG only (no PNG, WebP, or HEIC), it stretches rather than crops to fill the 3:4 frame, and the EXIF survives only if you don't re-share the image through chat apps, which re-compress and strip metadata.
Meta Glasses Converter Official Website
Meta Glasses Converter is a client-side photo converter for Ray-Ban Meta Smart Glasses format.
- Official app: https://habeebbk.github.io/metarayban/
- Creator: habeebbk (independent developer; GitHub account with contact email habeebbk950@gmail.com)
- Price: Free — no payments are requested anywhere on the page
- Login required: No — there is no account, sign-up, or Google/Discord login
- Platform: Web (static single HTML page hosted on GitHub Pages, mobile-first design)
- Main use: Convert ordinary JPG photos into Ray-Ban Meta Smart Glasses format (3024×4032 + Meta AI EXIF) — most often to unlock Instagram's Ray-Ban Meta Story effects
- Last checked: September 3, 2026
We are not the official developer of Meta Glasses Converter. This page helps users find, understand, and use the product.
What Is Meta Glasses Converter?
Meta Glasses Converter is a one-page tool that solves a strangely specific problem: photos taken with Ray-Ban Meta (Gen 2) smart glasses carry a 3024×4032 resolution and a distinctive EXIF signature — the camera make reads "Meta AI" and the model reads "Ray-Ban Meta Smart Glasses 2". Platforms like Instagram detect that signature and reward it with exclusive Story features, most notably the 3D Spin View effect, where viewers can tilt their phone and the photo rotates in parallax. If your photo came from an iPhone or a Samsung, none of that appears — no matter how good the picture is.
The converter rewrites your photo's identity:
- It rescales your image to 3024×4032 (the 12 MP portrait format of the Gen 2 glasses), correctly handling EXIF orientation — a sideways phone photo comes out upright.
- It rebuilds the camera metadata:
Make → Meta AI,Model → Ray-Ban Meta Smart Glasses 2, pixel dimensions and sRGB color-space tags set to match genuine glasses captures. - It cleans you out of the file first: GPS coordinates, the software/host-computer watermark, lens make/model strings, and camera maker notes are deleted, so the converted file carries none of your own device's trail.
- It hands the result straight to your phone: converted image preview (tap and hold to save), Base64 copy, and the native share sheet via the Web Share API.
The experience difference versus a general-purpose editor: there is nothing to configure. No settings, no quality sliders, no accounts — you tap a photo, press one button, and get a file that is byte-for-byte shaped like a glasses capture.
How to Use Meta Glasses Converter
- Open the official website — https://habeebbk.github.io/metarayban/ — in any mobile or desktop browser. No installation, no extension.
- Pick a photo. Tap 📷 Take Photo to shoot directly through your camera, or 🖼️ Photo Library (the big ⚡ drop zone does the same) to choose an existing picture. Only JPG/JPEG files are accepted — PNG, WebP, and HEIC show an error.
- Press ⚡ ALL-IN-ONE: Convert, Copy & Save. The app rescales the image to 3024×4032, rewrites the EXIF, and does three things at once: shows the converted preview (tagged "3024×4032 Ready"), copies the raw Base64 string to your clipboard, and opens your phone's share sheet — choose Save Image to drop it into your camera roll. On desktop it falls back to a normal download named
meta-glasses-converted.jpg. - Post it while the metadata is intact. To get the Ray-Ban Meta effects on Instagram, share the saved file directly into a new Story. Do not route it through WhatsApp, Telegram, or Messenger first — chat apps re-compress images and strip EXIF, which removes the glasses signature.
The two secondary buttons (📋 Copy Base64, 💾 Save / Share) re-run the copy and save steps individually if you skipped or cancelled them the first time.
What Exactly Does It Change? (Verified in Source Code)
We read the app's JavaScript (it loads the open-source piexif.js 1.0.6 library from cdnjs and uses the HTML5 Canvas). Here is the full metadata transformation:
| EXIF field | Your original photo | After conversion |
|---|---|---|
| Make | Apple / Samsung / Google… | Meta AI |
| Model | iPhone 15, Galaxy S24… | Ray-Ban Meta Smart Glasses 2 |
| Pixel dimensions | Variable | 3024 × 4032 |
| Orientation | 1–8 (varies) | 1 (pixels physically rotated upright) |
| ColorSpace | Varies | sRGB (tag 1) |
| GPS block | May contain lat/long/altitude | Deleted entirely |
| Software / HostComputer | e.g. "iOS 18.2" | Deleted |
| LensMake / LensModel / LensSpecification | Your phone's lens data | Deleted |
| MakerNote | Proprietary camera data | Deleted |
One thing to know before you convert a favorite photo: the resize step stretches the image to fill 3024×4032 — it does not crop to preserve your original aspect ratio. A landscape photo will look vertically stretched. Portrait or square photos survive the conversion much better, and re-encoding happens at JPEG quality 0.95, so there is a slight (usually invisible) quality loss.
Is Meta Glasses Converter Safe?
Based on the page source and live testing on September 3, 2026:
- Your photo never leaves your device. The entire app is one static HTML file with client-side JavaScript; there is no upload endpoint, no form, and no network call that carries image data. Processing happens in your browser via Canvas + piexif.js.
- No login, no tracking, no ads. We found no analytics scripts, no ad networks, and no third-party logins. The only external resources are Google Fonts (Plus Jakarta Sans) and the piexif.js library on cdnjs.
- It actively removes private data — GPS coordinates, device serials (maker notes), and software watermarks are stripped from every converted file.
- No payments are requested anywhere on the page, and the domain is plain GitHub Pages (
habeebbk.github.io), so the code you run is exactly what's published in the publicmetaraybanGitHub repository.
The honest caveats: the tool's purpose is to make a non-glasses photo carry glasses metadata. Using it to unlock an Instagram effect is harmless fun — but presenting a converted photo as a genuine glasses capture (to a buyer, a contest, or a client) is misrepresentation, and EXIF metadata is trivially easy for platforms to fake-check or for recipients to inspect. Also note the opposite risk: some people assume "EXIF says Ray-Ban Meta, therefore authentic." As this very tool demonstrates, metadata is editable — treat it as a weak signal, not proof.
Why Is Meta Glasses Converter Popular?
- The Instagram Ray-Ban Meta Story effect is the engine. Instagram reserves the glasses icon and 3D spin/parallax Story effect for photos with genuine Meta AI EXIF and 3024×4032 portrait framing. That turned "Ray-Ban Meta photo converter" into a search trend of its own — at least one competing converter (OD2's Ray-Ban Meta Spin View Converter) exists purely for this trick and documents the same detection criteria: matching Make/Model strings, exact pixel dimensions, and an sRGB color-space tag.
- The glasses are expensive; the format is free. A $299 hardware purchase versus a one-page website is an easy decision for someone who just wants the effect.
- It is new and moving fast. The GitHub repository shows the app was created September 1, 2026 and received mobile-experience fixes the very next day (Web Share API support, camera/gallery triggers, safe-area UI) — a quick iteration loop aimed squarely at phone users.
- Beyond Instagram, the same demand shows up elsewhere: Ray-Ban Meta communities have active threads from people hunting for original photos "with metadata intact." Meta Glasses Converter appears to be spreading through direct sharing and word-of-mouth in exactly those circles; there is no clear public source showing where the trend originated.
Meta Glasses Converter Not Working?
If the page won't load or a conversion misbehaves, try:
- Refresh the page (the app is a single file — a hard reload fixes most stale-cache issues).
- Open it in another browser; on iOS, Safari handles the Web Share / save-to-photos flow best.
- Temporarily disable ad blockers or privacy extensions — they can block the cdnjs script the EXIF engine depends on. Without piexif.js, conversion fails.
- Confirm your file is a JPG/JPEG. PNG, WebP, and HEIC files are rejected with an error — export to JPG first (iPhones: Settings → Camera → Formats → Most Compatible, or share out of Photos as JPEG).
- Check your photo's aspect ratio. The output is always 3024×4032 portrait; a landscape photo gets stretched — that's a design limitation, not a bug.
- If the "Save" step does nothing on desktop, use the preview image instead: tap and hold (mobile) or right-click (desktop) to save manually.
- Check whether the GitHub Pages deployment is still online — it's a free static host, and the developer may push updates at any time.
If the site is confirmed offline:
The original Meta Glasses Converter website appears to be unavailable as of September 3, 2026. The source remains viewable in the public
habeebbk/metaraybanrepository on GitHub.
Meta Glasses Converter Alternatives
- OD2 Ray-Ban Meta Spin View Converter (od2.in/meta-glasses-converter) — the closest competitor, built for the same Instagram trick; accepts JPG/PNG/WebP and crops "native fill" instead of stretching, though it lacks the Base64 copy feature.
- ExifTool (exiftool.org) — the desktop power-tool route: a free command-line utility that can set
Make/Model, resize, and strip GPS on any OS, with full control but no friendly buttons. - The official Meta AI app — if you actually own Ray-Ban Meta or Oakley Meta glasses, this is the legitimate way to import, manage, and share real glasses captures with their original metadata.
Frequently Asked Questions
What is the official Meta Glasses Converter website?
The official website is https://habeebbk.github.io/metarayban/ — a single-page app titled "Meta Glasses Converter — Mobile First." Beware of copycats; the tool's code is also published in the public habeebbk/metarayban GitHub repository.
Is Meta Glasses Converter free?
Yes. The tool is completely free with no ads, no premium tier, and no payment prompts of any kind.
Do I need an account to use Meta Glasses Converter?
No. There is no sign-up, login, or third-party authorization — you open the page and start converting.
Who created Meta Glasses Converter?
An independent developer publishing under the GitHub username habeebbk (contact: habeebbk950@gmail.com). The repository history shows the app was first committed on September 1, 2026.
Is Meta Glasses Converter still available?
Yes — the site was online and fully functional when we checked on September 3, 2026. It is hosted free on GitHub Pages, so brief downtime during updates is possible.
Why does my converted photo lose the glasses effect after sending it to a friend?
Chat apps like WhatsApp, Telegram, and Messenger re-compress images and strip EXIF metadata in transit. Save the converted file to your camera roll and upload it to Instagram directly.


