You can use Google dorks to find legal 3D SBS content. Try searching:
intitle:"index of" "3d sbs" "public domain" Index Of 3d Sbs
Legitimate indexes exist for:
Before downloading, it is vital to understand the two types of SBS files. Downloading the wrong one will result in a flat, 2D image. You can use Google dorks to find legal 3D SBS content
To the uninitiated, "Index of" sounds technical. In web terms, when a website does not have an index.html file, the server displays a simple directory listing of all the files inside a folder. This is the "Index." VR headsets (Quest, SteamVR): many VR players (e
When paired with "3D SBS" (Three-Dimensional, Side-by-Side), it refers to a raw directory listing of 3D movie files. Instead of a fancy Netflix-style poster wall, you see a plain list of filenames, often ending in .mkv, .mp4, or .avi.
import os
import json
from pathlib import Path
def index_3d_sbs(root_dir):
index = []
for file in Path(root_dir).rglob('.'):
if file.suffix.lower() in ['.mkv', '.mp4', '.avi', '.m2ts']:
name = file.stem
if 'SBS' in name or '3D' in name or 'half-sbs' in name.lower():
size_gb = file.stat().st_size / (1024**3)
index.append(
'filename': file.name,
'path': str(file),
'size_gb': round(size_gb, 2),
'format': 'Half-SBS' if 'half' in name.lower() or 'hsbs' in name.lower() else 'Full-SBS'
)
with open('sbs_index.json', 'w') as f:
json.dump(index, f, indent=2)
return index
VR headsets (Quest, SteamVR): many VR players (e.g., Skybox, DeoVR) natively support SBS files—choose “2D/360 → SBS” or “sided-by-side” mode.
Anaglyph conversion: software (e.g., FFmpeg filters, VirtualDub plugins) can convert SBS into red/cyan anaglyph for viewing with inexpensive glasses.