From fa97d94b55903feaedfec676f367d9b3289953ee Mon Sep 17 00:00:00 2001 From: pickaxe <54486432+ProspectOre@users.noreply.github.com> Date: Sun, 10 May 2026 23:53:18 -0700 Subject: [PATCH 1/3] Publish camera database release asset --- .github/workflows/release.yml | 13 +- build_camera_database.py | 371 + camera_database.json | 105023 +++++++++++++++++++++++++++++++ compress.rs | 2 +- 4 files changed, 105404 insertions(+), 5 deletions(-) create mode 100644 build_camera_database.py create mode 100644 camera_database.json diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 27ad2a45..c6564331 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,16 +14,21 @@ jobs: tool: rust-script - name: Compress profiles - run: chmod +x compress.rs && ./compress.rs + run: | + chmod +x compress.rs build_camera_database.py + ./compress.rs + ./build_camera_database.py - name: Save uses: actions/upload-artifact@v4 with: name: profiles - path: profiles.cbor.gz + path: | + profiles.cbor.gz + camera_database.json - name: Release uses: ncipollo/release-action@v1 with: - artifacts: profiles.cbor.gz - tag: "v${{ github.run_number }}" \ No newline at end of file + artifacts: profiles.cbor.gz,camera_database.json + tag: "v${{ github.run_number }}" diff --git a/build_camera_database.py b/build_camera_database.py new file mode 100644 index 00000000..1fb8b4c1 --- /dev/null +++ b/build_camera_database.py @@ -0,0 +1,371 @@ +#!/usr/bin/env python3 + +import argparse +import datetime as dt +import json +import pathlib +import re +import sys +import urllib.request +import xml.etree.ElementTree as ET + + +LENSFUN_API = "https://api.github.com/repos/lensfun/lensfun/contents/data/db?ref=master" +LENSFUN_RAW = "https://raw.githubusercontent.com/lensfun/lensfun/master/data/db/{name}" + + +def clean(value): + return re.sub(r"\s+", " ", value or "").strip() + + +def key(value): + return clean(value).casefold() + + +def brand_name(value): + normalized = key(value).replace(".", "") + names = { + "activeon": "ACTIVEON", + "apple": "Apple", + "akaso": "AKASO", + "arri": "ARRI", + "asus": "Asus", + "asahi optical co,ltd": "Pentax", + "betafpv": "BetaFPV", + "blackmagic": "Blackmagic", + "canon": "Canon", + "casio computer co,ltd": "Casio", + "casio computer co,ltd.": "Casio", + "cooau": "COOAU", + "dji": "DJI", + "eastman kodak company": "Kodak", + "eken": "EKEN", + "feiyu-tech": "Feiyu Tech", + "fimi": "FIMI", + "fufifilm": "Fujifilm", + "fujifilm": "Fujifilm", + "gitup": "GitUp", + "gopro": "GoPro", + "google": "Google", + "huawei": "Huawei", + "iqoo": "IQOO", + "iqoo 9": "IQOO", + "insta360": "Insta360", + "lamax": "LAMAX", + "leica": "Leica", + "leica camera ag": "Leica", + "lg mobile": "LG", + "lge": "LG", + "mi": "Xiaomi", + "nikon": "Nikon", + "nikon corporation": "Nikon", + "olympus": "Olympus", + "olympus corporation": "Olympus", + "olympus imaging corp": "Olympus", + "olympus optical co,ltd": "Olympus", + "oneplus": "OnePlus", + "oppo": "OPPO", + "panasonic": "Panasonic", + "pentax": "Pentax", + "pentax corporation": "Pentax", + "red": "RED", + "ricoh": "Ricoh", + "runcam": "RunCam", + "samsung": "Samsung", + "samsung techwin": "Samsung", + "samsung techwin co": "Samsung", + "sjcam": "SJCam", + "sony": "Sony", + "volla": "Volla", + "vivo": "Vivo", + "wolfang": "Wolfang", + "wolfgang": "Wolfang", + "xiaomi": "Xiaomi", + } + return names.get(normalized, clean(value)) + + +def camera_brand_name(brand, model): + normalized = key(brand).replace(".", "") + if normalized == "ricoh imaging company, ltd": + return "Pentax" if re.match(r"^(K-|K[A-Z]|KP$|KF$)", clean(model)) else "Ricoh" + return brand_name(brand) + + +def model_name(brand, model): + model = clean(model).replace("CInema", "Cinema") + if key(brand) == "blackmagic": + model = re.sub(r"\b([46])k\b", lambda match: f"{match.group(1)}K", model, flags=re.IGNORECASE) + return model + + +def first_float(value): + try: + return float(value) + except (TypeError, ValueError): + return None + + +def sensor_size(crop_factor): + if crop_factor is None: + return None + if crop_factor <= 1.1: + return "Full frame" + if crop_factor <= 1.35: + return "APS-H" + if crop_factor <= 1.7: + return "APS-C" + if crop_factor <= 2.2: + return "Micro Four Thirds" + if crop_factor <= 3.0: + return "1-inch" + if crop_factor <= 4.8: + return "1/1.7-inch" + if crop_factor <= 6.2: + return "1/2.3-inch" + return "Small sensor" + + +def child_texts(node, tag): + return [clean(x.text) for x in node.findall(tag) if clean(x.text)] + + +def preferred_model(node): + models = [(clean(x.text), x.attrib.get("lang", "")) for x in node.findall("model") if clean(x.text)] + if not models: + return "", [] + + preferred = next((text for text, lang in models if lang == "en"), models[0][0]) + aliases = [] + seen = {key(preferred)} + for text, _lang in models: + if key(text) not in seen: + aliases.append(text) + seen.add(key(text)) + return preferred, aliases + + +def extra_camera_aliases(brand, model): + aliases = [] + if key(brand) == "sony": + match = re.fullmatch(r"Alpha\s+(\d+)([A-Z]*)?(?:\s+([0-9IVX]+[A-Z]?))?", clean(model)) + if match: + number, series, generation = match.groups() + aliases.append(f"a{number}{series or ''}{generation or ''}") + return aliases + + +def merge_values(target, values): + existing = {key(x) for x in target} + for value in values: + if value and key(value) not in existing: + target.append(value) + existing.add(key(value)) + + +def merge_camera(cameras, camera): + original_brand = clean(camera["brand"]) + camera["brand"] = camera_brand_name(camera["brand"], camera["model"]) + camera["model"] = model_name(camera["brand"], camera["model"]) + if not camera["brand"] or not camera["model"]: + return + if original_brand and key(original_brand) != key(camera["brand"]): + camera.setdefault("brand_aliases", []).append(original_brand) + + camera_key = (key(camera["brand"]), key(camera["model"])) + if camera_key not in cameras: + camera_key = next(( + existing_key + for existing_key, existing in cameras.items() + if existing_key[0] == key(camera["brand"]) and + any(key(alias) == key(camera["model"]) for alias in existing["aliases"]) + ), camera_key) + existing = cameras.setdefault(camera_key, { + "brand": camera["brand"], + "model": camera["model"], + "brand_aliases": [], + "aliases": [], + "mounts": [], + "compatible_mounts": [], + "sensor_size": None, + "crop_factor": None, + "source": [], + }) + if key(existing["model"]) != key(camera["model"]): + merge_values(existing["aliases"], [camera["model"]]) + merge_values(existing["brand_aliases"], camera.get("brand_aliases", [])) + merge_values(existing["aliases"], camera.get("aliases", [])) + merge_values(existing["mounts"], camera.get("mounts", [])) + merge_values(existing["compatible_mounts"], camera.get("compatible_mounts", [])) + merge_values(existing["source"], camera.get("source", [])) + if existing["crop_factor"] is None: + existing["crop_factor"] = camera.get("crop_factor") + if existing["sensor_size"] is None: + existing["sensor_size"] = camera.get("sensor_size") or sensor_size(existing["crop_factor"]) + + +def merge_lens(lenses, lens): + lens["brand"] = brand_name(lens["brand"]) + if not lens["model"]: + return + + lens_key = (key(lens["brand"]), key(lens["model"]), tuple(sorted(key(x) for x in lens.get("mounts", [])))) + existing = lenses.setdefault(lens_key, { + "brand": lens["brand"], + "model": lens["model"], + "mounts": [], + "crop_factor": None, + "source": [], + }) + merge_values(existing["mounts"], lens.get("mounts", [])) + merge_values(existing["source"], lens.get("source", [])) + if existing["crop_factor"] is None: + existing["crop_factor"] = lens.get("crop_factor") + + +def github_json(url): + request = urllib.request.Request(url, headers={"User-Agent": "gyroflow-camera-database"}) + with urllib.request.urlopen(request, timeout=30) as response: + return json.loads(response.read().decode("utf-8")) + + +def github_text(url): + request = urllib.request.Request(url, headers={"User-Agent": "gyroflow-camera-database"}) + with urllib.request.urlopen(request, timeout=30) as response: + return response.read().decode("utf-8") + + +def lensfun_xml_files(lensfun_db): + if lensfun_db: + for path in sorted(pathlib.Path(lensfun_db).glob("*.xml")): + yield path + return + + files = github_json(LENSFUN_API) + for item in files: + name = item.get("name", "") + if name.endswith(".xml") and not name.endswith((".dtd", ".xsd")): + yield name + + +def parse_lensfun_file(item, cameras, lenses): + if isinstance(item, pathlib.Path): + text = item.read_text(encoding="utf-8") + else: + text = github_text(LENSFUN_RAW.format(name=item)) + + root = ET.fromstring(text) + mount_compat = {} + + for mount in root.findall("mount"): + names = child_texts(mount, "name") + if not names: + continue + mount_compat[key(names[0])] = child_texts(mount, "compat") + + for node in root.findall("camera"): + brand = clean((node.findtext("maker") or "")) + model, aliases = preferred_model(node) + merge_values(aliases, extra_camera_aliases(brand, model)) + mounts = child_texts(node, "mount") + compatible_mounts = [] + for mount in mounts: + merge_values(compatible_mounts, mount_compat.get(key(mount), [])) + + merge_camera(cameras, { + "brand": brand, + "model": model, + "aliases": aliases, + "mounts": mounts, + "compatible_mounts": compatible_mounts, + "sensor_size": sensor_size(first_float(node.findtext("cropfactor"))), + "crop_factor": first_float(node.findtext("cropfactor")), + "source": ["lensfun"], + }) + + for node in root.findall("lens"): + brand = clean((node.findtext("maker") or "")) + model, _aliases = preferred_model(node) + merge_lens(lenses, { + "brand": brand, + "model": model, + "mounts": child_texts(node, "mount"), + "crop_factor": first_float(node.findtext("cropfactor")), + "source": ["lensfun"], + }) + + +def parse_lensfun(lensfun_db, cameras, lenses): + for item in lensfun_xml_files(lensfun_db): + parse_lensfun_file(item, cameras, lenses) + + +def parse_profiles(path, cameras, lenses): + if not path or not path.exists(): + return + + for file in sorted(path.rglob("*.json")): + try: + profile = json.loads(file.read_text(encoding="utf-8")) + except (OSError, json.JSONDecodeError): + continue + + brand = clean(profile.get("camera_brand", "")) + model = clean(profile.get("camera_model", "")) + lens_model = clean(profile.get("lens_model", "")) + if not brand or not model: + continue + + merge_camera(cameras, { + "brand": brand, + "model": model, + "aliases": [], + "mounts": [], + "compatible_mounts": [], + "sensor_size": sensor_size(first_float(profile.get("crop_factor"))), + "crop_factor": first_float(profile.get("crop_factor")), + "source": ["gyroflow"], + }) + if lens_model: + merge_lens(lenses, { + "brand": "", + "model": lens_model, + "mounts": [], + "crop_factor": first_float(profile.get("crop_factor")), + "source": ["gyroflow"], + }) + + +def finalize(cameras, lenses): + camera_list = sorted(cameras.values(), key=lambda x: (key(x["brand"]), key(x["model"]))) + lens_list = sorted(lenses.values(), key=lambda x: (key(x["brand"]), key(x["model"]))) + return camera_list, lens_list + + +def main(): + repo_root = pathlib.Path(__file__).resolve().parent + parser = argparse.ArgumentParser() + parser.add_argument("--lens-profiles", type=pathlib.Path, default=repo_root) + parser.add_argument("--lensfun-db", type=pathlib.Path) + parser.add_argument("--output", type=pathlib.Path, default=repo_root / "camera_database.json") + args = parser.parse_args() + + cameras = {} + lenses = {} + + parse_lensfun(args.lensfun_db, cameras, lenses) + parse_profiles(args.lens_profiles, cameras, lenses) + camera_list, lens_list = finalize(cameras, lenses) + + payload = { + "version": 1, + "updated_at": dt.datetime.now(dt.timezone.utc).strftime("%Y-%m-%d"), + "cameras": camera_list, + "lenses": lens_list, + } + args.output.write_text(json.dumps(payload, indent=2, ensure_ascii=True, sort_keys=True) + "\n", encoding="utf-8") + print(f"Wrote {args.output} ({len(camera_list)} cameras, {len(lens_list)} lenses)") + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/camera_database.json b/camera_database.json new file mode 100644 index 00000000..353d6af7 --- /dev/null +++ b/camera_database.json @@ -0,0 +1,105023 @@ +{ + "cameras": [ + { + "aliases": [], + "brand": "ACTIVEON", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "CX", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "AEE", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Lyfe Titan", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "AEE", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Magicam s60", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "AEE", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S50 pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "AEE", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S90R", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "AEE DV" + ], + "brand": "AEE DV", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.0, + "model": "AEE MagiCam SD19 & compatibles", + "mounts": [ + "aeeDV" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "AIKUCAM", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "NANO1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "AKASO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "B8", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "AKASO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Brave 4 4k", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "AKASO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Brave 6 Plus", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "AKASO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Brave 7", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "AKASO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Brave 7 Le", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "AKASO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Brave 8", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "AKASO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EK7000", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "AKASO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EK7000Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "AKASO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Keychain", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "AKASO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "KeyChain_1920x1080", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "AKASO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "snapX", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "AKASO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "V50", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "AKASO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "V50 Elite", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "AKASO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "V50 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "AKASO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "V50 X", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "AKASO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "V50x", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Aksogo", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SnapX", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Andoer", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "AN7000", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Aolbea", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Body camera", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "apeman", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "4K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apeman", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A100", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apeman", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A100 Trawo", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "apeman", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A77", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apeman", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A80", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apeman", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A87", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apexcam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "M80 Air", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPad Pro 11-inch (2020)", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 11", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 11 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 11 Pro Max", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 12", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 12 Mini", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 12 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 12 Pro MAX", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 13", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 13 3x", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 13 mini", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 13 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 13 Pro (v1.1)", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 13 Pro Max", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 13pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 14", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 14 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 14 Pro Max", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 14 Pro Mox", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 14pm", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 15", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 15 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 15 Pro 24mm", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 15 PRO GA", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 15 Pro MAX", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 15pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 26mm", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 6s", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 7", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 7 Plus", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 8", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone 8 Plus", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone Pro max", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone SE", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone SE (2nd generation)", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone SE (3rd gen)", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone SE 2019", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone SE2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone se3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone X", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone XR", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.118, + "model": "iPhone XS", + "mounts": [ + "iPhoneXS" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 8.667, + "model": "iPhone XS (tele)", + "mounts": [ + "iPhoneXStele" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone xs 2x zoom", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Apple", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iPhone XS Max", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Arducam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "12.3MP 1/2.3 Inch IMX477 HQ Camera Module", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "ARRI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "35", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "ARRI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Alexa 35", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "ARRI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Alexa LF", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "ARRI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Alexa Mini", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Asus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ROG Phone 7 Ultimate", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Asus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Zenfone6 ZS630KL", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Asus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Zenphone 9", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Ausek", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "AT-Q40C", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "AXNEN", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A10", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "BetaFPV", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HD_X65HD", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "BetaFPV", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Nano HD", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Biwond", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EX3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackberry", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "BB2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackberry", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Key2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackmagic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Cinema Camera 6K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackmagic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Cinema Pocket Camera 6K G2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackmagic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.88, + "model": "Micro Cinema Camera", + "mounts": [], + "sensor_size": "1-inch", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackmagic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Micro Studio Camera 4K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackmagic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Micro Studio Camera 4K G2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackmagic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pocker Cinema Camera 4K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackmagic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pocket (OG)", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackmagic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pocket Cinema Camera", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackmagic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pocket Cinema Camera (2013 first model)", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackmagic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pocket Cinema Camera 2013", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackmagic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 0.75, + "model": "Pocket Cinema Camera 4K", + "mounts": [], + "sensor_size": "Full frame", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackmagic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pocket Cinema Camera 4K V2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackmagic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.55, + "model": "Pocket Cinema Camera 6K", + "mounts": [], + "sensor_size": "APS-C", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackmagic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pocket Cinema Camera 6K G2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackmagic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "Pocket Cinema Camera 6K Pro", + "mounts": [], + "sensor_size": "Full frame", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackmagic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pocket Cinema Camera C4K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackmagic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pocket Cinema Camera HD", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackmagic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pocket Cinema Camera OG", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackmagic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pocket Cinema Camera Original", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackmagic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pocket Cinema Camera SHIMA", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackmagic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pocket OG", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackmagic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Ursa Mini 12k", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackmagic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Ursa Mini 4.6K PL", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackmagic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "URSA Mini Pro 12K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackmagic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "URSA Mini Pro 4.6K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackshark", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blackvue", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "DR900x Plus", + "mounts": [], + "sensor_size": "Full frame", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Blaupunkt", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "bp 6410", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Ant", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Avatar HD", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Avatar Moonlight", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "AVATAR-HD PRO", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Baby Turtle", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "BabyTurtle", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "CADDX Nebula Pro Nano", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "DJI Camera", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "LORIS", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Loris 4K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Lorris", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Nano Walksnail", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Nebula Nano", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Nebula Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Nebula Pro Micro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Nebula Pro Nano", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "nebula pro vista kit", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ORCA", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Orca 4K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Orca 4K 25fps LDC", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Peanut", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Polar", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Polar Nano", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Polar Starlight", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Ratel", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Ratel V2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Tarsier", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Tarsier 4K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "TARSIER V2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ThumbPro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Turtle", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Turtle v1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Turtle V2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "turtle_v2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Vista", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Walnut", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Caddx", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Walnut cam", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "CamPark", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X30", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "CamPark", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X40", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "100D Magic Lantern", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "1100D", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "1300D", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "1DX", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "1DX Mark II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "200 d2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.6, + "model": "200D", + "mounts": [], + "sensor_size": "APS-C", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.6, + "model": "200D / SL2", + "mounts": [], + "sensor_size": "APS-C", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "200d Mark II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "250D", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.0, + "model": "35mm film: full frame", + "mounts": [ + "Canon EF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "4000D", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "550D", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "5D mark 2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "5D Mark 4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "5D Mark II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "5D Mark III", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "5D Mark IV", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "5D4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "5R", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "600D", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "60D", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "650D", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "6D", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "6D Mark 2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "6D Mark II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "700D", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "700D / T5I", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "700D T5i X7i", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "70D", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "750D", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "77d", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "7D", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "800D", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "80D", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "90D", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "C100", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "C100 MKII", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "C200", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "C300", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "C300 Mk 1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "C70", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "C80", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Canon R", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "d700", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EOS 1 DX MK3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS 1000D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.622, + "model": "EOS 1000D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS 100D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS 100D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS 10D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.587, + "model": "EOS 10D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS 1100D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.62, + "model": "EOS 1100D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS 1200D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.62, + "model": "EOS 1200D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS 1300D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.62, + "model": "EOS 1300D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS 2000D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS 2000D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS 200D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS 200D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS 200D II" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS 200D II", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS 20D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.6, + "model": "EOS 20D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS 250D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS 250D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS 300D DIGITAL" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.587, + "model": "EOS 300D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS 30D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.6, + "model": "EOS 30D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS 350D DIGITAL" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.622, + "model": "EOS 350D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS 4000D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS 4000D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS 400D DIGITAL" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.622, + "model": "EOS 400D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS 40D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.622, + "model": "EOS 40D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS 450D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.622, + "model": "EOS 450D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS 500D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS 500D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS 50D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.622, + "model": "EOS 50D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS 550D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS 550D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS 5D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.0, + "model": "EOS 5D", + "mounts": [ + "Canon EF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS 5D Mark II" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.0, + "model": "EOS 5D Mark II", + "mounts": [ + "Canon EF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS 5D Mark III" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.0, + "model": "EOS 5D Mark III", + "mounts": [ + "Canon EF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS 5D Mark IV" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.0, + "model": "EOS 5D Mark IV", + "mounts": [ + "Canon EF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EOS 5DIII", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS 5DS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.0, + "model": "EOS 5DS", + "mounts": [ + "Canon EF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS 5DS R" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.0, + "model": "EOS 5DS R", + "mounts": [ + "Canon EF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EOS 6 Mark 2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS 600D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS 600D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS 60D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.62, + "model": "EOS 60D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS 650D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS 650D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS 6D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.005, + "model": "EOS 6D", + "mounts": [ + "Canon EF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS 6D Mark II" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.005, + "model": "EOS 6D Mark II", + "mounts": [ + "Canon EF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EOS 6D mk2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EOS 6D2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EOS 6DII", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EOS 6R", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS 700D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS 700D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS 70D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.6, + "model": "EOS 70D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS 750D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS 750D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS 760D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS 760D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS 77D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS 77D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS 7D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.62, + "model": "EOS 7D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS 7D Mark II" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.605, + "model": "EOS 7D Mark II", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS 8000D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS 8000D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS 800D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS 800D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS 80D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS 80D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EOS 80D18-135 f/3.5-5.6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS 850D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS 850D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS 9000D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS 9000D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS 90D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS 90D", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EOS C100mkii", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EOS C200", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EOS C70", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.593, + "model": "EOS D2000", + "mounts": [ + "Canon EF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS D30" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.587, + "model": "EOS D30", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS D60" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.587, + "model": "EOS D60", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS DIGITAL REBEL" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.587, + "model": "EOS Digital REBEL", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS DIGITAL REBEL XS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.622, + "model": "EOS Digital Rebel XS", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS DIGITAL REBEL XSi" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.622, + "model": "EOS Digital Rebel XSi", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS DIGITAL REBEL XT" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.622, + "model": "EOS Digital Rebel XT", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS DIGITAL REBEL XTi" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.622, + "model": "EOS Digital Rebel XTi", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS Hi" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.62, + "model": "EOS Hi", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS Kiss Digital" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.587, + "model": "EOS Kiss Digital", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS Kiss Digital F" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.622, + "model": "EOS Kiss Digital F", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS Kiss Digital N" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.622, + "model": "EOS Kiss Digital N", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS Kiss Digital X" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.622, + "model": "EOS Kiss Digital X", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS Kiss Digital X2" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.622, + "model": "EOS Kiss Digital X2", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS KISS M" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS KISS M", + "mounts": [ + "Canon EF-M" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS Kiss X10i" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS Kiss X10i", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS Kiss X3" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS Kiss X3", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS Kiss X4" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS Kiss X4", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS Kiss X5" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS Kiss X5", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS Kiss X50" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.62, + "model": "EOS Kiss X50", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS Kiss X6i" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS Kiss X6i", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS Kiss X7" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS Kiss X7", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS Kiss X70" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.62, + "model": "EOS Kiss X70", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS Kiss X7i" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS Kiss X7i", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS Kiss X8i" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS Kiss X8i", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS Kiss X9" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS Kiss X9", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS Kiss X90" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS Kiss X90", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS Kiss X9i" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS Kiss X9i", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS M" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS M", + "mounts": [ + "Canon EF-M" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EOS m crop mood", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EOS M MLV", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS M10" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS M10", + "mounts": [ + "Canon EF-M" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS M100" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS M100", + "mounts": [ + "Canon EF-M" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS M2" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS M2", + "mounts": [ + "Canon EF-M" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS M200" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS M200", + "mounts": [ + "Canon EF-M" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS M3" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS M3", + "mounts": [ + "Canon EF-M" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS M5" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS M5", + "mounts": [ + "Canon EF-M" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS M50" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS M50", + "mounts": [ + "Canon EF-M" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EOS M50 Mark 2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS M50m2" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS M50 Mark II", + "mounts": [ + "Canon EF-M" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "eos m50 mii", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS M6" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS M6", + "mounts": [ + "Canon EF-M" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS M6 Mark II" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS M6 Mark II", + "mounts": [ + "Canon EF-M" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EOS M6II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EOS Mark II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS R" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "EOS R", + "mounts": [ + "Canon RF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS R1" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "EOS R1", + "mounts": [ + "Canon RF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS R10" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS R10", + "mounts": [ + "Canon RF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS R100" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS R100", + "mounts": [ + "Canon RF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS R3" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "EOS R3", + "mounts": [ + "Canon RF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS R5" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "EOS R5", + "mounts": [ + "Canon RF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS R5 C" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "EOS R5 C", + "mounts": [ + "Canon RF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS R5m2" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "EOS R5 Mark II", + "mounts": [ + "Canon RF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS R50" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS R50", + "mounts": [ + "Canon RF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS R50 V" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS R50 V", + "mounts": [ + "Canon RF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EOS R5C", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS R6" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "EOS R6", + "mounts": [ + "Canon RF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS R6m2" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "EOS R6 Mark II", + "mounts": [ + "Canon RF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS R6 Mark III" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "EOS R6 Mark III", + "mounts": [ + "Canon RF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EOS R62", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS R7" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS R7", + "mounts": [ + "Canon RF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS R8" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "EOS R8", + "mounts": [ + "Canon RF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS REBEL SL1" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS Rebel SL1", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS REBEL SL2" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS Rebel SL2", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS REBEL SL3" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS Rebel SL3", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS Rebel T100" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS Rebel T100", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS REBEL T1i" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS Rebel T1i", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS REBEL T2i" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS Rebel T2i", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS REBEL T3" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.62, + "model": "EOS Rebel T3", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS REBEL T3i" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS Rebel T3i", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS REBEL T4i" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS Rebel T4i", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS REBEL T5" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.62, + "model": "EOS Rebel T5", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS REBEL T5i" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS Rebel T5i", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS Rebel T6" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.62, + "model": "EOS Rebel T6", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS Rebel T6i" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS Rebel T6i", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS Rebel T6s" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS Rebel T6s", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS Rebel T7" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS Rebel T7", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS REBEL T7i" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS Rebel T7i", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS Rebel T8i" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.613, + "model": "EOS Rebel T8i", + "mounts": [ + "Canon EF-S" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS RP" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "Canon EF-S", + "Canon EF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "EOS RP", + "mounts": [ + "Canon RF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EOS T6S", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Canon EOS-1D" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.255, + "model": "EOS-1D", + "mounts": [ + "Canon EF" + ], + "sensor_size": "APS-H", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS-1D Mark II" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.255, + "model": "EOS-1D Mark II", + "mounts": [ + "Canon EF" + ], + "sensor_size": "APS-H", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS-1D Mark II N" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.255, + "model": "EOS-1D Mark II N", + "mounts": [ + "Canon EF" + ], + "sensor_size": "APS-H", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS-1D Mark III" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.282, + "model": "EOS-1D Mark III", + "mounts": [ + "Canon EF" + ], + "sensor_size": "APS-H", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS-1D Mark IV" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.29, + "model": "EOS-1D Mark IV", + "mounts": [ + "Canon EF" + ], + "sensor_size": "APS-H", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS-1D X" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.0, + "model": "EOS-1D X", + "mounts": [ + "Canon EF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS-1D X Mark II" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.0, + "model": "EOS-1D X Mark II", + "mounts": [ + "Canon EF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS-1Ds" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.0, + "model": "EOS-1Ds", + "mounts": [ + "Canon EF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS-1Ds Mark II" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.0, + "model": "EOS-1Ds Mark II", + "mounts": [ + "Canon EF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon EOS-1Ds Mark III" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.0, + "model": "EOS-1Ds Mark III", + "mounts": [ + "Canon EF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EOSD 1 DX MK3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "G7X Mark 2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "G7X Mark II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "G9X M2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Canon IXUS 125 HS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.58, + "model": "IXUS 125 HS", + "mounts": [ + "canonIxus125HS" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon IXUS 220 HS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.58, + "model": "IXUS 220 HS", + "mounts": [ + "canonIxus220HS" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon DIGITAL IXUS 30" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "IXUS 30", + "mounts": [ + "canonSD200" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon DIGITAL IXUS 40" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "IXUS 40", + "mounts": [ + "canonSD200" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon DIGITAL IXUS 400" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "IXUS 400", + "mounts": [ + "canonIxus400" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon DIGITAL IXUS 430" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "IXUS 430", + "mounts": [ + "canonIxus400" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon DIGITAL IXUS 50" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "IXUS 50", + "mounts": [ + "canonSD200" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon DIGITAL IXUS 500" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "IXUS 500", + "mounts": [ + "canonIxus400" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon DIGITAL IXUS 55" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "IXUS 55", + "mounts": [ + "canonSD200" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon DIGITAL IXUS 70" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "IXUS 70", + "mounts": [ + "canonSD200" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon DIGITAL IXUS 700" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.8, + "model": "IXUS 700", + "mounts": [ + "canonSD500" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon DIGITAL IXUS 750" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.8, + "model": "IXUS 750", + "mounts": [ + "canonSD500" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon DIGITAL IXUS 80 IS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.02, + "model": "IXUS 80 IS", + "mounts": [ + "canonIxus80IS" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon DIGITAL IXUS 95 IS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.6, + "model": "IXUS 95 IS", + "mounts": [ + "canonIxus80IS" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon DIGITAL IXUS i" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.144, + "model": "IXUS i", + "mounts": [ + "canonIxusI" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon DIGITAL IXUS II" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.5, + "model": "IXUS II", + "mounts": [ + "canonIxusII" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon DIGITAL IXUS v2" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.5, + "model": "IXUS v2", + "mounts": [ + "canonIxusII" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon IXY DIGITAL 200a" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.5, + "model": "IXY 200a", + "mounts": [ + "canonIxusII" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon IXY 220F" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.58, + "model": "IXY 220F", + "mounts": [ + "canonIxy220F" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon IXY DIGITAL 30" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.5, + "model": "IXY 30", + "mounts": [ + "canonIxusII" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon IXY DIGITAL 40" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "IXY 40", + "mounts": [ + "canonSD200" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon IXY DIGITAL 400" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "IXY 400", + "mounts": [ + "canonIxus400" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon IXY DIGITAL 450" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "IXY 450", + "mounts": [ + "canonIxus400" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon IXY DIGITAL 50" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "IXY 50", + "mounts": [ + "canonSD200" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon IXY DIGITAL 500" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "IXY 500", + "mounts": [ + "canonIxus400" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon IXY DIGITAL 55" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "IXY 55", + "mounts": [ + "canonSD200" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.8, + "model": "IXY Digital 600", + "mounts": [ + "canonSD500" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.8, + "model": "IXY Digital 700", + "mounts": [ + "canonSD500" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Legria G20", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "m100", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "M200", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "M50", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "M50 Mark 1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "m50 mark 2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "M50 mark I", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "M50 Mark II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "M6 II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "M6 Mark II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mark2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Canon PowerShot A10" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.5, + "model": "PowerShot A10", + "mounts": [ + "canonA70" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot A1200" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.61, + "model": "PowerShot A1200", + "mounts": [ + "canonA1200" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot A20" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.5, + "model": "PowerShot A20", + "mounts": [ + "canonA70" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot A30" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.5, + "model": "PowerShot A30", + "mounts": [ + "canonA70" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot A40" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.5, + "model": "PowerShot A40", + "mounts": [ + "canonA70" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot A4000 IS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.6, + "model": "PowerShot A4000 IS", + "mounts": [ + "canonA4000IS" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot A490" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.39, + "model": "PowerShot A490", + "mounts": [ + "canonA495" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot A495" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.39, + "model": "PowerShot A495", + "mounts": [ + "canonA495" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot A510" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "PowerShot A510", + "mounts": [ + "canonA510" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot A520" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "PowerShot A520", + "mounts": [ + "canonA510" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot A60" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.5, + "model": "PowerShot A60", + "mounts": [ + "canonA70" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot A610" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.8, + "model": "PowerShot A610", + "mounts": [ + "canonA610" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot A620" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.8, + "model": "PowerShot A620", + "mounts": [ + "canonA610" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot A640" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.79, + "model": "PowerShot A640", + "mounts": [ + "canonA640" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot A650 IS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.67712, + "model": "PowerShot A650 IS", + "mounts": [ + "canonA650IS" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot A70" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.5, + "model": "PowerShot A70", + "mounts": [ + "canonA70" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot A720 IS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.03, + "model": "PowerShot A720 IS", + "mounts": [ + "canonA720IS" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot A75" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.5, + "model": "PowerShot A75", + "mounts": [ + "canonA70" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot A80" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.85, + "model": "PowerShot A80", + "mounts": [ + "canonA80" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot A85" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.5, + "model": "PowerShot A85", + "mounts": [ + "canonA70" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot A95" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.85, + "model": "PowerShot A95", + "mounts": [ + "canonA80" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot ELPH 110 HS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.58, + "model": "PowerShot ELPH 110 HS", + "mounts": [ + "canonIxus125HS" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G1" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "PowerShot G1", + "mounts": [ + "canonG1" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G1 X" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.85, + "model": "PowerShot G1 X", + "mounts": [ + "canonG1X" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G1 X Mark II" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.93, + "model": "PowerShot G1 X Mark II", + "mounts": [ + "canonG1X2" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G1 X Mark III" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.613, + "model": "PowerShot G1 X Mark III", + "mounts": [ + "canonG1X3" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G10" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.605, + "model": "PowerShot G10", + "mounts": [ + "canonG10" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G11" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.554, + "model": "PowerShot G11", + "mounts": [ + "canonG11" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G12" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.63, + "model": "PowerShot G12", + "mounts": [ + "canonG12" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G15" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.65, + "model": "PowerShot G15", + "mounts": [ + "canonG15" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G16" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.67, + "model": "PowerShot G16", + "mounts": [ + "canonG16" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G2" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "PowerShot G2", + "mounts": [ + "canonG2" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G3" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "PowerShot G3", + "mounts": [ + "canonG3" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G3 X" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.727, + "model": "PowerShot G3 X (3:2)", + "mounts": [ + "canonG3X" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G5" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "PowerShot G5", + "mounts": [ + "canonG3" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G5 X 16:9" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.85, + "model": "PowerShot G5 X (16:9)", + "mounts": [ + "canonG7X" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G5 X" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.72, + "model": "PowerShot G5 X (3:2)", + "mounts": [ + "canonG7X" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G5 X 4:3" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.94, + "model": "PowerShot G5 X (4:3)", + "mounts": [ + "canonG7X" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G5 X Mark II" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "PowerShot G5 X Mark II", + "mounts": [ + "canonG5X2" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G6" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "PowerShot G6", + "mounts": [ + "canonG3" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G7" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "PowerShot G7", + "mounts": [ + "canonG7" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G7 X 16:9" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.85, + "model": "PowerShot G7 X (16:9)", + "mounts": [ + "canonG7X" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G7 X" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.72, + "model": "PowerShot G7 X (3:2)", + "mounts": [ + "canonG7X" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G7 X 4:3" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.94, + "model": "PowerShot G7 X (4:3)", + "mounts": [ + "canonG7X" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G7 X Mark II 16:9" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.85, + "model": "PowerShot G7 X Mark II (16:9)", + "mounts": [ + "canonG7X" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G7 X Mark II" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.72, + "model": "PowerShot G7 X Mark II (3:2)", + "mounts": [ + "canonG7X" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G7 X Mark II 4:3" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.94, + "model": "PowerShot G7 X Mark II (4:3)", + "mounts": [ + "canonG7X" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G7 X Mark III" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.72, + "model": "PowerShot G7 X Mark III (3:2)", + "mounts": [ + "canonG7X" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G9" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.605, + "model": "PowerShot G9", + "mounts": [ + "canonG9" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G9 X" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.72, + "model": "PowerShot G9 X", + "mounts": [ + "canonG9X" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot G9 X Mark II" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.72, + "model": "PowerShot G9 X Mark II", + "mounts": [ + "canonG9X" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot Pro1" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 3.933, + "model": "PowerShot Pro1", + "mounts": [ + "canonPro1" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot Pro70" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.47, + "model": "PowerShot Pro70", + "mounts": [ + "canonPro70" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot Pro90 IS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.28, + "model": "PowerShot Pro90 IS", + "mounts": [ + "canonPro90" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot S1 IS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.56, + "model": "PowerShot S1 IS", + "mounts": [ + "canonS1" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot S100" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.62, + "model": "PowerShot S100", + "mounts": [ + "canonS100" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot S110" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.62, + "model": "PowerShot S110", + "mounts": [ + "canonS110" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot S120" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.62, + "model": "PowerShot S120", + "mounts": [ + "canonS120" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot S2 IS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.0, + "model": "PowerShot S2 IS", + "mounts": [ + "canonS2" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot S200" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.5, + "model": "PowerShot S200", + "mounts": [ + "canonIxusII" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot S30" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "PowerShot S30", + "mounts": [ + "canonS30" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot S40" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "PowerShot S40", + "mounts": [ + "canonS30" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot S400" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "PowerShot S400", + "mounts": [ + "canonIxus400" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot S410" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "PowerShot S410", + "mounts": [ + "canonIxus400" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot S45" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "PowerShot S45", + "mounts": [ + "canonS30" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot S5 IS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.0, + "model": "PowerShot S5 IS", + "mounts": [ + "canonS5" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot S50" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "PowerShot S50", + "mounts": [ + "canonS30" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot S500" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "PowerShot S500", + "mounts": [ + "canonIxus400" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot S60" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "PowerShot S60", + "mounts": [ + "canonS70" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot S70" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "PowerShot S70", + "mounts": [ + "canonS70" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot S80" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "PowerShot S80", + "mounts": [ + "canonS70" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot S90" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.67, + "model": "PowerShot S90", + "mounts": [ + "canonS90" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot S95" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.67, + "model": "PowerShot S95", + "mounts": [ + "canonS95" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot SD10" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.144, + "model": "PowerShot SD10", + "mounts": [ + "canonIxusI" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot SD100" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.5, + "model": "PowerShot SD100", + "mounts": [ + "canonIxusII" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot SD110" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.5, + "model": "PowerShot SD110", + "mounts": [ + "canonIxusII" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot SD1100 IS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.02, + "model": "PowerShot SD1100 IS", + "mounts": [ + "canonIxus80IS" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot SD200" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "PowerShot SD200", + "mounts": [ + "canonSD200" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot SD300" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "PowerShot SD300", + "mounts": [ + "canonSD200" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot SD400" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "PowerShot SD400", + "mounts": [ + "canonSD200" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot SD450" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "PowerShot SD450", + "mounts": [ + "canonSD200" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot SD500" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.8, + "model": "PowerShot SD500", + "mounts": [ + "canonSD500" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot SD550" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.8, + "model": "PowerShot SD550", + "mounts": [ + "canonSD500" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot SD950 IS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.7, + "model": "PowerShot SD950 IS", + "mounts": [ + "canonSD950" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot SX1 IS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.5, + "model": "PowerShot SX1 IS", + "mounts": [ + "canonSX1" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot SX10 IS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.6, + "model": "PowerShot SX10 IS", + "mounts": [ + "canonSX10IS" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot SX130 IS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.62, + "model": "PowerShot SX130 IS", + "mounts": [ + "canonSX150IS" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot SX150 IS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.62, + "model": "PowerShot SX150 IS", + "mounts": [ + "canonSX150IS" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot SX160 IS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.6, + "model": "PowerShot SX160 IS", + "mounts": [ + "canonSX160IS" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot SX220 HS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.6, + "model": "PowerShot SX220 HS", + "mounts": [ + "canonSX220HS" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot SX230 HS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.6, + "model": "PowerShot SX230 HS", + "mounts": [ + "canonSX230HS" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot SX240 HS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.56, + "model": "PowerShot SX240 HS", + "mounts": [ + "canonSX260HS" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot SX260 HS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.56, + "model": "PowerShot SX260 HS", + "mounts": [ + "canonSX260HS" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot SX30 IS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.581, + "model": "PowerShot SX30 IS", + "mounts": [ + "canonSX30IS" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot SX50 HS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.61, + "model": "PowerShot SX50 HS", + "mounts": [ + "canonSX50HS" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot SX510 HS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.58, + "model": "PowerShot SX510 HS", + "mounts": [ + "canonSX510HS" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot SX60 HS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.61, + "model": "PowerShot SX60 HS", + "mounts": [ + "canonSX60HS" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot SX700 HS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.6, + "model": "PowerShot SX700 HS", + "mounts": [ + "canonSX710HS" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Canon PowerShot SX710 HS" + ], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.6, + "model": "PowerShot SX710 HS", + "mounts": [ + "canonSX710HS" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "R", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "R10", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "R3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "R5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "R5 C", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "R50", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.6, + "model": "R5C", + "mounts": [], + "sensor_size": "APS-C", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "R6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "R6 m2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "R6 MARK II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "R6 MarkII", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "R6 Mii", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "R6 Mk II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "R6 mk2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "r6 mkii", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "R62", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "R6ii", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "R7", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "R8", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Rebel EOS SL3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Rebel EOS T6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Rebel sl2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "REBEL T7", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "RP", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Sl2/200D", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SL3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SX740hs", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "T4i/650D", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "t6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "t6 d1300", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "T6i", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "T7i", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "T8i", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Vixia HF200", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Canon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "XA50", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Casio", + "brand_aliases": [ + "Casio Computer Co.,Ltd." + ], + "compatible_mounts": [], + "crop_factor": 5.68, + "model": "EX-FH20", + "mounts": [ + "casioEX-FH20" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Casio", + "brand_aliases": [ + "Casio Computer Co.,Ltd" + ], + "compatible_mounts": [], + "crop_factor": 4.65, + "model": "EX-P600", + "mounts": [ + "casioP600" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Casio", + "brand_aliases": [ + "Casio Computer Co.,Ltd" + ], + "compatible_mounts": [], + "crop_factor": 4.65, + "model": "EX-P700", + "mounts": [ + "casioP600" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Casio", + "brand_aliases": [ + "Casio Computer Co.,Ltd" + ], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "EX-Z3", + "mounts": [ + "casioZ4" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Casio", + "brand_aliases": [ + "Casio Computer Co.,Ltd" + ], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "EX-Z30", + "mounts": [ + "casioZ4" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Casio", + "brand_aliases": [ + "Casio Computer Co.,Ltd" + ], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "EX-Z4", + "mounts": [ + "casioZ4" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Casio", + "brand_aliases": [ + "Casio Computer Co.,Ltd" + ], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "EX-Z40", + "mounts": [ + "casioZ4" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Casio", + "brand_aliases": [ + "Casio Computer Co.,Ltd" + ], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "EX-Z55", + "mounts": [ + "casioZ4" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Casio", + "brand_aliases": [ + "Casio Computer Co.,Ltd" + ], + "compatible_mounts": [], + "crop_factor": 4.8, + "model": "EX-Z750", + "mounts": [ + "casioZ750" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Casio", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.8, + "model": "QV-3000EX", + "mounts": [ + "casioQV3500" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Casio", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.8, + "model": "QV-3500EX", + "mounts": [ + "casioQV3500" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Casio", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "QV-4000", + "mounts": [ + "canonG2" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "China_ActionCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "China_Noname", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Chronos", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "CR14-1.0", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "cleep", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "cleep wereable", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Contax", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "35mm film: full frame", + "mounts": [ + "Contax/Yashica" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "COOAU", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "CU SPC02", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "COOAU", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SPC06", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "COTUO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Q6TR", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Crosstour", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "4K wifi", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Crosstour", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "CT 9000", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Crosstour", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "CT7000", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "cyanchen", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "15-85", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Cycliq", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Fly12 sport", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DDPAI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "mini3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DDPAI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mini5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Decathlon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "G-eye-900", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Denver", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ACK-8062W", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Digital Bolex", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "D16", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Digma", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "850", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "4D", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Action", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Action 1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Action 3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Air", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Air 2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "FC3411" + ], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "Air 2S", + "mounts": [ + "djiFC3411" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Air 3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "AIR UNIT", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "AIR2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "AIR2s", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "caddx vista dji", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "DJI FPV Drone", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "DJI MINI SE", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "FC6310", + "mounts": [ + "djiFC6310" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "FPV", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "FPV Air Unit", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "FPV skyliner", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Goggles2 From Avata", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mavic", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mavic 2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mavic 2 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mavic 2 Zoom", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "mavic 2pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mavic 3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mavic 3 C1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mavic 3 C2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mavic 3 Classic", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mavic 3 Pro Hasselblad 4/3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mavic Air 1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "MAVIC AIR 2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mavic Air 2s 4k", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.6, + "model": "Mavic Air FC2103", + "mounts": [ + "djiMavicAirFC2103" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mavic mini", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mavic mini 2 se 2.7 k", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mavic Pro 1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mavic Pro 2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.64, + "model": "Mavic Pro FC220", + "mounts": [ + "djiMavicProFC220" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mavic3 PRO 3x", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mavic3Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "MINI 2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "mini 2 4K 30 fps", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "mini 2 se", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "MINI 3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "FC3582" + ], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 3.6, + "model": "Mini 3 Pro", + "mounts": [ + "djiFC3582" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "mini 4 pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mini Pro 3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mini2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "mini3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "O4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "O4 Lite", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Osmo", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Osmo Action", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Osmo Action 1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Osmo Action 3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Osmo Pocket", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Osmo Pocket 1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "OsmoPocket3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Phantom 3 Advanced", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.5, + "model": "Phantom 3 Pro FC300X", + "mounts": [ + "dijPhantom3ProFC300X" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Phantom 4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Phantom 4 Pro V1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Phantom 4 prov2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "FC6310R" + ], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "Phantom 4 RTK", + "mounts": [ + "djiFC6310R" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.0, + "model": "Phantom Vision FC200", + "mounts": [ + "dijPhantomVisionFC200" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pocket 2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "vista", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X7", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ZEMMUSE X7", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "DJI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ZENMUSE X7", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Dogcam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Bullet R+", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Drift", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Ghost XL Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Drift", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "xl pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "duoke", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "DK020p", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Eachine", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Lizard105S", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Eachine", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "TX06 700tvl", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "EKEN", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "H9", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "EKEN", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "H9R", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "EKEN", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HR9S", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Evolio", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iSmart 4k", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Ezviz", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fairphone", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Feiyu Tech", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pocket 2s", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Feiyu Tech", + "brand_aliases": [ + "Feiyu-Tech" + ], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pocket3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "FIMI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Fimi x8 2022 v2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "FIMI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "plam 2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "FIMI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "x8 mini v2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Firefly", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Firefly 8SE", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Firefly", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Hawkey Naked 4k", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Firefly", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Xlite2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Forcite", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "MK1S", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Forever", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SC-410", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Foxeer", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Box", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Foxeer", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "BOX 2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Foxeer", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "BOX2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Foxeer", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Digisight Nano", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Foxeer", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Digisight V3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Foxeer", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HS1177", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Foxeer", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Legend 1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Foxeer", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Legend 2+", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Foxeer", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Legend1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Foxeer", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Lite", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Foxeer", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "mix", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Foxeer", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mix V2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Foxeer", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "PREDATOR MICRO V5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Foxeer", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Razer Pico", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Foxeer", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Razor Pico", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Freefly", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Wave", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "100S 0.7X", + "mounts": [], + "sensor_size": "Full frame", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "100S\u51cf\u7126", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.3333333, + "model": "FinePix 3800", + "mounts": [ + "fuji2800" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.03, + "model": "FinePix A370", + "mounts": [ + "fujiA370" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.5, + "model": "FinePix E550", + "mounts": [ + "fuji810" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.5, + "model": "FinePix F10", + "mounts": [ + "fujiF11" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.5, + "model": "FinePix F11", + "mounts": [ + "fujiF11" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.341, + "model": "FinePix F200EXR", + "mounts": [ + "fujiF200exr" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.487, + "model": "FinePix F601 ZOOM", + "mounts": [ + "fuji601" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.5, + "model": "FinePix F710", + "mounts": [ + "fuji810" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.43, + "model": "FinePix F770EXR", + "mounts": [ + "fujif770exr" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.5, + "model": "FinePix F810", + "mounts": [ + "fuji810" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.71, + "model": "FinePix HS20EXR", + "mounts": [ + "fujihs20exr" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.71, + "model": "FinePix HS30EXR", + "mounts": [ + "fujihs20exr" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "IS Pro" + ], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.56, + "model": "FinePix IS Pro", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "FinePixS1Pro" + ], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.543, + "model": "FinePix S1 Pro", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "FinePixS2Pro" + ], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.543, + "model": "FinePix S2 Pro", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.487, + "model": "FinePix S20Pro", + "mounts": [ + "fuji602" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "FinePix S3Pro" + ], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "FinePix S3 Pro", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.3333333, + "model": "FinePix S3000", + "mounts": [ + "fuji2800" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.3333333, + "model": "FinePix S304", + "mounts": [ + "fuji2800" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "FinePix S5Pro" + ], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.56, + "model": "FinePix S5 Pro", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.491, + "model": "FinePix S5100", + "mounts": [ + "fujiS5500" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.491, + "model": "FinePix S5500", + "mounts": [ + "fujiS5500" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.03, + "model": "FinePix S5600", + "mounts": [ + "fujiS5600" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.487, + "model": "FinePix S602 ZOOM", + "mounts": [ + "fuji602" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.487, + "model": "FinePix S7000", + "mounts": [ + "fuji602" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.48, + "model": "FinePix S9000", + "mounts": [ + "fujiS9000" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.48, + "model": "FinePix S9500", + "mounts": [ + "fujiS9000" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.48, + "model": "FinePix S9600", + "mounts": [ + "fujiS9000" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.523, + "model": "FinePix X100", + "mounts": [ + "fujix100" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.3333333, + "model": "FinePix2800ZOOM", + "mounts": [ + "fuji2800" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "Generic" + ], + "crop_factor": 0.79, + "model": "GFX 100", + "mounts": [ + "Fujifilm G" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "Generic" + ], + "crop_factor": 0.79, + "model": "GFX 50R", + "mounts": [ + "Fujifilm G" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "Generic" + ], + "crop_factor": 0.79, + "model": "GFX 50S", + "mounts": [ + "Fujifilm G" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "Generic" + ], + "crop_factor": 0.79, + "model": "GFX100 II", + "mounts": [ + "Fujifilm G" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GFX100ii", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 0.8, + "model": "GFX100RF", + "mounts": [ + "fujiGFX100RF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "Generic" + ], + "crop_factor": 0.79, + "model": "GFX100S", + "mounts": [ + "Fujifilm G" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "Generic" + ], + "crop_factor": 0.79, + "model": "GFX100S II", + "mounts": [ + "Fujifilm G" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "Generic" + ], + "crop_factor": 0.79, + "model": "GFX50S II", + "mounts": [ + "Fujifilm G" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "H2S", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HS25EXR Pinefix", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.529, + "model": "X-A1", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.529, + "model": "X-A10", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.529, + "model": "X-A2", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.529, + "model": "X-A3", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.529, + "model": "X-A5", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.529, + "model": "X-A7", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.529, + "model": "X-E1", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.529, + "model": "X-E2", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.529, + "model": "X-E2S", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.529, + "model": "X-E3", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "X-E4", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "X-E5", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.528, + "model": "X-H1", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.528, + "model": "X-H2", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.528, + "model": "X-H2S", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.529, + "model": "X-M1", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "X-M5", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "x-pro 3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.529, + "model": "X-Pro1", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.528, + "model": "X-Pro2", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "X-Pro3", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X-S/X-T", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 3.93, + "model": "X-S1", + "mounts": [ + "fujiXS1" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "X-S10", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X-S10_T3_T30_T4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "X-S20", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X-T/X-S", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.529, + "model": "X-T1", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.529, + "model": "X-T10", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.529, + "model": "X-T100", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "x-T15", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.528, + "model": "X-T2", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.529, + "model": "X-T20", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.529, + "model": "X-T200", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "X-T3", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "X-T30", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "X-T30 II", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "X-T30 III", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "X-T4", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "X-T5", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "X-T50", + "mounts": [ + "Fujifilm X" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 3.93, + "model": "X10", + "mounts": [ + "fujix10" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.528, + "model": "X100F", + "mounts": [ + "fujix100" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.523, + "model": "X100S", + "mounts": [ + "fujix100" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.523, + "model": "X100T", + "mounts": [ + "fujix100" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.53, + "model": "X100V", + "mounts": [ + "fujix100v2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X100V 4K 30P", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.53, + "model": "X100VI", + "mounts": [ + "fujix100v2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 3.93, + "model": "X20", + "mounts": [ + "fujix10" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 3.93, + "model": "X30", + "mounts": [ + "fujix10" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.5375, + "model": "X70", + "mounts": [ + "fujix70" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "xe4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.53, + "model": "XF10", + "mounts": [ + "fujixf10" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "XH-2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "XH-2S", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "XH2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "XH2S", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 3.91, + "model": "XQ1", + "mounts": [ + "fujiXQ1" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "XS-10", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "XS-20", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "XS10", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Xs20", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "XT-20", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "XT-3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "XT-30", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "XT-30 II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "XT-4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [ + "Fufifilm" + ], + "compatible_mounts": [], + "crop_factor": null, + "model": "XT200", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.77, + "model": "XT3", + "mounts": [], + "sensor_size": "Micro Four Thirds", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "XT30", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "XT4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Fujifilm", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "XT5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "fujitsu", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "F-52A", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "fujitsu", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "f52a", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Gadnic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Extreme 13", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Garmin", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Virb Ultra 30", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Garmin", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Virb Ultra30", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Garmin", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Virb XE", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "General Mobile", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GM22 pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "General Mobile", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GM22Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Crop-Faktor 0.8 (Mittelformat)" + ], + "brand": "Generic", + "brand_aliases": [], + "compatible_mounts": [ + "4/3 System", + "Canon EF", + "Canon EF-M", + "Canon EF-S", + "Canon FD", + "Canon FL", + "Contax/Yashica", + "Contax G", + "Fujifilm G", + "Fujifilm X", + "Hasselblad 500", + "Hasselblad H", + "Hasselblad X", + "Leica M", + "Leica R", + "Leica S", + "Leica L", + "M42", + "M39/1", + "M39", + "DKL", + "Mamiya 645", + "Micro 4/3 System", + "Minolta AF", + "Minolta MC", + "Minolta MD", + "Nikon CX", + "Nikon F", + "Nikon F AF", + "Nikon F AI", + "Nikon F AI-S", + "Nikon Z", + "Olympus OM", + "Pentax 645AF2", + "Pentax Q", + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF2", + "Pentax KAF3", + "Pentax KAF4", + "Rollei 6x6", + "Samsung NX", + "Samsung NX mini", + "Sigma SA", + "Sony Alpha", + "Sony E", + "Tamron Adaptall", + "T2", + "C", + "Kiev 88" + ], + "crop_factor": 0.79, + "model": "Crop-factor 0.8 (Medium Format)", + "mounts": [ + "Generic" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Crop-Faktor 1.0 (Kleinbildformat)" + ], + "brand": "Generic", + "brand_aliases": [], + "compatible_mounts": [ + "4/3 System", + "Canon EF", + "Canon EF-M", + "Canon EF-S", + "Canon FD", + "Canon FL", + "Contax/Yashica", + "Contax G", + "Fujifilm G", + "Fujifilm X", + "Hasselblad 500", + "Hasselblad H", + "Hasselblad X", + "Leica M", + "Leica R", + "Leica S", + "Leica L", + "M42", + "M39/1", + "M39", + "DKL", + "Mamiya 645", + "Micro 4/3 System", + "Minolta AF", + "Minolta MC", + "Minolta MD", + "Nikon CX", + "Nikon F", + "Nikon F AF", + "Nikon F AI", + "Nikon F AI-S", + "Nikon Z", + "Olympus OM", + "Pentax 645AF2", + "Pentax Q", + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF2", + "Pentax KAF3", + "Pentax KAF4", + "Rollei 6x6", + "Samsung NX", + "Samsung NX mini", + "Sigma SA", + "Sony Alpha", + "Sony E", + "Tamron Adaptall", + "T2", + "C", + "Kiev 88" + ], + "crop_factor": 1.0, + "model": "Crop-factor 1.0 (Full Frame)", + "mounts": [ + "Generic" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Crop-Faktor 1.1" + ], + "brand": "Generic", + "brand_aliases": [], + "compatible_mounts": [ + "4/3 System", + "Canon EF", + "Canon EF-M", + "Canon EF-S", + "Canon FD", + "Canon FL", + "Contax/Yashica", + "Contax G", + "Fujifilm G", + "Fujifilm X", + "Hasselblad 500", + "Hasselblad H", + "Hasselblad X", + "Leica M", + "Leica R", + "Leica S", + "Leica L", + "M42", + "M39/1", + "M39", + "DKL", + "Mamiya 645", + "Micro 4/3 System", + "Minolta AF", + "Minolta MC", + "Minolta MD", + "Nikon CX", + "Nikon F", + "Nikon F AF", + "Nikon F AI", + "Nikon F AI-S", + "Nikon Z", + "Olympus OM", + "Pentax 645AF2", + "Pentax Q", + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF2", + "Pentax KAF3", + "Pentax KAF4", + "Rollei 6x6", + "Samsung NX", + "Samsung NX mini", + "Sigma SA", + "Sony Alpha", + "Sony E", + "Tamron Adaptall", + "T2", + "C", + "Kiev 88" + ], + "crop_factor": 1.1, + "model": "Crop-factor 1.1", + "mounts": [ + "Generic" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Crop-Faktor 1.3 (APS-H)" + ], + "brand": "Generic", + "brand_aliases": [], + "compatible_mounts": [ + "4/3 System", + "Canon EF", + "Canon EF-M", + "Canon EF-S", + "Canon FD", + "Canon FL", + "Contax/Yashica", + "Contax G", + "Fujifilm G", + "Fujifilm X", + "Hasselblad 500", + "Hasselblad H", + "Hasselblad X", + "Leica M", + "Leica R", + "Leica S", + "Leica L", + "M42", + "M39/1", + "M39", + "DKL", + "Mamiya 645", + "Micro 4/3 System", + "Minolta AF", + "Minolta MC", + "Minolta MD", + "Nikon CX", + "Nikon F", + "Nikon F AF", + "Nikon F AI", + "Nikon F AI-S", + "Nikon Z", + "Olympus OM", + "Pentax 645AF2", + "Pentax Q", + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF2", + "Pentax KAF3", + "Pentax KAF4", + "Rollei 6x6", + "Samsung NX", + "Samsung NX mini", + "Sigma SA", + "Sony Alpha", + "Sony E", + "Tamron Adaptall", + "T2", + "C", + "Kiev 88" + ], + "crop_factor": 1.267, + "model": "Crop-factor 1.3 (APS-H)", + "mounts": [ + "Generic" + ], + "sensor_size": "APS-H", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Crop-Faktor 1.5 (APS-C)" + ], + "brand": "Generic", + "brand_aliases": [], + "compatible_mounts": [ + "4/3 System", + "Canon EF", + "Canon EF-M", + "Canon EF-S", + "Canon FD", + "Canon FL", + "Contax/Yashica", + "Contax G", + "Fujifilm G", + "Fujifilm X", + "Hasselblad 500", + "Hasselblad H", + "Hasselblad X", + "Leica M", + "Leica R", + "Leica S", + "Leica L", + "M42", + "M39/1", + "M39", + "DKL", + "Mamiya 645", + "Micro 4/3 System", + "Minolta AF", + "Minolta MC", + "Minolta MD", + "Nikon CX", + "Nikon F", + "Nikon F AF", + "Nikon F AI", + "Nikon F AI-S", + "Nikon Z", + "Olympus OM", + "Pentax 645AF2", + "Pentax Q", + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF2", + "Pentax KAF3", + "Pentax KAF4", + "Rollei 6x6", + "Samsung NX", + "Samsung NX mini", + "Sigma SA", + "Sony Alpha", + "Sony E", + "Tamron Adaptall", + "T2", + "C", + "Kiev 88" + ], + "crop_factor": 1.53, + "model": "Crop-factor 1.5 (APS-C)", + "mounts": [ + "Generic" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Crop-Faktor 1.6 (Canon APS-C)" + ], + "brand": "Generic", + "brand_aliases": [], + "compatible_mounts": [ + "4/3 System", + "Canon EF", + "Canon EF-M", + "Canon EF-S", + "Canon FD", + "Canon FL", + "Contax/Yashica", + "Contax G", + "Fujifilm G", + "Fujifilm X", + "Hasselblad 500", + "Hasselblad H", + "Hasselblad X", + "Leica M", + "Leica R", + "Leica S", + "Leica L", + "M42", + "M39/1", + "M39", + "DKL", + "Mamiya 645", + "Micro 4/3 System", + "Minolta AF", + "Minolta MC", + "Minolta MD", + "Nikon CX", + "Nikon F", + "Nikon F AF", + "Nikon F AI", + "Nikon F AI-S", + "Nikon Z", + "Olympus OM", + "Pentax 645AF2", + "Pentax Q", + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF2", + "Pentax KAF3", + "Pentax KAF4", + "Rollei 6x6", + "Samsung NX", + "Samsung NX mini", + "Sigma SA", + "Sony Alpha", + "Sony E", + "Tamron Adaptall", + "T2", + "C", + "Kiev 88" + ], + "crop_factor": 1.611, + "model": "Crop-factor 1.6 (APS-C)", + "mounts": [ + "Generic" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Crop-Faktor 1.7 (Sigma)" + ], + "brand": "Generic", + "brand_aliases": [], + "compatible_mounts": [ + "4/3 System", + "Canon EF", + "Canon EF-M", + "Canon EF-S", + "Canon FD", + "Canon FL", + "Contax/Yashica", + "Contax G", + "Fujifilm G", + "Fujifilm X", + "Hasselblad 500", + "Hasselblad H", + "Hasselblad X", + "Leica M", + "Leica R", + "Leica S", + "Leica L", + "M42", + "M39/1", + "M39", + "DKL", + "Mamiya 645", + "Micro 4/3 System", + "Minolta AF", + "Minolta MC", + "Minolta MD", + "Nikon CX", + "Nikon F", + "Nikon F AF", + "Nikon F AI", + "Nikon F AI-S", + "Nikon Z", + "Olympus OM", + "Pentax 645AF2", + "Pentax Q", + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF2", + "Pentax KAF3", + "Pentax KAF4", + "Rollei 6x6", + "Samsung NX", + "Samsung NX mini", + "Sigma SA", + "Sony Alpha", + "Sony E", + "Tamron Adaptall", + "T2", + "C", + "Kiev 88" + ], + "crop_factor": 1.739, + "model": "Crop-factor 1.7", + "mounts": [ + "Generic" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Crop-Faktor 2.0 (Four-Thirds)" + ], + "brand": "Generic", + "brand_aliases": [], + "compatible_mounts": [ + "4/3 System", + "Canon EF", + "Canon EF-M", + "Canon EF-S", + "Canon FD", + "Canon FL", + "Contax/Yashica", + "Contax G", + "Fujifilm G", + "Fujifilm X", + "Hasselblad 500", + "Hasselblad H", + "Hasselblad X", + "Leica M", + "Leica R", + "Leica S", + "Leica L", + "M42", + "M39/1", + "M39", + "DKL", + "Mamiya 645", + "Micro 4/3 System", + "Minolta AF", + "Minolta MC", + "Minolta MD", + "Nikon CX", + "Nikon F", + "Nikon F AF", + "Nikon F AI", + "Nikon F AI-S", + "Nikon Z", + "Olympus OM", + "Pentax 645AF2", + "Pentax Q", + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF2", + "Pentax KAF3", + "Pentax KAF4", + "Rollei 6x6", + "Samsung NX", + "Samsung NX mini", + "Sigma SA", + "Sony Alpha", + "Sony E", + "Tamron Adaptall", + "T2", + "C", + "Kiev 88" + ], + "crop_factor": 2.0, + "model": "Crop-factor 2.0 (Four-Thirds)", + "mounts": [ + "Generic" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "GhostStop", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Phasm Cam", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GitUp", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.57, + "model": "Git2", + "mounts": [ + "git2" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "GitUp", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Git2P", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Google", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pixel", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Google", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pixel 3 XL", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Google", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pixel 4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Google", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pixel 4 XL", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Google", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pixel 4A", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Google", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pixel 4a 5g", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Google", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pixel 4XL", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Google", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pixel 5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Google", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pixel 6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Google", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pixel 6 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Google", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pixel 6a", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Google", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pixel 7", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Google", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pixel 7 25mm", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Google", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "pixel 7 main", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Google", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pixel 7 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Google", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pixel 7 Pro 12MP Ultrawide", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Google", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pixel 7A", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Google", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pixel 8", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Google", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pixel 8 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPlus CamPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "4K Sports Ultra HD DV", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.4, + "model": "HD2", + "mounts": [ + "goProHero" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO (2014)", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO 2018", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO 3+ black", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO 3+black", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO 4 Session", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO Session", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.5, + "model": "Hero10 black", + "mounts": [ + "goProHero10bl" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.54, + "model": "Hero11 Black", + "mounts": [ + "goProHero11bl" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO11 Black Mini", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO12 Black", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO13 Black", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO2014", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO3 Black", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO3 Silver", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.42, + "model": "Hero3+ black", + "mounts": [ + "goProHero3+" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO3+ Silver", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Hero3+Black", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.0, + "model": "HERO4 Black", + "mounts": [ + "goProHero4black" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO4 Session", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 7.66, + "model": "HERO4 Silver", + "mounts": [ + "goProHero4" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.0, + "model": "HERO5 Black", + "mounts": [ + "goProHero4black" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO5 Black (FW-hacked Hero 2018)", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO5 Session", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Hero5(2018)", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO6 Black", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO7", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO7 Black", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO7 Silver", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO7 White", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO8 Black", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO9", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO9 Black", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HERO_2024", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Max", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Session", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Session 4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "GoPro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Session4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Goxtreme", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "enduro black", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Goxtreme", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Vision+", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "H7S", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "V50 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Happymodel", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mobula7 HD", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hasselblad", + "brand_aliases": [], + "compatible_mounts": [ + "Generic" + ], + "crop_factor": 0.79, + "model": "CFV 100C/907X", + "mounts": [ + "Hasselblad X" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Hasselblad", + "brand_aliases": [], + "compatible_mounts": [ + "Generic" + ], + "crop_factor": 0.79, + "model": "CFV II 50C/907X", + "mounts": [ + "Hasselblad X" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "L1D-20c" + ], + "brand": "Hasselblad", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.8, + "model": "DJI Mavic 2 Pro", + "mounts": [ + "l1d20c" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "L2D-20c" + ], + "brand": "Hasselblad", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.953, + "model": "DJI Mavic 3", + "mounts": [ + "l2d20c" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Hasselblad", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EQV", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hasselblad", + "brand_aliases": [], + "compatible_mounts": [ + "Generic" + ], + "crop_factor": 0.66, + "model": "Hasselblad 500 mech.", + "mounts": [ + "Hasselblad 500" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Hasselblad", + "brand_aliases": [], + "compatible_mounts": [ + "Generic" + ], + "crop_factor": 0.72, + "model": "Hasselblad H3D", + "mounts": [ + "Hasselblad H" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Hasselblad", + "brand_aliases": [], + "compatible_mounts": [ + "Generic" + ], + "crop_factor": 0.79, + "model": "X1D II 50C", + "mounts": [ + "Hasselblad X" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Hasselblad", + "brand_aliases": [], + "compatible_mounts": [ + "Generic" + ], + "crop_factor": 0.79, + "model": "X2D 100C", + "mounts": [ + "Hasselblad X" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Hasselblad", + "brand_aliases": [], + "compatible_mounts": [ + "Generic" + ], + "crop_factor": 0.79, + "model": "X2D II 100C", + "mounts": [ + "Hasselblad X" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "2k", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "4K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "4k split", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Firefly 4K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Firefly 6S", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Firefly 8SE", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Firefly Micro 2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Firefly naked II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Firefly Q6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Firefly Split", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Firefly Split 4K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Firefly Split Mini 4K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Firefly Split v4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Firefly V2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Firefly Whoop Split", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "FireFly X Lite", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Firefly X Lite II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "FireFlyV4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "FireflyXLite II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Hawkeye", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Naked", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Naked 4k", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Naked/Split", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Naked4K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Split 4k mini", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Split Cam 4K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SplitCam4K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SplitV5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Thumb", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "THUMB 4K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Thumb \u9e70\u773c\u62c7\u6307\u76f8\u673a", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Thumb2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "\u5361\u5f55V4.0", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "\u88f8\u72d7V4.0", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "\u9e70\u773c4K\u5361\u5f55", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "\u9e70\u773c\u4e8c\u4ee32K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Hawkeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "\u9e70\u773c\u88f8\u72d7", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "HDZero", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HDZero_Nano", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Holy Stone", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HS510", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "HolyStone", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HolyStone 360s", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Honor", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "20 pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "DLI-L22" + ], + "brand": "Honor", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 8.235, + "model": "6A", + "mounts": [ + "dlil22" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Honor", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "70 pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Honor", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "80", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Honor", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "8x Sony", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Honor", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "90", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "honor", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "9i", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "honor", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ANP-AN00", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Honor", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "M5P", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Honor", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X7b Rear Main Camera", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Honor", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "\u8363\u800090gt", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Honor 80", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Honor 80", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "HP", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "AC 100", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "HP", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ac100", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "10s", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "40p", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "mate", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mate 10Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "mate 40pro+", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "mate 50 pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "mate 50pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mate 60 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "mate30", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "mate50 pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "mate50pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mate60 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "MATEPAD11", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "MateX2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "meta 50 pro 1x", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "meta40pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mets40pro\u534e\u4e3a", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Nova 2i RNE-L22", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "nova 7i", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Nova7", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "WAS-LX1A" + ], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.88, + "model": "P10 Lite", + "mounts": [ + "waslx1a" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "P20", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "CLT-L29" + ], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.55, + "model": "P20 Pro", + "mounts": [ + "cltl29" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "P30", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "VOG-L29" + ], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.86, + "model": "P30 Pro", + "mounts": [ + "vogl29" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "P30pro main_F1.6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "p40", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "P40 1.0", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "P40 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "p40 sx", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "p50", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "P50PRO", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "P60", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "P60 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "p60 pro main", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "p60 pro sony main lens", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "P60PRO", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "P60pro 4K24mm", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "P8 Lite 2017", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Huawei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "P9", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "IconnTechs", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "4K Ultra HD", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "iFlight", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GOCam GR", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "iFlight", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GOCam PMGR", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Infinix", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Open Camera", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "infinix hot 30", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "infinix hot 30", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Insta Titan", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Insta Titan", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Insta360", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Ace", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Insta360", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Ace Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Insta360", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EVO", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Insta360", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Go", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Insta360", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GO 2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Insta360", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GO 3S", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Insta360", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ONE R", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Insta360", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ONE RS", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Insta360", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "One RS 1-Inch 360 Edition", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Insta360", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ONE X2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Insta360", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "OneR", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Insta360", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "OneR 1inch", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Insta360", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "OneRS", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Insta360", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SMO 4K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Insta360", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "IQOO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "10", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "IQOO", + "brand_aliases": [ + "IQOO 9" + ], + "compatible_mounts": [], + "crop_factor": null, + "model": "26MM", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "IQOO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Z9 Turbo", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Iqoo Z3", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Samsung ISOCELL GW3 sensor", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "IZI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ONE", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "JJRC X5", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "2K Epik", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "JVC", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GY-HM180U", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "KF102", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "KF102", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Kinefinity", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mavo 8k", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Kinefinity", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mavo Edge", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Kinefinity", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "MAVO LF", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Kinefinity", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "MAVO-LF", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Kinefinity", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "TERRA 4K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "kinefinity", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Terra4k", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "\u0417\u0435\u043d\u0438\u0442 122" + ], + "brand": "KMZ", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "Zenit 122", + "mounts": [ + "M42" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "\u0417\u0435\u043d\u0438\u0442 122K" + ], + "brand": "KMZ", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "Zenit 122K", + "mounts": [ + "Pentax K" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "\u0417\u0435\u043d\u0438\u0442 212K" + ], + "brand": "KMZ", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "Zenit 212K", + "mounts": [ + "Pentax K" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "\u0417\u0435\u043d\u0438\u0442 312K" + ], + "brand": "KMZ", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "Zenit 312K", + "mounts": [ + "Pentax K" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "\u0417\u0435\u043d\u0438\u0442 412LS" + ], + "brand": "KMZ", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "Zenit 412LS", + "mounts": [ + "M42" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "\u0417\u0435\u043d\u0438\u0442 KM" + ], + "brand": "KMZ", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "Zenit KM", + "mounts": [ + "Pentax K" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "DCS520" + ], + "brand": "Kodak", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.593, + "model": "DCS 520", + "mounts": [ + "Canon EF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Kodak", + "brand_aliases": [], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "DCS Pro 14N", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Kodak", + "brand_aliases": [], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "DCS Pro 14nx", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Kodak", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.0, + "model": "DCS Pro SLR/c", + "mounts": [ + "Canon EF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Kodak", + "brand_aliases": [], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "DCS Pro SLR/n", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Kodak CX6330 Zoom Digital Camera" + ], + "brand": "Kodak", + "brand_aliases": [ + "Eastman Kodak Company" + ], + "compatible_mounts": [], + "crop_factor": 6.593, + "model": "Kodak CX6330", + "mounts": [ + "kodakCX6330" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Kodak CX7525 Zoom Digital Camera" + ], + "brand": "Kodak", + "brand_aliases": [ + "Eastman Kodak Company" + ], + "compatible_mounts": [], + "crop_factor": 6.07, + "model": "Kodak CX7525", + "mounts": [ + "kodakCX6330" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Kodak DC120 ZOOM Digital Camera" + ], + "brand": "Kodak", + "brand_aliases": [ + "Eastman Kodak Company" + ], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "Kodak DC120", + "mounts": [ + "kodakDC120" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Kodak Digital Science DC50 Zoom Camera" + ], + "brand": "Kodak", + "brand_aliases": [ + "Eastman Kodak Company" + ], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "Kodak DC50", + "mounts": [ + "kodakDC50" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Konica Minolta", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 3.933, + "model": "DiMAGE A200", + "mounts": [ + "kmD7" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Konica Minolta", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "DiMAGE Z10", + "mounts": [ + "kmZ10" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Konica Minolta", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "DiMAGE Z20", + "mounts": [ + "kmZ10" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Konica Minolta", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "DiMAGE Z3", + "mounts": [ + "kmZ3" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Konica Minolta", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "DiMAGE Z5", + "mounts": [ + "kmZ3" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Konica Minolta", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "DiMAGE Z6", + "mounts": [ + "kmZ3" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Konica Minolta", + "brand_aliases": [], + "compatible_mounts": [ + "Sony Alpha", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.531, + "model": "Dynax 5D", + "mounts": [ + "Minolta AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Konica Minolta", + "brand_aliases": [], + "compatible_mounts": [ + "Sony Alpha", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.522, + "model": "Dynax 7D", + "mounts": [ + "Minolta AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Konica Minolta", + "brand_aliases": [], + "compatible_mounts": [ + "Sony Alpha", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.531, + "model": "Maxxum 5D", + "mounts": [ + "Minolta AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Konica Minolta", + "brand_aliases": [], + "compatible_mounts": [ + "Sony Alpha", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.522, + "model": "Maxxum 7D", + "mounts": [ + "Minolta AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Konica Minolta Camera, Inc.", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 3.933, + "model": "DiMAGE A2", + "mounts": [ + "kmD7" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Konica Minolta Camera, Inc.", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.144, + "model": "DiMAGE G400", + "mounts": [ + "kmG400" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Konica Minolta Camera, Inc.", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.03, + "model": "DiMAGE Z2", + "mounts": [ + "kmZ2" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Konica Minolta Camera, Inc.", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.144, + "model": "Revio KD-420Z", + "mounts": [ + "kmG400" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "LAMAX", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X8 Electra", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "LAMAX", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X9.1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "LAMAX", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X9.2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "C-Lux" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "C-Lux (Typ 1546)", + "mounts": [ + "panasonicZS200" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Leica CL" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [ + "Leica M", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.53, + "model": "CL (Typ 7323)", + "mounts": [ + "Leica L" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "D-Lux2" + ], + "brand": "Leica", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.45, + "model": "D-Lux 2", + "mounts": [ + "panasonicLX1" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Leica", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.33, + "model": "D-Lux 3", + "mounts": [ + "panasonicLX3" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Leica", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.33, + "model": "D-Lux 4", + "mounts": [ + "panasonicLX4" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Leica", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 3.933, + "model": "Digilux 2", + "mounts": [ + "leicaDigilux2" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Leica", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "Digilux 3", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Leica M (Typ 240)" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "M (Typ 240)", + "mounts": [ + "Leica M" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Leica M EV1" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "M EV1", + "mounts": [ + "Leica M" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Leica M Monochrom (Typ 246)" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "M Monochrom (Typ 246)", + "mounts": [ + "Leica M" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Leica M10" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "M10", + "mounts": [ + "Leica M" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Leica M10 Monochrom" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "M10 Monochrom", + "mounts": [ + "Leica M" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Leica M10-D" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "M10-D", + "mounts": [ + "Leica M" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Leica M10-P" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "M10-P", + "mounts": [ + "Leica M" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Leica M10-R" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "M10-R", + "mounts": [ + "Leica M" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Leica M11" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "M11", + "mounts": [ + "Leica M" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Leica M11 Monochrom" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "M11 Monochrom", + "mounts": [ + "Leica M" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Leica M11-D" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "M11-D", + "mounts": [ + "Leica M" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Leica M11-P" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "M11-P", + "mounts": [ + "Leica M" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.33, + "model": "M8 Digital Camera", + "mounts": [ + "Leica M" + ], + "sensor_size": "APS-H", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "M9 Digital Camera", + "mounts": [ + "Leica M" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Leica Q (Typ 116)" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "Q (Typ 116)", + "mounts": [ + "leicaQTyp116" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Leica Q2" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "Q2", + "mounts": [ + "leicaQ2" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Leica Q2 Mono" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "Q2 Monochrom", + "mounts": [ + "leicaQ2" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Leica Q3" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "Q3", + "mounts": [ + "leicaQ2" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "LEICA Q3 43" + ], + "brand": "Leica", + "brand_aliases": [ + "LEICA CAMERA AG" + ], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "Q3 43", + "mounts": [ + "leicaQ343" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Leica Q3 Mono" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "Q3 Monochrom", + "mounts": [ + "leicaQ2" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Leica SL (Typ 601)" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [ + "Leica M", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "SL (Typ 601)", + "mounts": [ + "Leica L" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Leica SL2" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [ + "Leica M", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "SL2", + "mounts": [ + "Leica L" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Leica SL2-S" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [ + "Leica M", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "SL2-S", + "mounts": [ + "Leica L" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Leica SL3" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [ + "Leica M", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "SL3", + "mounts": [ + "Leica L" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Leica SL3-S" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [ + "Leica M", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "SL3-S", + "mounts": [ + "Leica L" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Leica T (Typ 701)" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [ + "Leica M", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.53, + "model": "T (Typ 701)", + "mounts": [ + "Leica L" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Leica TL" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [ + "Leica M", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.53, + "model": "TL", + "mounts": [ + "Leica L" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Leica TL2" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [ + "Leica M", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.53, + "model": "TL2", + "mounts": [ + "Leica L" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Leica X Vario (Typ 107)" + ], + "brand": "Leica", + "brand_aliases": [ + "Leica Camera AG" + ], + "compatible_mounts": [], + "crop_factor": 1.53, + "model": "X Vario (Typ 107)", + "mounts": [ + "leicaXVario107" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Lenovo", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "K6 Note", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Lenovo", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mirage VR405", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "LG", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "G8", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "LG-H815" + ], + "brand": "LG", + "brand_aliases": [ + "LG Mobile" + ], + "compatible_mounts": [], + "crop_factor": 6.34, + "model": "LG G4", + "mounts": [ + "lgH815" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "LG", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "LG G7 ThinQ", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "LG", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "V35", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "LG", + "brand_aliases": [ + "LGE" + ], + "compatible_mounts": [], + "crop_factor": null, + "model": "V40", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "LG", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "V50", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "LG", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "v50 27mm f1.5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "LG", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "V60", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "LG V30", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Motion cam", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Maginon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "AC-500", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Mamiya", + "brand_aliases": [], + "compatible_mounts": [ + "Generic" + ], + "crop_factor": 0.577, + "model": "Mamiya 645", + "mounts": [ + "Mamiya 645" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Mamiya", + "brand_aliases": [], + "compatible_mounts": [ + "Generic" + ], + "crop_factor": 0.721, + "model": "Mamiya ZD", + "mounts": [ + "Mamiya 645" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "mate40pro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "mate40", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Matecam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "4K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "MEIZU", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Note9", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Microsoft", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.02, + "model": "Lumia 950", + "mounts": [ + "lumia950" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Microsoft", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.02, + "model": "Lumia 950 XL", + "mounts": [ + "lumia950" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Minolta Co., Ltd.", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 3.933, + "model": "DiMAGE 7", + "mounts": [ + "kmD7" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Minolta Co., Ltd.", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 3.933, + "model": "DiMAGE 7Hi", + "mounts": [ + "kmD7" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Minolta Co., Ltd.", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 3.933, + "model": "DiMAGE 7i", + "mounts": [ + "kmD7" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Minolta Co., Ltd.", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 3.933, + "model": "DiMAGE A1", + "mounts": [ + "kmD7" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Minolta Co., Ltd.", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.5, + "model": "DiMAGE X", + "mounts": [ + "kmXt" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Minolta Co., Ltd.", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.5, + "model": "DiMAGE Xi", + "mounts": [ + "kmXt" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Minolta Co., Ltd.", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.5, + "model": "DiMAGE Xt", + "mounts": [ + "kmXt" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Minolta Co., Ltd.", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.545, + "model": "DiMAGE Z1", + "mounts": [ + "kmZ1" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Mobius", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "1S", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Mobius", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ActionCam", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Mobius", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ActionCamera v2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Mobius", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Maxi 4K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Mobius", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mini V1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Mobius", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mobius 1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Mobula", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "7HD 1S", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "MOMA", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "\u63a2\u5883", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Monster", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Monster FQ777 F8", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Morecam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "M9", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Motorola", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Edge 20", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Motorola", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Edge 20 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Motorola", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Edge 2023", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Motorola", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Edge 40 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Motorola", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Edge S Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Motorola", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "Edge+", + "mounts": [], + "sensor_size": "Full frame", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Motorola", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "G100", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Motorola", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "g13", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Motorola", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "G41", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Motorola", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "G7 Plus", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Motorola", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Moto G Power", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Motorola", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Moto G200", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Motorola", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Moto G200 5G", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Motorola", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Moto G5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Motorola", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Moto G60s", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Motorola", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Moto G72", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Motorola", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Moto G8 Power Omnivision OV16E10", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Motorola", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Moto One Fusion+", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Motorola", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "moto X30 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Motorola", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "RAZR 2023", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "My GEKO Gear", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ORBIT 960", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "NECKER", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "v5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "NICEBOY", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "VEGA", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Niceboy", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "VEGA 6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Niceboy", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "VEGA x PLAY", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon 1 AW1" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "Nikon F AF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.727, + "model": "1 AW1", + "mounts": [ + "Nikon CX" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon 1 J1" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "Nikon F AF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.727, + "model": "1 J1", + "mounts": [ + "Nikon CX" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon 1 J2" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "Nikon F AF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.727, + "model": "1 J2", + "mounts": [ + "Nikon CX" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon 1 J3" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "Nikon F AF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.727, + "model": "1 J3", + "mounts": [ + "Nikon CX" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon 1 J4" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "Nikon F AF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.727, + "model": "1 J4", + "mounts": [ + "Nikon CX" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon 1 J5" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "Nikon F AF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.727, + "model": "1 J5", + "mounts": [ + "Nikon CX" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon 1 S1" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "Nikon F AF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.727, + "model": "1 S1", + "mounts": [ + "Nikon CX" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon 1 S2" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "Nikon F AF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.727, + "model": "1 S2", + "mounts": [ + "Nikon CX" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon 1 V1" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "Nikon F AF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.727, + "model": "1 V1", + "mounts": [ + "Nikon CX" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon 1 V2" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "Nikon F AF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.727, + "model": "1 V2", + "mounts": [ + "Nikon CX" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon 1 V3" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "Nikon F AF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.727, + "model": "1 V3", + "mounts": [ + "Nikon CX" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "1-J2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "170", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "24-120", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "35mm film: full frame", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "62", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "7200", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "810", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "E4200" + ], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.86, + "model": "Coolpix 4200", + "mounts": [ + "nikon7900" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "E4500" + ], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "Coolpix 4500", + "mounts": [ + "nikon4500" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "E4800" + ], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.0, + "model": "Coolpix 4800", + "mounts": [ + "nikon4800" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "E5000" + ], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 3.933, + "model": "Coolpix 5000", + "mounts": [ + "nikon5000" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "E5200" + ], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.86, + "model": "Coolpix 5200", + "mounts": [ + "nikon7900" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "E5400" + ], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "Coolpix 5400", + "mounts": [ + "nikon5400" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "E5700" + ], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 3.933, + "model": "Coolpix 5700", + "mounts": [ + "nikon5700" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "E5900" + ], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.86, + "model": "Coolpix 5900", + "mounts": [ + "nikon7900" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "E7600" + ], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.86, + "model": "Coolpix 7600", + "mounts": [ + "nikon7900" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "E7900" + ], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.86, + "model": "Coolpix 7900", + "mounts": [ + "nikon7900" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "E8400" + ], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 3.933, + "model": "Coolpix 8400", + "mounts": [ + "nikon8400" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "E8700" + ], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 3.933, + "model": "Coolpix 8700", + "mounts": [ + "nikon5700" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "E8800" + ], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 3.933, + "model": "Coolpix 8800", + "mounts": [ + "nikon8800" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "E950" + ], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.408, + "model": "Coolpix 950", + "mounts": [ + "nikon950" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "E990" + ], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "Coolpix 990", + "mounts": [ + "nikon990" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "E995" + ], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "Coolpix 995", + "mounts": [ + "nikon995" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [], + "crop_factor": 1.523, + "model": "Coolpix A", + "mounts": [ + "nikonA" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Coolpix b500", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [], + "crop_factor": 5.56, + "model": "Coolpix P1000", + "mounts": [ + "nikonP1000" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [], + "crop_factor": 5.56, + "model": "Coolpix P1100", + "mounts": [ + "nikonP1000" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.706, + "model": "Coolpix P330", + "mounts": [ + "nikonP330" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.706, + "model": "Coolpix P340", + "mounts": [ + "nikonP330" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.62, + "model": "Coolpix P60", + "mounts": [ + "nikonP60" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.6, + "model": "Coolpix P6000", + "mounts": [ + "nikonP6000" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.69, + "model": "Coolpix P7000", + "mounts": [ + "nikonP7000" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.67, + "model": "Coolpix P7800", + "mounts": [ + "nikonP7800" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "COOLPIX P900", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Coolpix P950", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.65, + "model": "Coolpix S3300", + "mounts": [ + "nikonS3300" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "CoolPix W300", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "D 3300", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "D-750", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon D1" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.525, + "model": "D1", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D100" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.525, + "model": "D100", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D1H" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.525, + "model": "D1H", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D1X" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.525, + "model": "D1X", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D200" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.523, + "model": "D200", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D2H" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.546, + "model": "D2H", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D2Hs" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.546, + "model": "D2Hs", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D2X" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.522, + "model": "D2X", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D2Xs" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.522, + "model": "D2Xs", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D3" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "D3", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D300" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.523, + "model": "D300", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D3000" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.523, + "model": "D3000", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D300S" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.523, + "model": "D300S", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D3100" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.558, + "model": "D3100", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon D3200" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.554, + "model": "D3200", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon D3300" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.523, + "model": "D3300", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon D3400" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.523, + "model": "D3400", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon D3500" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.523, + "model": "D3500", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon D3S" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "D3S", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D3X" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "D3X", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D4" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "D4", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D40" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.525, + "model": "D40", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D40X" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.523, + "model": "D40X", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D4s" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "D4s", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D5" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.003, + "model": "D5", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D50" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.525, + "model": "D50", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D500" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.531, + "model": "D500", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon D5000" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.523, + "model": "D5000", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D5100" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.523, + "model": "D5100", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon D5200" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "D5200", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon D5300" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "D5300", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon D5500" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "D5500", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon D5600" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "D5600", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon D6" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "D6", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D60" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.523, + "model": "D60", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D600" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "D600", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D610" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "D610", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon D70" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.525, + "model": "D70", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D700" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "D700", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D7000" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.523, + "model": "D7000", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon D70s" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.525, + "model": "D70s", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D7100" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "D7100", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon D7200" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "D7200", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon D750" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "D750", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon D7500" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "D7500", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon D780" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "D780", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon D80" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.523, + "model": "D80", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D800" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "D800", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon D800E" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "D800E", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon D810" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "D810", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon D850" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "D850", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon D90" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.523, + "model": "D90", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon Df" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.001, + "model": "Df", + "mounts": [ + "Nikon F AF" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "j", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Keymission 120", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "KeyMission 170", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Nikon 5100", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "NIKON Z5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "NIKON Z6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "p950", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon Z 30" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "Nikon F AF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.531, + "model": "Z 30", + "mounts": [ + "Nikon Z" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon Z 5" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "Nikon F AF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Z 5", + "mounts": [ + "Nikon Z" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon Z 50" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "Nikon F AF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.531, + "model": "Z 50", + "mounts": [ + "Nikon Z" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon Z 6" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "Nikon F AF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Z 6", + "mounts": [ + "Nikon Z" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Z 6 II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon Z 6_2" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "Nikon F AF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Z 6II", + "mounts": [ + "Nikon Z" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon Z 7" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "Nikon F AF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Z 7", + "mounts": [ + "Nikon Z" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon Z 7_2" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "Nikon F AF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Z 7II", + "mounts": [ + "Nikon Z" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon Z 8" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "Nikon F AF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Z 8", + "mounts": [ + "Nikon Z" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon Z 9" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "Nikon F AF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Z 9", + "mounts": [ + "Nikon Z" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon Z f" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "Nikon F AF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Z f", + "mounts": [ + "Nikon Z" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon Z fc" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "Nikon F AF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.531, + "model": "Z fc", + "mounts": [ + "Nikon Z" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.5, + "model": "Z30", + "mounts": [], + "sensor_size": "APS-C", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Z30 DX", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Z5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Z50", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon Z50_2" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "Nikon F AF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.531, + "model": "Z50II", + "mounts": [ + "Nikon Z" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Nikon Z5_2" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "Nikon F AF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Z5II", + "mounts": [ + "Nikon Z" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Z6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Z6 I", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "Z6 II", + "mounts": [], + "sensor_size": "Full frame", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Z62", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Z6II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon Z6_3" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "Nikon F AF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Z6III", + "mounts": [ + "Nikon Z" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Z7", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Z7i", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Z7II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Z8", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Z9", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ZF", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "zf c", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ZFC", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Nikon ZR" + ], + "brand": "Nikon", + "brand_aliases": [ + "Nikon Corporation" + ], + "compatible_mounts": [ + "Nikon F", + "Nikon F AI", + "Nikon F AI-S", + "Nikon F AF", + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "ZR", + "mounts": [ + "Nikon Z" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Nokia", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "1020", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nokia", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "7 Plus", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nokia", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 3.93, + "model": "Lumia 1020", + "mounts": [ + "lumia1020" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Nokia", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.26, + "model": "Lumia 1520", + "mounts": [ + "lumia1520" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Nothing", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Phone", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nothing", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Phone 1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nova7", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Nova7", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Novatek", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "96675", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Nubia", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "NX721J", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "NWO JAPAN", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Generation Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "ODRVM", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "1080P Wifi", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "ODRVM", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Action Cam", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "C2040Z" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Optical Co.,Ltd" + ], + "compatible_mounts": [], + "crop_factor": 4.93, + "model": "C-2040 Zoom", + "mounts": [ + "olympus2040" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "C3040Z" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Optical Co.,Ltd" + ], + "compatible_mounts": [], + "crop_factor": 4.93, + "model": "C-3040 Zoom", + "mounts": [ + "olympus2040" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "C4100Z,C4000Z" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Optical Co.,Ltd" + ], + "compatible_mounts": [], + "crop_factor": 4.92, + "model": "C-4000 Zoom, C-4100 Zoom", + "mounts": [ + "olympus4000" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "C4040Z" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Optical Co.,Ltd" + ], + "compatible_mounts": [], + "crop_factor": 4.93, + "model": "C-4040 Zoom", + "mounts": [ + "olympus2040" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "X-2,C-50Z" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Optical Co.,Ltd" + ], + "compatible_mounts": [], + "crop_factor": 4.9, + "model": "C-50 Zoom", + "mounts": [ + "olympusC50" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "C5050Z" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Optical Co.,Ltd" + ], + "compatible_mounts": [], + "crop_factor": 4.93, + "model": "C-5050 Zoom", + "mounts": [ + "olympus2040" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "C5060WZ" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Corporation" + ], + "compatible_mounts": [], + "crop_factor": 4.93, + "model": "C-5060 Wide Zoom", + "mounts": [ + "olympus5060" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "C70Z,C7000Z" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [], + "crop_factor": 4.8, + "model": "C-70 Zoom, C-7000 Zoom", + "mounts": [ + "olympus7000" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "C700UZ" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Optical Co.,Ltd" + ], + "compatible_mounts": [], + "crop_factor": 6.52, + "model": "C-700 Ultra Zoom", + "mounts": [ + "olympus700" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "C7070WZ" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [], + "crop_factor": 4.93, + "model": "C-7070 Wide Zoom", + "mounts": [ + "olympus5060" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "C730UZ" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Optical Co.,Ltd" + ], + "compatible_mounts": [], + "crop_factor": 6.52, + "model": "C-730 Ultra Zoom", + "mounts": [ + "olympus700" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "C750UZ" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Optical Co.,Ltd" + ], + "compatible_mounts": [], + "crop_factor": 6.03, + "model": "C-750 Ultra Zoom", + "mounts": [ + "olympus750" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "C8080WZ" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Corporation" + ], + "compatible_mounts": [], + "crop_factor": 3.933, + "model": "C-8080 Wide Zoom", + "mounts": [ + "olympus8080" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "C860L,D360L" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Optical Co.,Ltd" + ], + "compatible_mounts": [], + "crop_factor": 6.563, + "model": "C-860L", + "mounts": [ + "olympusC860" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "C860L,D360L" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Optical Co.,Ltd" + ], + "compatible_mounts": [], + "crop_factor": 6.563, + "model": "D-360L", + "mounts": [ + "olympusC860" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Corporation" + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-1", + "mounts": [ + "4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Optical Co.,Ltd" + ], + "compatible_mounts": [], + "crop_factor": 3.933, + "model": "E-10", + "mounts": [ + "olympusE10" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "E-20,E-20N,E-20P" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Optical Co.,Ltd" + ], + "compatible_mounts": [], + "crop_factor": 3.933, + "model": "E-20, E-20N, E-20P", + "mounts": [ + "olympusE10" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-3", + "mounts": [ + "4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-30", + "mounts": [ + "4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-300", + "mounts": [ + "4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-330", + "mounts": [ + "4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-400", + "mounts": [ + "4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-410", + "mounts": [ + "4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-420", + "mounts": [ + "4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-450", + "mounts": [ + "4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-5", + "mounts": [ + "4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-500", + "mounts": [ + "4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-510", + "mounts": [ + "4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-520", + "mounts": [ + "4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-600", + "mounts": [ + "4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-620", + "mounts": [ + "4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-M1", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "E-M1MarkII" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-M1 II", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "E-M1MarkIII" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Corporation" + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-M1 III", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-M10", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "E-M10MarkII" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Corporation" + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-M10 II", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "E-M10 Mark III" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Corporation" + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-M10 III", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "E-M10MarkIIIS" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Corporation" + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-M10 III S", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "E-M10MarkIV" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Corporation" + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-M10 IV", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-M5", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "E-M5MarkII" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-M5 II", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "E-M5MarkIII" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Corporation" + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-M5 III", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-P1", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-P2", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-P3", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-P5", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-P7", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-PL1", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-PL1s", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-PL2", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-PL3", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-PL5", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-PL6", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-PL7", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Corporation" + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-PL8", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Corporation" + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-PL9", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-PM1", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "E-PM2", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "M10 MARK IV", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "OM-5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "OM-D 10 MARK III", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "OM-D E-M10 Mark III", + "mounts": [], + "sensor_size": "Micro Four Thirds", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "OM-D EM 10 MARK IIIS", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "OM-D Mark 3s", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "OMD 10 mark III", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "OMD EM-10 Mk. III", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "OMD mark II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.0, + "model": "PEN-F", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "SP350" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [], + "crop_factor": 4.8, + "model": "SP-350", + "mounts": [ + "olympusSP350" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "SP500UZ" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [], + "crop_factor": 6.0, + "model": "SP-500 Ultra Zoom", + "mounts": [ + "olympusSP500" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "SP560UZ" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [], + "crop_factor": 5.8, + "model": "SP-560 Ultra Zoom", + "mounts": [ + "olympusSP560" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Stylus1" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [], + "crop_factor": 4.67, + "model": "Stylus 1", + "mounts": [ + "olympusStylus1" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Stylus1,1s" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [], + "crop_factor": 4.67, + "model": "Stylus 1, 1s", + "mounts": [ + "olympusStylus1" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Stylus 1s", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "Stylus Epic", + "mounts": [ + "olympusEpic" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "u-miniD,Stylus V" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [], + "crop_factor": 6.0, + "model": "Stylus Verve Digital", + "mounts": [ + "olympusStylusV" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "TG-1" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Corporation" + ], + "compatible_mounts": [], + "crop_factor": 5.56, + "model": "Tough TG-1", + "mounts": [ + "olympusToughTG4" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "TG-2" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Corporation" + ], + "compatible_mounts": [], + "crop_factor": 5.56, + "model": "Tough TG-2", + "mounts": [ + "olympusToughTG4" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "TG-3" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Corporation" + ], + "compatible_mounts": [], + "crop_factor": 5.56, + "model": "Tough TG-3", + "mounts": [ + "olympusToughTG4" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "TG-4" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Corporation" + ], + "compatible_mounts": [], + "crop_factor": 5.56, + "model": "Tough TG-4", + "mounts": [ + "olympusToughTG4" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "TG-5" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Corporation" + ], + "compatible_mounts": [], + "crop_factor": 5.62, + "model": "Tough TG-5", + "mounts": [ + "olympusToughTG5" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "TG-6" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Corporation" + ], + "compatible_mounts": [], + "crop_factor": 5.56, + "model": "Tough TG-6", + "mounts": [ + "olympusToughTG4" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "X-2,C-50Z" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Optical Co.,Ltd" + ], + "compatible_mounts": [], + "crop_factor": 4.9, + "model": "X-2", + "mounts": [ + "olympusC50" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [], + "crop_factor": 4.68, + "model": "XZ-1", + "mounts": [ + "olympusxz1" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [], + "crop_factor": 4.68, + "model": "XZ-2", + "mounts": [ + "olympusxz1" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "mju-II" + ], + "brand": "Olympus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "\u00b5-II", + "mounts": [ + "olympusEpic" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "u-miniD,Stylus V" + ], + "brand": "Olympus", + "brand_aliases": [ + "Olympus Imaging Corp." + ], + "compatible_mounts": [], + "crop_factor": 6.0, + "model": "\u00b5-mini Digital", + "mounts": [ + "olympusStylusV" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "OM Digital Solutions", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "OM-1", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "OM-1MarkII" + ], + "brand": "OM Digital Solutions", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "OM-1 II", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "OM Digital Solutions", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "OM-3", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "OM Digital Solutions", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "OM-5", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "OM-5MarkII" + ], + "brand": "OM Digital Solutions", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "OM-5 II", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "OmniVision", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ov16a1q_i_aac", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "11", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "11 CPH2451", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "12r", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "5T", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "6T", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "7", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "7 PRO", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "7T", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "8", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "8 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "8T", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "9", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "9 PRO", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "9 pro Film mode", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "9T", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ace3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HD1913", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "IZI", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Nord 1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Nord 2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Nord 2 5G FHD OpenCamera Sensors", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 0.6, + "model": "Nord 2T", + "mounts": [], + "sensor_size": "Full frame", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Nord CE2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Nord N10", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "OnePlus 5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "OnePlus 8 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Oneplus 9 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OnePlus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Open", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OPPO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A15", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OPPO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A16", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OPPO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A74 4G", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OPPO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Find X 6 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OPPO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Find X2 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OPPO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Find X5 pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OPPO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "findx6 \u4e3b\u6444", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OPPO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "IQOO", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OPPO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "K9X", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OPPO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "PHY110", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OPPO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "reno 10", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OPPO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Reno 4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OPPO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Reno 4 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OPPO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Reno 6 5G", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OPPO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "reno5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OPPO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X6 pro 24mm", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "OPPO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X7U", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Orion", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "819L", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Overmax", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X-Bee drone 9.5 fold", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "AG-DVX200", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "BGH-1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "BGH1", + "mounts": [], + "sensor_size": "Micro Four Thirds", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "BGH6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "BS1H", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "DC-BGH1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "DC-FZ10002", + "mounts": [ + "panasonicFZ1000" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DC-G100", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DC-G100D", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DC-G110", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DC-G9", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DC-G90", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DC-G91", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DC-G95", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DC-G95D", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DC-G97", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DC-G99", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DC-G99D", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DC-G9M2", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DC-GH5", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DC-GH5M2", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DC-GH5S", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DC-GH6", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DC-GH7", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DC-GX7MK3", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DC-GX800", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DC-GX880", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DC-GX9", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.21, + "model": "DC-LX100M2", + "mounts": [ + "panasonicDMCLX100" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "DC-S1", + "mounts": [ + "Leica L" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "DC-S1H", + "mounts": [ + "Leica L" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "DC-S1M2", + "mounts": [ + "Leica L" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "DC-S1M2ES", + "mounts": [ + "Leica L" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "DC-S1R", + "mounts": [ + "Leica L" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "DC-S1RM2", + "mounts": [ + "Leica L" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "DC-S5", + "mounts": [ + "Leica L" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "DC-S5D", + "mounts": [ + "Leica L" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "DC-S5M2", + "mounts": [ + "Leica L" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "DC-S5M2X", + "mounts": [ + "Leica L" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "DC-S9", + "mounts": [ + "Leica L" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "DC-TZ200", + "mounts": [ + "panasonicZS200" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "DC-TZ200D", + "mounts": [ + "panasonicZS200" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "DC-TZ202", + "mounts": [ + "panasonicZS200" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "DC-TZ220", + "mounts": [ + "panasonicZS200" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.58, + "model": "DC-TZ90", + "mounts": [ + "panasonicTZ70" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.58, + "model": "DC-TZ91", + "mounts": [ + "panasonicTZ70" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.58, + "model": "DC-TZ96", + "mounts": [ + "panasonicTZ70" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.58, + "model": "DC-TZ99", + "mounts": [ + "panasonicTZ70" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "DC-ZS200", + "mounts": [ + "panasonicZS200" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "DC-ZS200D", + "mounts": [ + "panasonicZS200" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "DC-ZS220", + "mounts": [ + "panasonicZS200" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.58, + "model": "DC-ZS70", + "mounts": [ + "panasonicTZ70" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "DMC GH4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.7, + "model": "DMC-FX150", + "mounts": [ + "panasonicFX150" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "DMC-FX2", + "mounts": [ + "panasonicFX7" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "DMC-FX7", + "mounts": [ + "panasonicFX7" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "DMC-FX8", + "mounts": [ + "panasonicFX7" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.05, + "model": "DMC-FX9", + "mounts": [ + "panasonicFX7" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.84, + "model": "DMC-FZ10", + "mounts": [ + "panasonicFZ10" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.6, + "model": "DMC-FZ100", + "mounts": [ + "panasonicDMCFZ45" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.81, + "model": "DMC-FZ100 (3:2)", + "mounts": [ + "panasonicDMCFZ45" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "DMC-FZ1000", + "mounts": [ + "panasonicFZ1000" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.56, + "model": "DMC-FZ150", + "mounts": [ + "panasonicFZ150" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.1, + "model": "DMC-FZ18", + "mounts": [ + "panasonicDMCFZ18" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.0, + "model": "DMC-FZ20", + "mounts": [ + "panasonicFZ10" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.56, + "model": "DMC-FZ200", + "mounts": [ + "panasonicDMCFZ200" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "DMC-FZ2000", + "mounts": [ + "panasonicFZ2000" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "DMC-FZ2500", + "mounts": [ + "panasonicFZ2000" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.6, + "model": "DMC-FZ28", + "mounts": [ + "panasonicFZ28" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 7.6, + "model": "DMC-FZ3", + "mounts": [ + "panasonicFZ3" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.73, + "model": "DMC-FZ30", + "mounts": [ + "panasonicFZ30" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.56, + "model": "DMC-FZ300", + "mounts": [ + "panasonicDMCFZ200" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.56, + "model": "DMC-FZ330", + "mounts": [ + "panasonicDMCFZ200" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.6, + "model": "DMC-FZ35", + "mounts": [ + "panasonicDMCFZ35" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.6, + "model": "DMC-FZ40", + "mounts": [ + "panasonicDMCFZ45" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.81, + "model": "DMC-FZ40 (3:2)", + "mounts": [ + "panasonicDMCFZ45" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.6, + "model": "DMC-FZ45", + "mounts": [ + "panasonicDMCFZ45" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.81, + "model": "DMC-FZ45 (3:2)", + "mounts": [ + "panasonicDMCFZ45" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.0, + "model": "DMC-FZ5", + "mounts": [ + "panasonicFZ5" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.84, + "model": "DMC-FZ50", + "mounts": [ + "panasonicDMCFZ50" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.02, + "model": "DMC-FZ8", + "mounts": [ + "panasonicDMCFZ8" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-G1", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-G10", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-G2", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-G3", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-G5", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-G6", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-G7", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-G70", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-G8", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-G80", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-G81", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-G85", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-GF1", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-GF2", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-GF3", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-GF5", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-GF6", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-GF7", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-GF8", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-GH1", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-GH2", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-GH3", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-GH4", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-GM1", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-GM5", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-GX1", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-GX7", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-GX8", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-GX80", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-GX85", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-L1", + "mounts": [ + "4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "DMC-L10", + "mounts": [ + "4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 3.933, + "model": "DMC-LC1", + "mounts": [ + "leicaDigilux2" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.67, + "model": "DMC-LF1", + "mounts": [ + "panasonicLF1" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.45, + "model": "DMC-LX1", + "mounts": [ + "panasonicLX1" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "DMC-LX10", + "mounts": [ + "panasonicLX10" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.21, + "model": "DMC-LX100", + "mounts": [ + "panasonicDMCLX100" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "DMC-LX15", + "mounts": [ + "panasonicLX10" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.44, + "model": "DMC-LX2", + "mounts": [ + "panasonicDMCLX2" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.7, + "model": "DMC-LX3", + "mounts": [ + "panasonicLX3" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.71, + "model": "DMC-LX5", + "mounts": [ + "panasonicLX5" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.1, + "model": "DMC-LX7", + "mounts": [ + "panasonicLX7" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.06, + "model": "DMC-LZ1", + "mounts": [ + "panasonicLZ2" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.06, + "model": "DMC-LZ2", + "mounts": [ + "panasonicLZ2" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.75, + "model": "DMC-TZ100", + "mounts": [ + "panasonicTZ100" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.75, + "model": "DMC-TZ101", + "mounts": [ + "panasonicTZ100" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.75, + "model": "DMC-TZ110", + "mounts": [ + "panasonicTZ100" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.58, + "model": "DMC-TZ60", + "mounts": [ + "panasonicTZ70" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.58, + "model": "DMC-TZ61", + "mounts": [ + "panasonicTZ70" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.58, + "model": "DMC-TZ70", + "mounts": [ + "panasonicTZ70" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.58, + "model": "DMC-TZ71", + "mounts": [ + "panasonicTZ70" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.58, + "model": "DMC-TZ80", + "mounts": [ + "panasonicTZ70" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.58, + "model": "DMC-TZ81", + "mounts": [ + "panasonicTZ70" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.75, + "model": "DMC-ZS100", + "mounts": [ + "panasonicTZ100" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.75, + "model": "DMC-ZS110", + "mounts": [ + "panasonicTZ100" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.58, + "model": "DMC-ZS40", + "mounts": [ + "panasonicTZ70" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.58, + "model": "DMC-ZS50", + "mounts": [ + "panasonicTZ70" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.58, + "model": "DMC-ZS60", + "mounts": [ + "panasonicTZ70" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EVA1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "FZ10002", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "FZ2000", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "FZ2500", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "fz82", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "G 100", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "G100", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "G7", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "G70", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "G80", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "G85", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "G9", + "mounts": [], + "sensor_size": "Micro Four Thirds", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "G92", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "G95D", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GF15", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GH-2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GH2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GH3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GH4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GH5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GH5 II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GH5 m2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GH5M2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GH5S", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GH6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GH\u02c6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GX80", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GX85", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GX9", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HC-1500X", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HC-V785", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HC-VX980", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HC-VX981K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HC-X1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HC-X1500", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HX A1H", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "lumix 300", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "LUMIX DC-S5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Lumix DMC-G7", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Lumix G7", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Lumix G85", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "LUMIX G9", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Lumix GH3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Lumix GH4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Lumix GH4R", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Lumix GH5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Lumix GH5 II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Lumix GH5ii", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "LUMIX GH5S", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "LUMIX GH6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Lumix GX5S", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Lumix GX80", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Lumix gx9", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Lumix LX100", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Lumix S1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Lumix S1H", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Lumix S5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "LUMIX S5 II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Lumix S5 Mark 2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "LUMIX S52X", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Lumix S5II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Lumix S5M2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Lx100", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "LX15", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "LX5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "nv_gs280_mindv", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S1H", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S5 M 1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S52", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "s52x", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S5II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S5IIX", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S5M2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S5M2X", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Panasonic", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.5, + "model": "S9", + "mounts": [], + "sensor_size": "APS-C", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Pentax *ist D" + ], + "brand": "Pentax", + "brand_aliases": [ + "Pentax Corporation" + ], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.531, + "model": "*ist D", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax *ist DL" + ], + "brand": "Pentax", + "brand_aliases": [ + "Pentax Corporation" + ], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.531, + "model": "*ist DL", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax *ist DL2" + ], + "brand": "Pentax", + "brand_aliases": [ + "Pentax Corporation" + ], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.531, + "model": "*ist DL2", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax *ist DS" + ], + "brand": "Pentax", + "brand_aliases": [ + "Pentax Corporation" + ], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.531, + "model": "*ist DS", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax *ist DS2" + ], + "brand": "Pentax", + "brand_aliases": [ + "Pentax Corporation" + ], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.531, + "model": "*ist DS2", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Pentax", + "brand_aliases": [], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.0, + "model": "35mm film: full frame", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax 645D" + ], + "brand": "Pentax", + "brand_aliases": [], + "compatible_mounts": [ + "Generic" + ], + "crop_factor": 0.79, + "model": "645D", + "mounts": [ + "Pentax 645AF2" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Pentax", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "6x7", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Pentax K-01" + ], + "brand": "Pentax", + "brand_aliases": [], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.522, + "model": "K-01", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax K-1" + ], + "brand": "Pentax", + "brand_aliases": [ + "Ricoh Imaging Company, Ltd." + ], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF2", + "Pentax KAF3", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.0, + "model": "K-1", + "mounts": [ + "Pentax KAF4" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax K-1 Mark II" + ], + "brand": "Pentax", + "brand_aliases": [ + "Ricoh Imaging Company, Ltd." + ], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF2", + "Pentax KAF3", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.0, + "model": "K-1 II", + "mounts": [ + "Pentax KAF4" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax K-3" + ], + "brand": "Pentax", + "brand_aliases": [ + "Ricoh Imaging Company, Ltd." + ], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.534, + "model": "K-3", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Pentax K-3 II" + ], + "brand": "Pentax", + "brand_aliases": [ + "Ricoh Imaging Company, Ltd." + ], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.534, + "model": "K-3 II", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax K-3 Mark III" + ], + "brand": "Pentax", + "brand_aliases": [ + "Ricoh Imaging Company, Ltd." + ], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.546, + "model": "K-3 III", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax K-3 Mark III Monochrome" + ], + "brand": "Pentax", + "brand_aliases": [ + "Ricoh Imaging Company, Ltd." + ], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.546, + "model": "K-3 III Monochrome", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax K-30" + ], + "brand": "Pentax", + "brand_aliases": [], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.526, + "model": "K-30", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax K-5" + ], + "brand": "Pentax", + "brand_aliases": [], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.526, + "model": "K-5", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax K-5 II" + ], + "brand": "Pentax", + "brand_aliases": [], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.526, + "model": "K-5 II", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax K-5 II s" + ], + "brand": "Pentax", + "brand_aliases": [], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.526, + "model": "K-5 IIs", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Pentax K-50" + ], + "brand": "Pentax", + "brand_aliases": [], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.526, + "model": "K-50", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax K-500" + ], + "brand": "Pentax", + "brand_aliases": [], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.534, + "model": "K-500", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax K-7" + ], + "brand": "Pentax", + "brand_aliases": [], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.538, + "model": "K-7", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax K-70" + ], + "brand": "Pentax", + "brand_aliases": [ + "Ricoh Imaging Company, Ltd." + ], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF2", + "Pentax KAF3", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.534, + "model": "K-70", + "mounts": [ + "Pentax KAF4" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax K-m" + ], + "brand": "Pentax", + "brand_aliases": [], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.531, + "model": "K-m", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax K-r" + ], + "brand": "Pentax", + "brand_aliases": [], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.523, + "model": "K-r", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax K-S1" + ], + "brand": "Pentax", + "brand_aliases": [ + "Ricoh Imaging Company, Ltd." + ], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.534, + "model": "K-S1", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax K-S2" + ], + "brand": "Pentax", + "brand_aliases": [ + "Ricoh Imaging Company, Ltd." + ], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.534, + "model": "K-S2", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax K-x" + ], + "brand": "Pentax", + "brand_aliases": [], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.531, + "model": "K-x", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax K100D" + ], + "brand": "Pentax", + "brand_aliases": [ + "Pentax Corporation" + ], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.531, + "model": "K100D", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax K100D Super" + ], + "brand": "Pentax", + "brand_aliases": [ + "Pentax Corporation" + ], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.531, + "model": "K100D Super", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax K10D" + ], + "brand": "Pentax", + "brand_aliases": [ + "Pentax Corporation" + ], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.531, + "model": "K10D", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax K110D" + ], + "brand": "Pentax", + "brand_aliases": [ + "Pentax Corporation" + ], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.531, + "model": "K110D", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax K2000" + ], + "brand": "Pentax", + "brand_aliases": [], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.531, + "model": "K2000", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax K200D" + ], + "brand": "Pentax", + "brand_aliases": [], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.531, + "model": "K200D", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax K20D" + ], + "brand": "Pentax", + "brand_aliases": [ + "Pentax Corporation" + ], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.538, + "model": "K20D", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Pentax", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "K3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Pentax KF" + ], + "brand": "Pentax", + "brand_aliases": [ + "Ricoh Imaging Company, Ltd." + ], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.534, + "model": "KF", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax KP" + ], + "brand": "Pentax", + "brand_aliases": [ + "Ricoh Imaging Company, Ltd." + ], + "compatible_mounts": [ + "Pentax K", + "Pentax KA", + "Pentax KAF", + "Pentax KAF3", + "Pentax KAF4", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.534, + "model": "KP", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax Optio 230GS" + ], + "brand": "Pentax", + "brand_aliases": [ + "Pentax Corporation" + ], + "compatible_mounts": [], + "crop_factor": 6.563, + "model": "Optio 230GS", + "mounts": [ + "pentax230" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax Optio 330GS" + ], + "brand": "Pentax", + "brand_aliases": [ + "Pentax Corporation" + ], + "compatible_mounts": [], + "crop_factor": 6.563, + "model": "Optio 330GS", + "mounts": [ + "pentax230" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax Optio 33L" + ], + "brand": "Pentax", + "brand_aliases": [ + "Pentax Corporation" + ], + "compatible_mounts": [], + "crop_factor": 6.563, + "model": "Optio 33L", + "mounts": [ + "pentax230" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax Optio 33LF" + ], + "brand": "Pentax", + "brand_aliases": [ + "Pentax Corporation" + ], + "compatible_mounts": [], + "crop_factor": 6.563, + "model": "Optio 33LF", + "mounts": [ + "pentax230" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax Optio 430" + ], + "brand": "Pentax", + "brand_aliases": [ + "Asahi Optical Co.,Ltd" + ], + "compatible_mounts": [], + "crop_factor": 4.85, + "model": "Optio 430", + "mounts": [ + "pentax430" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax Optio 43WR" + ], + "brand": "Pentax", + "brand_aliases": [ + "Pentax Corporation" + ], + "compatible_mounts": [], + "crop_factor": 6.5, + "model": "Optio 43WR", + "mounts": [ + "pentax43WR" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax Optio 450" + ], + "brand": "Pentax", + "brand_aliases": [ + "Pentax Corporation" + ], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "Optio 450", + "mounts": [ + "pentax750" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax Optio 550" + ], + "brand": "Pentax", + "brand_aliases": [ + "Pentax Corporation" + ], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "Optio 550", + "mounts": [ + "pentax750" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax Optio 555" + ], + "brand": "Pentax", + "brand_aliases": [ + "Pentax Corporation" + ], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "Optio 555", + "mounts": [ + "pentax750" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax Optio 750Z" + ], + "brand": "Pentax", + "brand_aliases": [ + "Pentax Corporation" + ], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "Optio 750Z", + "mounts": [ + "pentax750" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax Q" + ], + "brand": "Pentax", + "brand_aliases": [], + "compatible_mounts": [ + "Generic" + ], + "crop_factor": 5.53, + "model": "Q", + "mounts": [ + "Pentax Q" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax Q-S1" + ], + "brand": "Pentax", + "brand_aliases": [], + "compatible_mounts": [ + "Generic" + ], + "crop_factor": 4.6, + "model": "Q-S1", + "mounts": [ + "Pentax Q" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax Q10" + ], + "brand": "Pentax", + "brand_aliases": [], + "compatible_mounts": [ + "Generic" + ], + "crop_factor": 5.53, + "model": "Q10", + "mounts": [ + "Pentax Q" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Pentax Q7" + ], + "brand": "Pentax", + "brand_aliases": [], + "compatible_mounts": [ + "Generic" + ], + "crop_factor": 4.6, + "model": "Q7", + "mounts": [ + "Pentax Q" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Phase One", + "brand_aliases": [], + "compatible_mounts": [ + "Generic" + ], + "crop_factor": 0.789, + "model": "IQ140", + "mounts": [ + "Mamiya 645" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Phase One", + "brand_aliases": [], + "compatible_mounts": [ + "Generic" + ], + "crop_factor": 0.644, + "model": "IQ180", + "mounts": [ + "Mamiya 645" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Phase One", + "brand_aliases": [], + "compatible_mounts": [ + "Generic" + ], + "crop_factor": 0.577, + "model": "P 25", + "mounts": [ + "Mamiya 645" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Philips", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "adr810", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "POCO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "f1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "POCO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "f1 wide", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "POCO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "F1 wide 2to1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "POCO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "F3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "POCO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "f3 stab off", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "POCO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "f3 stab on", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "POCO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "F4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "POCO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "F4GT", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "POCO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "M4Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "POCO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "M5S", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "POCO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X 3 pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "POCO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "x3 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "POCO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "POCO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "x5 pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "POCO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X5 Pro 5G", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "POCO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X6 5G", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "polaroid", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "cube", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RaceCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "R1 Micro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Raspberry Pi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Camera Module 3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Raspberry Pi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HQ Camera", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Realme", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "3 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Realme", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Realme", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "6 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Realme", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "7 (RMX2151)", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Realme", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "7 5g", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Realme", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "8", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Realme", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "8pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Realme", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "9 pro plus", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Realme", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "C2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Realme", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "C67", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "REALME", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GT MASTER", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Realme", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GT Neo3 Realme", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Realme", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "RMX2151", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Realme", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X3 Zoom", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RED", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "8k vv", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RED", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "DRAGON X", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RED", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "DSMC2 GEMINI 5K S35", + "mounts": [], + "sensor_size": "Full frame", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RED", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EPIC", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RED", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EPIC DRAGON", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RED", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "EPIC-X", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RED", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Gemini", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RED", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Gemini 5K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RED", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Helium 8K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RED", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.5, + "model": "KOMODO", + "mounts": [], + "sensor_size": "APS-C", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RED", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "KOMODO 6K", + "mounts": [], + "sensor_size": "Full frame", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RED", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "KOMODO X", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RED", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.33, + "model": "KOMODO-X 6K S35", + "mounts": [], + "sensor_size": "APS-H", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RED", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Raptor", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RED", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "RAVEN", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RED", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SCARLET-W 5K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RED", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SCARLET-X", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RED", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "V-RAPTOR", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RED", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "V-RAPTOR 8K S35", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RED", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "V-RAPTOR 8K VV", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RED", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "V-RAPTOR [X] 8K VV", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RED", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "V-RAPTOR VV", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RED", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "V_Raptor", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Redmi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "10c", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Redmi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "12c", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Redmi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "K60", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Redmi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "K60 Ultra", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Redmi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "K70", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Redmi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Note 10 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Redmi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Note 10s", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Redmi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "note 11 pro 5G", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Redmi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Note 12", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Redmi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Note 12 Turbo", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Redmi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Note 12T", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Redmi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Note 13", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Redmi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Note 13 Pro 5G", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Redmi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Note 8 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Redmi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Note 9", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Redmi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "note 9 pro max", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Pentax 645Z" + ], + "brand": "Ricoh", + "brand_aliases": [ + "Ricoh Imaging Company, Ltd." + ], + "compatible_mounts": [ + "Generic" + ], + "crop_factor": 0.79, + "model": "645Z", + "mounts": [ + "Pentax 645AF2" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Ricoh", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.9, + "model": "Caplio GX", + "mounts": [ + "ricohGX" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Ricoh", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.9, + "model": "Caplio GX8", + "mounts": [ + "ricohGX" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Ricoh", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.4, + "model": "Caplio RR30", + "mounts": [ + "ricohRR30" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Ricoh", + "brand_aliases": [ + "Ricoh Imaging Company, Ltd." + ], + "compatible_mounts": [], + "crop_factor": 1.523, + "model": "GR", + "mounts": [ + "ricohGR" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Ricoh", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.8, + "model": "GR Digital", + "mounts": [ + "ricohGRdigital" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Ricoh", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GR II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Ricoh GR III" + ], + "brand": "Ricoh", + "brand_aliases": [ + "Ricoh Imaging Company, Ltd." + ], + "compatible_mounts": [], + "crop_factor": 1.53, + "model": "GR III", + "mounts": [ + "ricohGRIII" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Ricoh GR III HDF" + ], + "brand": "Ricoh", + "brand_aliases": [ + "Ricoh Imaging Company, Ltd." + ], + "compatible_mounts": [], + "crop_factor": 1.53, + "model": "GR III HDF", + "mounts": [ + "ricohGRIII" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Ricoh GR IIIx" + ], + "brand": "Ricoh", + "brand_aliases": [ + "Ricoh Imaging Company, Ltd." + ], + "compatible_mounts": [], + "crop_factor": 1.53, + "model": "GR IIIx", + "mounts": [ + "ricohGRIIIx" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Ricoh GR IIIx HDF" + ], + "brand": "Ricoh", + "brand_aliases": [ + "Ricoh Imaging Company, Ltd." + ], + "compatible_mounts": [], + "crop_factor": 1.53, + "model": "GR IIIx HDF", + "mounts": [ + "ricohGRIIIx" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Ricoh GR IV" + ], + "brand": "Ricoh", + "brand_aliases": [ + "Ricoh Imaging Company, Ltd." + ], + "compatible_mounts": [], + "crop_factor": 1.53, + "model": "GR IV", + "mounts": [ + "ricohGRIV" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Rollei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "530", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Rollei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "9s Plus", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Rollei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "AC 625", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Rollei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "AC500", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Rollei", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Actioncam 7S", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Rollei (\u7984\u6765)", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ac500", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Rolleiflex", + "brand_aliases": [], + "compatible_mounts": [ + "Generic" + ], + "crop_factor": 0.51, + "model": "2.8E", + "mounts": [ + "Rollei 6x6" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "2 4K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "3S", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "5 black", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "5 Orange", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HDZERO Micro V2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HDZero Nano", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HuangFeng", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HYBRID", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Hybrid 2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "IF Gocam", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Iflight Gocam PMGR", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Link Phoenix HD Kit", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Link Wasp", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "LR-RUNCAM43", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Micro V2 HDZero", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "MIPI", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Nano 3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Nano2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Nano3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Phinex", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Phoenix", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Phoenix 2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "phoenix jb", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Protek25", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Protek25 2.7K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "RC5-OR (v1.1)", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "RunCam 2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "RunCam 4K Protek25 3840x2160 29.97fps", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "RunCam 6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Runcam Split 4K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Spilt", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Split", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Split 2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Split 3 Lite", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "split 3 lite caddx turtle 2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Split 3 Micro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Split 3 Nano HD", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Split 4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Split 4K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Split HD", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "split hd 2.7k", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Split HD 43", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Split lite 3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Split Mini 1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Split Mini 2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Split Nano 3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SPLIT-HD", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "split2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "split3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "split3 lite", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "split4k", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Thumb", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Thumb Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Thumb Pro W", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Thumb ProW", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Thumb2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ThumbPro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ThumbPW", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Tramp pro 4k", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "RunCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Wasp", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Ryze", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Tello", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "23", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A 20 E", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A03s", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A13", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A14 ISOCELL JN1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A22", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A30s", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A34", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A41", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A5 2017", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A51", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A52 5G", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "a53 5g", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "a70", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A71", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A73", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A9 pro(2016)", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A9Pro (2016)", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.6, + "model": "EX2F", + "mounts": [ + "samsungEx2f" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Fold 3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Fold 4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy A30", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy A51 Ultra Wide", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy A52", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy A52s", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy A71", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy A72", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy F62", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "galaxy M20", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "galaxy m31", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "galaxy note 10", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy Note 10+", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy Note 20", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "SM-N950U" + ], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.047, + "model": "Galaxy Note 8", + "mounts": [ + "samsungS8wide" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy Note 9", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy Note S20 Ultra", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy Note10", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy Note10+", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "EK-GN120" + ], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.531, + "model": "Galaxy NX", + "mounts": [ + "Samsung NX" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy S10e", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy S20 FE 4G", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "galaxy s20 fe 5g", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy S20fe", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy s20u", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "SM-G991B" + ], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.0, + "model": "Galaxy S21", + "mounts": [ + "samsungS21uw" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy S21 FE 5G", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy S21 ultra", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy S22", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy S22 Ultra", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy S22 Ultra - Main (108 MP)", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy S23", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy S23 Ultra", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy S23 x1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy S24", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy S24 Ultra", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy S24 Ultra 14mm", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "SM-G935F" + ], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.19, + "model": "Galaxy S7", + "mounts": [ + "samsungS7" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "SM-G950F", + "SM-G9500" + ], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.19, + "model": "Galaxy S8", + "mounts": [ + "samsungS8" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy S9", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Galaxy Ultra 23S", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Gear 360 (2017)", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Gear360", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Gran angular", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "gw1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [ + "Samsung Techwin" + ], + "compatible_mounts": [], + "crop_factor": 1.531, + "model": "GX-1L", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [ + "Samsung Techwin" + ], + "compatible_mounts": [], + "crop_factor": 1.531, + "model": "GX-1S", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "SAMSUNG GX10" + ], + "brand": "Samsung", + "brand_aliases": [ + "Samsung Techwin Co." + ], + "compatible_mounts": [], + "crop_factor": 1.531, + "model": "GX10", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [ + "Samsung Techwin Co." + ], + "compatible_mounts": [], + "crop_factor": 1.538, + "model": "GX20", + "mounts": [ + "Pentax KAF2" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ISOCELL", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "J7 NXT", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "M30s", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "m52", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Note 10 Lite", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Note 10 Plus", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Note 10+", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Note 10H", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Note 20", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Note 8", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Note 9 1080p", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "NX 500", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 2.727, + "model": "NX mini", + "mounts": [ + "Samsung NX mini" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "NX-30", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.531, + "model": "NX1", + "mounts": [ + "Samsung NX" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.525, + "model": "NX10", + "mounts": [ + "Samsung NX" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.525, + "model": "NX100", + "mounts": [ + "Samsung NX" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.525, + "model": "NX1000", + "mounts": [ + "Samsung NX" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.525, + "model": "NX11", + "mounts": [ + "Samsung NX" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.531, + "model": "NX1100", + "mounts": [ + "Samsung NX" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.525, + "model": "NX20", + "mounts": [ + "Samsung NX" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.525, + "model": "NX200", + "mounts": [ + "Samsung NX" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.531, + "model": "NX2000", + "mounts": [ + "Samsung NX" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.525, + "model": "NX210", + "mounts": [ + "Samsung NX" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.531, + "model": "NX30", + "mounts": [ + "Samsung NX" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.531, + "model": "NX300", + "mounts": [ + "Samsung NX" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.531, + "model": "NX3000", + "mounts": [ + "Samsung NX" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.531, + "model": "NX300M", + "mounts": [ + "Samsung NX" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.525, + "model": "NX5", + "mounts": [ + "Samsung NX" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.531, + "model": "NX500", + "mounts": [ + "Samsung NX" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S10 5g", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S10+", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S10e", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S20", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S20 FE", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S20+", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S20FE", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S21 FE", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S21 Ultra", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S22", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S22 Base", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S22 ULTRA", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S22 Wide", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "s22+", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S22u", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S23", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S23 FE", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S23 Plus", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S23 Ultra", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 0.6, + "model": "S23+", + "mounts": [], + "sensor_size": "Full frame", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S23U", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S23ultra 23mm", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S24", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S24 Plus", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S24 Ultra", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S24_Ultra", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S25 Ultra", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S5K4H7", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S5KGM1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "s5kgm2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S6 edge plus", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S8", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S8+", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "s9", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S9+", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Samsung A51 Ultra Wide 9:16", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.69, + "model": "WB2000", + "mounts": [ + "samsungWB2000" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "WB800F", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Xcover 5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Samsung", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Z Flip 4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SARGO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A9", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SARGO", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "G10+", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "sargo11", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "sargo11", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SBOX", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "actioncam", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SEIKO EPSON CORP.", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.525, + "model": "R-D1", + "mounts": [ + "Leica M" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sena", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "50C", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sencor", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "4K20WR", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sharp", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "aquos r6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SHARP", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SH-R80", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Sigma BF" + ], + "brand": "Sigma", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "BF", + "mounts": [ + "Leica L" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Sigma DP1" + ], + "brand": "Sigma", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.739, + "model": "DP1", + "mounts": [ + "sigmaDP1" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Sigma DP1 Merrill" + ], + "brand": "Sigma", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.531, + "model": "DP1 Merrill", + "mounts": [ + "sigmaDP1M" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Sigma DP1S" + ], + "brand": "Sigma", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.739, + "model": "DP1S", + "mounts": [ + "sigmaDP1" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Sigma DP1X" + ], + "brand": "Sigma", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.739, + "model": "DP1X", + "mounts": [ + "sigmaDP1" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Sigma DP2" + ], + "brand": "Sigma", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.739, + "model": "DP2", + "mounts": [ + "sigmaDP2" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Sigma DP2 Merrill" + ], + "brand": "Sigma", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.531, + "model": "DP2 Merrill", + "mounts": [ + "sigmaDP2M" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Sigma DP2S" + ], + "brand": "Sigma", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.739, + "model": "DP2S", + "mounts": [ + "sigmaDP2" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Sigma DP2X" + ], + "brand": "Sigma", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.739, + "model": "DP2X", + "mounts": [ + "sigmaDP2" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Sigma DP3 Merrill" + ], + "brand": "Sigma", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.531, + "model": "DP3 Merrill", + "mounts": [ + "sigmaDP3M" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Sigma fp" + ], + "brand": "Sigma", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "fp", + "mounts": [ + "Leica L" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "Sigma fp L" + ], + "brand": "Sigma", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "fp L", + "mounts": [ + "Leica L" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sigma", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "FPL", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sigma", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.523, + "model": "sd Quattro", + "mounts": [ + "Sigma SA" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sigma", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.346, + "model": "sd Quattro H", + "mounts": [ + "Sigma SA" + ], + "sensor_size": "APS-H", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Sigma SD1" + ], + "brand": "Sigma", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.5, + "model": "SD1", + "mounts": [ + "Sigma SA" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Sigma SD1 Merrill" + ], + "brand": "Sigma", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.5, + "model": "SD1 Merrill", + "mounts": [ + "Sigma SA" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Sigma SD10" + ], + "brand": "Sigma", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.739, + "model": "SD10", + "mounts": [ + "Sigma SA" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Sigma SD14" + ], + "brand": "Sigma", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.739, + "model": "SD14", + "mounts": [ + "Sigma SA" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Sigma SD15" + ], + "brand": "Sigma", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.739, + "model": "SD15", + "mounts": [ + "Sigma SA" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "Sigma SD9" + ], + "brand": "Sigma", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.739, + "model": "SD9", + "mounts": [ + "Sigma SA" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sigma", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SIGMA_FPL", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Simulus", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GH-265", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sioeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Blink", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sioeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "v3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "sioeye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "v4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "sj6 legend", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "sj6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "11", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "200pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "4000 AIR", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "4000air", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "4000W", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "8 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "8Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "C", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "c100+", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "c100+ Horizontal", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "c100+ Vertical", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "C200", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "c200pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "C300", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Legend 6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "M10+", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "M20", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SJ 7 STAR", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SJ 8 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SJ10 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "sj10pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SJ20", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SJ4000", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SJ4000 Air", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SJ5000", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SJ5000X", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SJ6 Legend", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "sj6legend", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SJ6PRO", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SJ7", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SJ8", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SJ8 PLUS", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SJ8 PRO", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "SJCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SJ8PRO", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Skydio", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "2+", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Somikon", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "action cam", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "5100", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "6300", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "7CII", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "a58 18-55 kit", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A7 IV", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "a7rIVa", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A99 II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "ILCE-1", + "a1" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Alpha 1", + "mounts": [ + "Sony E" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "ILCE-1M2", + "a1II" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Alpha 1 II", + "mounts": [ + "Sony E" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "DSLR-A100", + "a100" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.523, + "model": "Alpha 100", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "DSLR-A200", + "a200" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.523, + "model": "Alpha 200", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "DSLR-A230", + "a230" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.523, + "model": "Alpha 230", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "DSLR-A290", + "a290" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.523, + "model": "Alpha 290", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "DSLR-A300", + "a300" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.534, + "model": "Alpha 300", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "ILCE-3000", + "a3000" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "Alpha 3000", + "mounts": [ + "Sony E" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "SLT-A33", + "a33" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.523, + "model": "Alpha 33", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "DSLR-A330", + "a330" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.534, + "model": "Alpha 330", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "SLT-A35", + "a35" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.523, + "model": "Alpha 35", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "DSLR-A350", + "a350" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.534, + "model": "Alpha 350", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "SLT-A37", + "a37" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.523, + "model": "Alpha 37", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "DSLR-A380", + "a380" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.528, + "model": "Alpha 380", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "DSLR-A390", + "a390" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.523, + "model": "Alpha 390", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "DSLR-A450", + "a450" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.534, + "model": "Alpha 450", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "DSLR-A500", + "a500" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.534, + "model": "Alpha 500", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "ILCE-5000", + "a5000" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "Alpha 5000", + "mounts": [ + "Sony E" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "ILCE-5100", + "a5100" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "Alpha 5100", + "mounts": [ + "Sony E" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "SLT-A55V", + "a55" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.523, + "model": "Alpha 55", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "DSLR-A550", + "a550" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.534, + "model": "Alpha 550", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "DSLR-A560", + "a560" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.523, + "model": "Alpha 560", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "SLT-A57", + "a57" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.523, + "model": "Alpha 57", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "SLT-A58", + "a58" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.523, + "model": "Alpha 58", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "DSLR-A580", + "a580" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.523, + "model": "Alpha 580", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "ILCE-6000", + "a6000" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "Alpha 6000", + "mounts": [ + "Sony E" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "ILCE-6100", + "a6100" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "Alpha 6100", + "mounts": [ + "Sony E" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "ILCE-6300", + "a6300" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "Alpha 6300", + "mounts": [ + "Sony E" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "ILCE-6400", + "a6400" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "Alpha 6400", + "mounts": [ + "Sony E" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "SLT-A65V", + "a65" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.523, + "model": "Alpha 65", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "ILCE-6500", + "a6500" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "Alpha 6500", + "mounts": [ + "Sony E" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "ILCE-6600", + "a6600" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "Alpha 6600", + "mounts": [ + "Sony E" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "ILCE-6700", + "a6700" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "Alpha 6700", + "mounts": [ + "Sony E" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "ILCA-68", + "a68" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.534, + "model": "Alpha 68", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "ILCE-7", + "a7" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Alpha 7", + "mounts": [ + "Sony E" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "ILCE-7M2", + "a7II" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Alpha 7 II", + "mounts": [ + "Sony E" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "ILCE-7M3", + "a7III" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Alpha 7 III", + "mounts": [ + "Sony E" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "ILCE-7M4", + "a7IV" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Alpha 7 IV", + "mounts": [ + "Sony E" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "ILCE-7M5", + "a7V" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Alpha 7 V", + "mounts": [ + "Sony E" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "DSLR-A700", + "a700" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.534, + "model": "Alpha 700", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "SLT-A77V", + "a77" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.534, + "model": "Alpha 77", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "ILCA-77M2", + "a77II" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.534, + "model": "Alpha 77 II", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "ILCE-7C", + "a7C" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Alpha 7C", + "mounts": [ + "Sony E" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "ILCE-7CM2", + "a7CII" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Alpha 7C II", + "mounts": [ + "Sony E" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "ILCE-7CR", + "a7CR" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Alpha 7CR", + "mounts": [ + "Sony E" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "ILCE-7R", + "a7R" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Alpha 7R", + "mounts": [ + "Sony E" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "ILCE-7RM2", + "a7RII" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Alpha 7R II", + "mounts": [ + "Sony E" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "ILCE-7RM3", + "a7RIII" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Alpha 7R III", + "mounts": [ + "Sony E" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "ILCE-7RM3A", + "a7RIIIA" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Alpha 7R IIIA", + "mounts": [ + "Sony E" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "ILCE-7RM4", + "a7RIV" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Alpha 7R IV", + "mounts": [ + "Sony E" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "ILCE-7RM4A" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Alpha 7R IV A", + "mounts": [ + "Sony E" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "ILCE-7RM5", + "a7RV" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Alpha 7R V", + "mounts": [ + "Sony E" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "ILCE-7S", + "a7S" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Alpha 7S", + "mounts": [ + "Sony E" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "ILCE-7SM2", + "a7SII" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Alpha 7S II", + "mounts": [ + "Sony E" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "ILCE-7SM3", + "a7SIII" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Alpha 7S III", + "mounts": [ + "Sony E" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "DSLR-A850", + "a850" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.0, + "model": "Alpha 850", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "ILCE-9", + "a9" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Alpha 9", + "mounts": [ + "Sony E" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "ILCE-9M2", + "a9II" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Alpha 9 II", + "mounts": [ + "Sony E" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "ILCE-9M3", + "a9III" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "Alpha 9 III", + "mounts": [ + "Sony E" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "DSLR-A900", + "a900" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.0, + "model": "Alpha 900", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "SLT-A99", + "a99" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.005, + "model": "Alpha 99", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "ILCA-99M2", + "a99II" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.0, + "model": "Alpha 99 II", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "SLT-A99V", + "a99V" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "Minolta AF", + "M42", + "M39/1", + "DKL", + "T2", + "Tamron Adaptall", + "Generic" + ], + "crop_factor": 1.005, + "model": "Alpha 99V", + "mounts": [ + "Sony Alpha" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "blackshark4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "Cybershot" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 3.933, + "model": "Cyber-shot", + "mounts": [ + "sony707", + "sonyS85" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "DSC WX 50", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "DSC WX50", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 3.933, + "model": "DSC-F828", + "mounts": [ + "sony828" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.0, + "model": "DSC-H1", + "mounts": [ + "sonyH1" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.62, + "model": "DSC-HX20V", + "mounts": [ + "sonyHX20V" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.58, + "model": "DSC-HX300", + "mounts": [ + "sonyHX300" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.8, + "model": "DSC-P100", + "mounts": [ + "sonyW1" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.8, + "model": "DSC-P150", + "mounts": [ + "sonyW1" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.8, + "model": "DSC-P200", + "mounts": [ + "sonyW1" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.5, + "model": "DSC-P73", + "mounts": [ + "sonyS60" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.8, + "model": "DSC-P93", + "mounts": [ + "sonyW1" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.68, + "model": "DSC-R1", + "mounts": [ + "sonyR1" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.5, + "model": "DSC-S60", + "mounts": [ + "sonyS60" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.5, + "model": "DSC-S80", + "mounts": [ + "sonyS60" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.5, + "model": "DSC-S90", + "mounts": [ + "sonyS60" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 6.5, + "model": "DSC-ST80", + "mounts": [ + "sonyS60" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.65, + "model": "DSC-T1", + "mounts": [ + "sonyT1" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "DSC-V1", + "mounts": [ + "sonyV1" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.843, + "model": "DSC-V3", + "mounts": [ + "sonyV1" + ], + "sensor_size": "1/2.3-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.8, + "model": "DSC-W1", + "mounts": [ + "sonyW1" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.8, + "model": "DSC-W12", + "mounts": [ + "sonyW1" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.8, + "model": "DSC-W15", + "mounts": [ + "sonyW1" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.8, + "model": "DSC-W5", + "mounts": [ + "sonyW1" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 4.8, + "model": "DSC-W7", + "mounts": [ + "sonyW1" + ], + "sensor_size": "1/1.7-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "FDR X1000V", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "FDR-AX30", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "FDR-AX43", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "FDR-AX53", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "FDR-AX700", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "FDR-X1000V", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "FDR-X3000", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "fs5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "FS7", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "ILME-FX2" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "FX2", + "mounts": [ + "Sony E" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "ILME-FX3" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "FX3", + "mounts": [ + "Sony E" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "ILME-FX30" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.546, + "model": "FX30", + "mounts": [ + "Sony E" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "FX6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "FX6V", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "FX9", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HDR AS 15", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HDR-AS100V", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HDR-AS15", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HDR-AS200V", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HDR-AS30V Action Cam", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HDR-AS50", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HDR-AZ1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HDR-CX625", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HDR-CX900E", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HDR-mv1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HX200V", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HX60", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HXR MC2500", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HXR-NX100", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HXR-NX80", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ILME-FX6V", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.24, + "model": "ILX-LR1", + "mounts": [], + "sensor_size": "APS-H", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "M3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "mini dv", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "NEX 5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Nex 5N", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Nex 6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "NEX-3", + "mounts": [ + "Sony E" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "NEX-3N", + "mounts": [ + "Sony E" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "NEX-5", + "mounts": [ + "Sony E" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "NEX-5N", + "mounts": [ + "Sony E" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "NEX-5R", + "mounts": [ + "Sony E" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "NEX-5T", + "mounts": [ + "Sony E" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "NEX-6", + "mounts": [ + "Sony E" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "NEX-7", + "mounts": [ + "Sony E" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "NEX-C3", + "mounts": [ + "Sony E" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "NEX-F3", + "mounts": [ + "Sony E" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "nex3n", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "PMW-400", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "potensic", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Potensic Atom SE", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "PXW-FS7M2", + "mounts": [], + "sensor_size": "Full frame", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "PXW-FX9V", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "PXW-Z280V", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "R100III", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "DSC-RX0" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.7, + "model": "RX0", + "mounts": [ + "sonyRX0M2" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "DSC-RX0M2" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.7, + "model": "RX0 II", + "mounts": [ + "sonyRX0M2" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "RX0II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "RX0II-C-Mount-MOD", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "RX0II_C-Mount-MOD", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "RX0II_Custom-C-Mount-MOD", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "RX0M2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "DSC-RX10" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "RX10", + "mounts": [ + "sonyRX10" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "DSC-RX10M2" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "RX10 II", + "mounts": [ + "sonyRX10II" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "DSC-RX10M3" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "RX10 III", + "mounts": [ + "sonyRX10III" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "DSC-RX10M4" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "RX10 IV", + "mounts": [ + "sonyRX10III" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "DSC-RX100" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "RX100", + "mounts": [ + "sonyRX100" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "DSC-RX100M2" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "RX100 II", + "mounts": [ + "sonyRX100II" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "DSC-RX100M3" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "RX100 III", + "mounts": [ + "sonyRX100III" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "DSC-RX100M4" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "RX100 IV", + "mounts": [ + "sonyRX100III" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "DSC-RX100M5" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "RX100 V", + "mounts": [ + "sonyRX100III" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "DSC-RX100M5A" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.73, + "model": "RX100 VA", + "mounts": [ + "sonyRX100III" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "DSC-RX100M6" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.66, + "model": "RX100 VI", + "mounts": [ + "sonyRX100VI" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "DSC-RX100M7" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.66, + "model": "RX100 VII", + "mounts": [ + "sonyRX100VI" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "DSC-RX100M7A" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.66, + "model": "RX100 VIIA", + "mounts": [ + "sonyRX100VI" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "RX100II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "RX100III", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "RX100IV", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "RX100M4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "RX100M5A", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "RX100V", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "RX100VI", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "RX10II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "RX10III", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "RX10IV", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "RX10M2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "RX10M4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [ + "DSC-RX1R" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "RX1R", + "mounts": [ + "sonyRX1" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "DSC-RX1RM2" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "RX1R II", + "mounts": [ + "sonyRX1" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [ + "DSC-RX1RM3" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "RX1R III", + "mounts": [ + "sonyRX1" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "RXO II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SO-02K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "VENICE", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "XA75", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Xperia 1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Xperia 1 III", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Xperia 1 iv", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Xperia 1 V", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Xperia 5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Xperia 5 II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "xperia 5 iii", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Xperia 5 iii Cinema pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Xperia 5 IV", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Xperia 5 V", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Xperia 5II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Xperia IV", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Xperia PRO-I", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Xperia V 2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Xperia XA2 Ultra", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Xperia XZ1 Compact SO-02K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 7.87, + "model": "Xperia Z3", + "mounts": [ + "sonyXperiaZ3" + ], + "sensor_size": "Small sensor", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "XZ1 Compact", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.7, + "model": "ZV-1", + "mounts": [ + "sonyZV1" + ], + "sensor_size": "1-inch", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ZV-1F", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.0, + "model": "ZV-E1", + "mounts": [ + "Sony E" + ], + "sensor_size": "Full frame", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "ZV-E10", + "mounts": [ + "Sony E" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [ + "ZV-E10M2" + ], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [ + "M42", + "M39/1", + "DKL", + "T2", + "Generic" + ], + "crop_factor": 1.534, + "model": "ZV-E10 II", + "mounts": [ + "Sony E" + ], + "sensor_size": "APS-C", + "source": [ + "lensfun", + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ZV-E10II", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sony", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "\u9ed1\u9ca84", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "soocoo", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "c100", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Sooyi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "supremo", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "premere", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "supremo", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "premere 4k", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Surfola", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "530", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Techno spark", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Spark", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Tecno", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "pova 5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Thieye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "dash cam", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Thieye", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "t5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "TOMATE", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "MT-1081", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "TomTom", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Bandit", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Tracer", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "SJ 4000LE", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "ulefone", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Armor 12g", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Ulefone", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 5.41, + "model": "Armor 7 Rear IMX586", + "mounts": [], + "sensor_size": "1/2.3-inch", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "UMIDIGI", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "F3 5G MP13", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Vaquita", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Paralenz Gen 1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "visi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "orion_819L", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Visuo", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Zen K1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "VIVITAR", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "DVR923-KIT-BLK", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Vivo", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "A119 V3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Vivo", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "IQOO 9", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Vivo", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "iQOO Z1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Vivo", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "IQOO3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Vivo", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S15pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Vivo", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "V2145A", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Vivo", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "V23 5G", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Vivo", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "V2309", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Vivo", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "v27e", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Vivo", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 3.0, + "model": "Vivo x90 Pro+", + "mounts": [], + "sensor_size": "1-inch", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Vivo", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X100 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Vivo", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X100Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Vivo", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X50", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Vivo", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "x50 pro+", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Vivo", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X50ProPlus", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Vivo", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X70 Pro Plus", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Vivo", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 3.0, + "model": "x90 Pro+", + "mounts": [], + "sensor_size": "1-inch", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Vivo", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X90Pro+", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Volla", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Vollaphone X", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "1s lite", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "1s little", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Avatar", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Avatar HD", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Avatar HD Mini 1s Lite", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Avatar Micro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Avatar Micro V1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Avatar Mini", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Avatar mini 1s kit nano", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Avatar Moonlight", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Avatar Moonlight kit", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Avatar Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Avatar Pro Camera", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Avatar Pro HD", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Avatar Pro Wide", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Avatar V2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Avatar V2 Camera", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Avatar Wide", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "fpv cam", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "HD Pro kit", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Micro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "mini vtx", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Moonlight", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Moonlight 4k", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Moonlight 4K 30fps", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Nano", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ProV2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "V2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "walksnail cinlog35", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail Avatar V2", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "FPVcam V2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Walksnail Avatar V2 Pro", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "fpv cam", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Wolfang", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GA300", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Wolfang", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "GA320", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Wolfang", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "ga400", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Wolfang", + "brand_aliases": [ + "WOLFGANG" + ], + "compatible_mounts": [], + "crop_factor": null, + "model": "GA420", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "X-TRY", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "XTC 263", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "XDV", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Action Sport Camera", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "10", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "10 Ultra", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "10pro Ultra wide", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "10S", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "10T Lite", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "10u", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "11 Lite 5G NE", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "11 ULTRA", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "11 Ultra 4:3 RAW", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "11T", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "11Tpro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "12 5G", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "12 Lite", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "12 pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "12 SU", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "12S Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "12s ultra", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [ + "Mi" + ], + "compatible_mounts": [], + "crop_factor": null, + "model": "12SU", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "12T Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "12x", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "13", + "mounts": [], + "sensor_size": "Full frame", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "13 24mm", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "13 Ultra", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "13pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "13pro main", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "13pro wide", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "13T", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "13T Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "13U", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "13U 23mm \u5c0f\u7c73", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "13ultra", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "13u\u5e7f\u89d2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "14", + "mounts": [], + "sensor_size": "Full frame", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "14 3.2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "14 Main", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "14 Ultra", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "14PRO", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "14Pro main camera", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "14u", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "14ultra", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "22081212C", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "2210132G", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "2304FPN6DG", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "24030PN60G", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "cc9pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "fimi x8 mini", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [ + "MI" + ], + "compatible_mounts": [], + "crop_factor": null, + "model": "K30PRO1X", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "k60", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "K70\u81f3\u5c0a", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "M2012K11AC", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "M2101K7BNY", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mi 10", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mi 10 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mi 10 Ultra", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mi 10T", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mi 10T lite", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mi 10T PRO", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mi 11", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mi 11 Lite", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mi 11 lite 5g", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mi 11 Lite 5G NE", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "MI 11 Ultra", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mi 11 Ultra 24mm", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "mi 11t", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mi 11x", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "MI 11x / Poco F3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mi 11X M2012K11AI", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mi 12 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mi 13", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mi 14", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mi 8 Lite", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mi 9", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "MI 9 Lite", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mi 9 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "MI 9T Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mi 9T Pro / K20 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mi A3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mi Action 4k", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mi Action Camera 4k", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mi MIX 1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mi Note 10 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "mi10", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "mi10tpro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "mi14", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mi8", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mijia 4K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mix 2s", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Mix3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "M\u0130 10T", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Nico", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Note 10", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Poco F2 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Poco f3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "POCO F5", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Poco X3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Poco X3 NFC", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Poco X3 pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Pocophone NFC X3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi 10s", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi 11", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi 8", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi 9", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi 9s pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi Horizontal", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi K30pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi K50", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi K50 \u5e7f\u89d2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi k50i", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi Note 10", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi Note 10 pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi Note 11", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "REDMI NOTE 11 4G", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi Note 11 pro 4G", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi Note 11 Pro+ 5G", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi Note 11Pro+ 5G", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi note 11t pro +ultra wide", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi Note 12 + 5G", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi Note 12 Pro (5G)", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi note 12 pro + 5g", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi Note 4X", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi Note 4X Samsung S5K3L8", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi Note 7", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi Note 8", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi Note 8 PRO", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi Note 9 Pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi note 9 pro maxr", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi note 9Filmic pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi Note 9S", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi Note12Tubro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi Pro 10", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi S2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Redmi \u7ea2\u7c73K30pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "RN8 Ginkgo", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Ultra 14", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Xiaomi 13 Ultra", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Yi", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Yi 1080p Action camera", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Yi 22l", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Yi 2K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Yi 4K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Yi 4k Action Camera", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "YI 4K+", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Yi Action", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Yi action cam", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Yi action cam\u00e9ra", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Yi action cam\u00e9ra 4k", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Yi Discovery", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Yio", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Xiaomi", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "\u5c0f\u8681\u76f8\u673a", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "XTU", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "MAX", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "XTU", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "MAX2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "XTU", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "MAX2 CAM", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "XTU", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "MAX3 CAM", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "XTU", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "MAXPRO CAM", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "XTU", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "MINI1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "XTU", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "XTU", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S2 PRO", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "XTU", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S2PRO", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "XTU", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "XTU", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S3pro", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "XTU", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S3PRO CAM", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "XTU", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S5K", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "XTU", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "XTU", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "S6 CAM", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "XTU", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X1", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "XTU", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "XTU", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X3", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "XTU", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "X3 CAM", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "XTU", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "XTUMAX2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "XTU", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "XTUS5K (v1.2)", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "YI Technology", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 2.0, + "model": "M1", + "mounts": [ + "Micro 4/3 System" + ], + "sensor_size": "Micro Four Thirds", + "source": [ + "lensfun" + ] + }, + { + "aliases": [], + "brand": "YiCam", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Yicam", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Yolansin", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "C16", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Z CAM", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "E1", + "mounts": [], + "sensor_size": "Full frame", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Z CAM", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "E2", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Z CAM", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "E2 - M4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Z CAM", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "E2 M4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Z CAM", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "E2 S6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Z CAM", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "E2 S6G", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Z CAM", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "E2-F6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Z CAM", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "E2-M4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Z CAM", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "E2-S6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Z CAM", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "E2-S6G", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Z CAM", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "E2c", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Z CAM", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "E2F6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Z CAM", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "E2M4", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Z CAM", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "E2S6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Z CAM", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "F6", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Z CAM", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "laowa", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Z CAM", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "S6", + "mounts": [], + "sensor_size": "Full frame", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "Zoom", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "Q2n", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "ZTE", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "Axon", + "mounts": [], + "sensor_size": "Full frame", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "ZTE", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "AXON40ULTRA", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "ZTE", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "Nubia z50 ultra", + "mounts": [], + "sensor_size": "Full frame", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "ZTE", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": 1.0, + "model": "nubia z60 Ultra 35mm", + "mounts": [], + "sensor_size": "Full frame", + "source": [ + "gyroflow" + ] + }, + { + "aliases": [], + "brand": "\u7ebd\u66fc", + "brand_aliases": [], + "compatible_mounts": [], + "crop_factor": null, + "model": "LF0779-4663", + "mounts": [], + "sensor_size": null, + "source": [ + "gyroflow" + ] + } + ], + "lenses": [ + { + "brand": "", + "crop_factor": null, + "model": "(75mm - 66mm tele lens)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "(S5K)HM6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "-", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "--", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": ".58x Metabones EF-S18-35/1.8 15mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": ".64x EF24-105mm f/4L IS II USM 15mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": ".64x EF24-105mm f/4L IS II USM 22mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": ".64x Sigma DC 17-70/2.8-4 OS HSM 19mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": ".64x Sigma DC 8-16/4.5-5.6 EX HS 5mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": ".64x Tamron 24-70/2.8 SP VC USD 15mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": ".64x Tamron 24-70/2.8 SP VC USD 45mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": ".718-35mm F1.8 DC HSM | Art 013 13mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": ".7EF24-70mm f/2.8L II USM @ 17mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": ".7x Sigma DC 10-20/4-5.6 EX HSM 7mm @10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": ".7x Sigma DC 10-20/4.2-5.6 EX HS 7mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": ".7x Sigma DC 17-50/2.8 EX OS HSM 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": ".7x Sigma DC 17-70/2.8-4 OS HSM 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 0.75, + "model": ".7xEF36mm f/1.0 36mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "0.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "0.45x lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "0.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "0.5 Ultrawide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "0.5 Wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "0.5X", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "0.5x Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "0.6X", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "0.6x Adapter", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "0.6X wide lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "0.71+17-40F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "0.71+26-35F4 16MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "0.71xEF50mm f/1.0 36mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "0.7x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "0?95", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1 inch", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1 inch mod", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1 standard", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1 X", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1-inch", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1-inch Ultrawide 110", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1-inch Wide F3.2 14.4mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1.0X", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1.76\u2033 sensor", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1.8mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1.8mm caddx ant", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1.8mm M7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1/1.22\" 200mp 23mm f/1.69", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1/1.3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1/1.3 inch", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1/1.3-in CMOS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1/2.3\" CMOS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1/2.3\" CMOS FOV: 83\u00ba", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1/2.3\u201d", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1/2.3\u201d CMOS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1/2.3\u201d CMOS FOV: 83\u00b0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1/2.3\u82f1\u5bf8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1/25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1/3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "10", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "10-15 verttical 10", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "10-18", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "10-18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "10-20 F4 G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "10-20f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "10-20mm F4 G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "10-22 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "10-24", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "10-24 f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "10-24f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "10-24MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "10-25", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "10.-18", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "100-500 RF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1000mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "100mmMacro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "101.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "102.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "104mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "105.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "105f2.8G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "105mm f2.4 + MetaBones 0.71", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "108 mp", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1080p 60fps", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1080p Landscape", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1080p30", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1080p60", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "108MP 1080p Main", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "10F5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "10mm f4.0 apsc cookie", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "10MM F8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "10mm Meike", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "10mm Meike Mini Prime", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "10mm Meike Miniprime", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "10mm Rokinon", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "10x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "11 tokina", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "11-16 MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "11-20 11 4k", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "11-22", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "11-22 EFM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "11-24", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "11-27.5mm f3.5-5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "110mmf2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "115mm Telephoto", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "117mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "119.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "11baea79", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "11f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "11mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "11mm Fisheye", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12 - 24mm F2.8 GM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12 MP", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12 \u041c\u043f - Samsung S5K2L3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12-100", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12-28mm @ 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12-28mm @ 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12-35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12-35 F2.8 M43", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12-35mm f/2.8 II ASPH POWER OIS LUMIX G X VARIO", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12-35mm f2.8 II ASPH POWER OIS LUMIX G X VARIO", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12-40", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12-40 2.8 pro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12-40mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12-60", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12-60 (12mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12-60 12\u7aef", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12-60/3.5-5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12-60mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12-60mm varrio", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "12.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "120", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "120 deg", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "120\u00b0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "121 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1260-12", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12mm (Apsc)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12mm 2.8 olympus", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12mm 7Artisans", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12mm f/3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12mm Magic Microprime Cine", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12MP", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "12px", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "13", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "13 mm UW", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "13-55", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "13.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "13.4mm f/2.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "130 fov", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "130\u00b0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "134/4 jupiter", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "135", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "135.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "136.00mm-Sony50-210mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "138.00mmTamron70-300mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "13mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "13mm 60 fps vertical", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "13mm Ultrawide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "13mm Viltrox", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "13MP", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14 28", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14 f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14,66 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14-140", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14-140 @ 14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14-140 F3.5-5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14-24 sigma", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14-28", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14-30", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14-30 F4S", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14-30mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14-30mm F4S", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14-30mm f4s @ 14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14-35MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14-70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14.00 f1.8 GM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14.00mm f1.8 Sigma prime", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14.00mm samyang", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14.66", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14.66 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "140mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "145degree f/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "148\u00b0 Custom Wide Angle Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14mm (0-2)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14mm (2)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14mm Crop", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14mm Laowa f4 Zero D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "14mm ultrawide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "15 - 45 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "15 45 at 15mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "15-45", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "15-45 efm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "15-45 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "15-45mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "15-45mm f3.5-5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "15-45mm f3.5-5.6 kit lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "150", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "150.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "150mm canon", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1545", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "155 deg", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "15mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "15mm 1.7 dji", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "15mm dji m4/3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "15mm laowa cine", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "15mm Lumix", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "15mm olympus MFT", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "15mm Panasonic", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "15mm Voigtlander", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16 105 F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16 80", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16 f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16 MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16 mm 1.4 sigma", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16 mm 1:2.4 F2.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16 mm 2.8 STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16 mm Rf f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-28 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-35 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-35 2.8 L USM III", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-35 EF 2.8 mk2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-35 f/4 L", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-35 F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-35 F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-35 f4 OSS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-35 GM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-35 GM II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-35 GM2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-35 mm f2.8 L", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-35F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-35L F4 IS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-35mm f/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-35mm f/4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-35mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-35mm F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-35mm Nikkor", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-50 20MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-50 apsc", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-50 at 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-50 DX", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-50 f3.5-5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-50 F8 GM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-50 IOS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-50 Kit lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-50 OIS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-50 Standard Kit", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-50.16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-50F3.5-5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-50GMaster(16mm\u7aef)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-50mm @ 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-50mmm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-50s", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-55", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-55 (16)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-55 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-55 f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-80 / f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-80 f2.8-4E @ 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-85mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16-F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16.00mm F1.8 Youngnuo on Sony FF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16.00mm on FE C 16-35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1635GMIIF2.816.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "165 degrees", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1650", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1650 3.5-5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16:9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16c", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16mm 1.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16mm 1:1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16mm 1:1.4 DC DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16mm 2,8f", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16mm Meike", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16mm Meike MFT", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16mm rf 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16MM Samyang", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16mm Ultrawide (Exmos RS IMX363)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16mm+0.75", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "16nm 1:1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "17", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "17 40", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "17-50mm (28mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "17-50mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "17-55 f.28", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "17-55mm f/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "17-70 35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "17.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "17.00mm Tamron AF 17-28mm f/2,8 Di III RXD", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "170", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "170\"", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "170'", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "170FOV", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "170\u00b0 Wide Fish-eye", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "170\u00b0HD Wide-angle fish-eye", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "170\u00b0\u5e7f\u89d2-2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "170\u00ba", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1740f4 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1770 2.8 17", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1770 f2.8 at 17", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "17mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "17mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "17mm Laowa Cine", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "17mm ultrawide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-105", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-105 f/3.5-5.6G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-105 F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-105 g", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-105 G 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-105mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-105mm f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-105mm F4 G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-105mm F4 OSS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-105mmf4 105.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-135", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "18-135 @ 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-135 ISUSM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-135@18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-135mm@70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-135mm_IS_USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-140", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-140mm @ 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-150", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-200", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-200le 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-200le70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-35 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-35 T2 PL", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-35mm F1.8 DC HSM | Art 013 17.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-35mm F1.8 DC HSM | Art 013 18.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-35mm F1.8 DC HSM | Art 013 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-35mm F1.8 DC HSM | Art 013 19.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-35mm F1.8 DC HSM | Art 013 20.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-35mm F1.8 DC HSM | Art 013 23.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-35mm F1.8 DC HSM | Art 013 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-35mm F1.8 DC HSM | Art 013 28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-35mm F1.8 DC HSM | Art 013 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-35mm Sigma Art 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-45 @ 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-50 1:2.8 DC DN 55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-50 f1:2.8s", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-50mm oss kit lens 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-55", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-55 Fujinon", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-55 kit", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-55 Kit lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-55 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-55@18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-55mm @18 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-55mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18-55mm IS-STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18.00mm Samyang F2.8 FE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18.00mm SIGMA", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18.00mm-50.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18.00mmSamyang2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18/135mm 3.5-5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "180 Degree", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "180\u5ea6\u9c7c\u773c", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18135/18", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1835", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "184185", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1855", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18a19563", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18mm - 45mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18mm 1.8f", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18mm S35 Meike", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18mm-105mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "18mm-55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "19.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "19f7ecbf", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1inch", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1inch (Linear)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1inch 5.7K", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1inch 6K wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1s lite", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1x at 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1x Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1X main", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "1x zoom", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2.1 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2.1 mm, f/2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2.1 ratel", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2.1mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2.1mm f/2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2.1mm Special Glass Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2.1mm(M8) FOV 155\u00b0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2.3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2.35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2.3mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2.5mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2.75 mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2.7K30P", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2.7K4/3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2.8 160 DEGREE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2.8 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "20", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "20 - 60", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "20 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "20-35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "20-40 @ 20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "20-60", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "20-60mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "20-60mm @ 20 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "20-60mm @ 20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "20-60mm @ 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "20-60mm f3.5-5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "20-60mm When20", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "20-70 G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "20-70G@70MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "20.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "20.00mm Tamron AF 17-28mm f/2,8 Di III RXD", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "20.30mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2000 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2060-20", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "20b5c305", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "20d9ac3d", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "20f67252", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "20mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "20mm AstrHori f8.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "20mm f2.8 tamron", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "20mm MIR", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "20mp", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "21.00mm NOKTON 21 mm F1.4 Aspherical", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "21a16994", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "21mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "22", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "22MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "22MM F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "22mm F2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "22mm F2.0 Canon EF-M", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "22mm \u0192/ 1.79", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "23", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "23 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "23 f/1.95", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "230mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "23mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "23mm (Main)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "23mm 1\u00d7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "23MM f2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "23mm Main", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "23mm Main Camera", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24 fe", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 3.0, + "model": "24 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24 mm main", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24 mm Main camera", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24 mm with Freewell Cinemorphic 1.55x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24- 105mm 68.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-105", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-105 @ 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-105 f/4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-105 f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-105 f4-7.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-105 gss stds", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-105.24", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-105mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.6, + "model": "24-105mm F/4 RF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-105mm F4 MACRO O.I.S", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-105mm g-master", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-105stm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-108 IS USM\uff0824mm\uff09", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-120 F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-120mm f4 @ 120mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-150", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-195 f4 @24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-200", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-200@24/4-6.3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-240", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-240 f3.5-6.3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-240mm f4.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70 2.8 ED NIKKOR", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70 2.8 G ED", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70 2.8G ED", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70 dg dn art", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70 f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70 f2.8 dg dn art", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70 F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70 Sony OSS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70/2.8G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70/f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70/F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70f4s", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70mm @ 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70mm @ 70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70mm EF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70mm F 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70mm F2.8 70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70mm F2.8 DG DN | Art", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70mm F2.8 DG OS HSM | Art 017 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70mm F2.8 DG OS HSM | Art 017 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70mm F2.8 DG OS HSM | Art 017 51.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70mm F2.8 DG OS HSM | Art 017 70.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70mmF2.4 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-70s 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-720 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24-85", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24.00-70mm sigma art", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24.00mm Tamron AF 17-28mm f/2,8 Di III RXD", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24.00mmSamyang2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24105", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24200", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2470", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2470F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2470RF24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24_105_F4_L@50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24e23644", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24f78111", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24m", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24mm (Sigma DG DN 24-70 f2.8)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24mm -wide-", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24mm 1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24mm 1.78", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24mm f/1.75 ASPH", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24MM F1.78", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24mm f1.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24mm No OIS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24mm Samyang", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24mm T1.5 FF | 017 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24mm Wide (Exmos RS IMX478)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24MM Wide (Main Back) Camera", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24mm with 0.6x ZOMEI", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24MM XEEN CF + VILTROX 0.71", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24mm-105mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24mm-50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24mm_4 x 3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24MM_F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "24mm\u4e3b\u6444", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "25 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "25-600", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "251.4+TPK-16Z", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "25f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "25mm 1.7f", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "25mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "25mm f1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "25mm F1.7 ASPH", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "25mm F1.8 7Artisans", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "25mm FF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "25mm Meike", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "25MM VESPID PRIME", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "25mm_sp3cooke", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "26 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "26mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "26mm 1.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "26mm Blackmagic App", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "26mm f/1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "26mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "26mm front wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "26mm main", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "26mm main (1x)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "26mm Wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "27", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "27 1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "27.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "27c49f08", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "27mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "27mm Cooke S4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "27mm Main", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28 70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28 MM 2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28 tamron", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28-105", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28-200", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28-200mm 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28-60mm@60mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28-70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28-70 c522b64f", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28-70 F3.5-5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28-70/3.5-5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28-70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28-75", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28-75(28)FX", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28-75(28DX)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28-75@28", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28-75mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28.00-75.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28.00mm -75mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28.00mm Tamron AF 17-28mm f/2,8 Di III RXD", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28.00mm-70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28.90mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28.mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2860", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2875", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2875G2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2875g2_75mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28mm 1:2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28MM 2.8 IS USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28mm equivalent", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28mm F/1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28mm F1.4 DG HSM | Art 019 28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28mm F1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28mm main", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28mm vazen", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "28mm with 1,5x Crop", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "29", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "29.5mm wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "29mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2x Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "2x zoom", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "3 times", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "3.2mm f/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "3.2mm Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "3.5-5.6 / 18-135 OSS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "3.5-5.6/16-50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "3.5-5.6/16-50 mm sony kit lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "3.5-5.6/28-70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "30 f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "30 mm 2,8 sigma", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "30.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "300", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "300P", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "300R", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "30mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "30mm F1.4 DC HSM | Art 013 30.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "30mm Macro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "30mmmacro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "31mm Dulens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "32MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "32MM_F10_L", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "34.80mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "341A", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35 1.8S", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35 F1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35 mm 1.8 RF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35 mm RF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35-2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35.00mm Tamron 28-75mm f/2,8 Di III VXD G2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "351.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35150", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35c", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35MM + OPTEX 0.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35mm 1.4F", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35mm 1.8 RF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35mm APSC Mode", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35mm Canon FD f3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35mm f/1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35mm f/2.8 Di III OSD M 1:2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35mm F1.2 7Artisans", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35mm F1.8 OSS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35mm fuji", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35mm Fujian TV", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35MM MAMIYA", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35MM MAMIYA+OPTEX", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35mm Meike MFT", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35mm Meike S35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35mm sigma", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35mm T1.5 FF | 017 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35mm V35 Athena OM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35mm ziess", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35MM+OPTEX+1+3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35mm, f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35mm/f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35mm_1.2t", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35MMcine", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "35mmF1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "36", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "360", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "36mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "36mm Viltrox f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "37mm UV& 0.45 lens adapter", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "39mm macro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "3x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "4.1-86.1mm 1:2.8-5.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "4.35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "4.6MM-56MM 1:1.2~3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "4/16-70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "4/18-105 stock", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "40 mm Cooke S4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "40.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "40.00mmVoigtlander1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "40.50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "40/2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "40mm Cooke s4 (02)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "40mm F1.4 DG HSM | Art 018 40.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "40mm f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "41.90mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "42.30mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 2.0, + "model": "42.5mm f1.2 Panna Leica", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "44M-6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "45", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "45-100", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "45-175mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "45-2.8(I)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "45-2.8-I", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "45mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "45mm 2.8 dg dn c", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "45mm DG DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "45mm f2.8 dg dn", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "45mm f2.8 dg dn c", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "48", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "48e423ad", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "48mm f/1.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "49.90mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "4:3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "4K", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "4K BOOST", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "4K BOOST 16:9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "4K BOOST 4:3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "4K BOOST 6K", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "4k BOOST LENS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "4K Boost Lens (Ultrawide 104)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "4k+", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "4k25", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "4K30P", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "4K60p", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "4K_Backbone_F0.95-6mm-1x2.7in", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "4KSW", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "4x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "5.63mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50 1.4G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50 1.8 STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50 mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50 mm f/1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50 mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50 mm f1.8 STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50-1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50-2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50.00mm Sigma ART", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50.00mm Tamron 28-75mm f/2,8 Di III VXD G2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50.20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50.F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50/1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "501", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "501.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "501.8s", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50fangdou", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50L F1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50mm 1.2 USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50mm 1.2s", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50MM 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50mm 1.8 FE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50mm 1.8 Old", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50mm 1.8 OSS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50mm 1.8 stm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50mm 1.8f", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50mm 1.8G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50mm 2.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50mm f.18 stm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50mm f1,7 meike", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50mm F1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50mm f1.8 STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.24, + "model": "50mm F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50mm f2.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50MM STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50mm T2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50mm Telephoto (Exmos RS IMX663)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50mm Telephoto (Exmos RS IMX664)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50MM VESPID PRIME", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50MM.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50mm1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50mmf1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50mmtessar2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "50mp", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "52mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "53mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "55", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "55 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "55 1.8 ZA", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "55-210", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "55-300NIKON", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "55210", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "55f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "55mm f/1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "55mm F1.4 7Artisans", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "55mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "55mm F1.8 ZA", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "55mm f1.8 zeiss", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "55mm f4 + MetaBones 0.71", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "56 f1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "56.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "58.80mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "58mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "59.20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "5k25", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "5K25 10mm MFT Laowa", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "5k25 7.5mm Laowa MFT", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "5x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "5x Telephoto", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "60", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "60fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "60mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "62mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "63mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "64 mp main sensor", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "64 MP, 26mm (wide), 1/1.7X\"", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "64MP MAIN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "64MP-Main", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "66mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "69mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "69mm crop", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "6c5f7ee5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "6G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "6mm CS Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "6mm Laowa MFT Cine 5k", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7 Artisan 7.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7 artisans 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7 Artisans 25mm f.18", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7 Artisans 25mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7 artisans 25mm f1.8 e mount (APSC)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7 Artisans 35mm T2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7-14", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7.5 F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7.52.8fish", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7.5mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7.5mm f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7.5mm f2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7.5MM F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7.5mm f2.8 7Artisans", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7.5mm fish eye", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7.5mm Fisheye APSC", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7.5mm laowa", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "70-180", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "70-200", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "70-200mm F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "70-200mm usm F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "70-300", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "70-300mm f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "70.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "70200gm2 70.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "72 1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "73mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "74mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "75.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "75.00mm F1.8 SAMYANG", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "75mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "75MM F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "75mm Viltrox", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "75mm4K", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7A 7.5mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7A 7.5mm Fisheye", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7abb6735", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artians", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7artisan 25m", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisan 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisan 25mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7artisan 7.5mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisan 7.5mm F/2.8 II X", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "7Artisans", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisans 10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisans 10mm 1:2.8 Fisheye ED", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisans 10mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7artisans 10mm f2.8 APS-C", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7artisans 10mm fisheye", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisans 10mm fisheyes", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.33, + "model": "7Artisans 10mm T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7artisans 10mm2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7ARTISANS 12 F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisans 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7artisans 12mm 2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7artisans 12mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7artisans 14mm T2.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7ARTISANS 16:9 24mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7artisans 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisans 25mm crop", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.9, + "model": "7Artisans 25mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisans 25mm T1.09", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7artisans 28mm5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7artisans 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisans 35mm 0.95", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "7Artisans 35mm 1.4f", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisans 35mm f/0.95 APS-C", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7ARTISANS 35MM F/1.4 II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7artisans 35mm f0.95", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisans 35mm f1.2 Mark II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7artisans 35mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisans 35mm f1.8 (crop)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisans 35mm T1.05", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7artisans 35mm T1.05 Vision Cine Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisans 35mm T2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisans 35mm Vision", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisans 50mm F0.95", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisans 50mm f0.95 Sony E-Mount", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7artisans 50mm spectrum T2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisans 50mm T2.0 @5K", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisans 50mm T2.0 @6K", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisans 55m/1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "7artisans 60mm f/2.8 Macro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7artisans 7,5mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisans 7.5mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisans 7.5mm 2.8f", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "7Artisans 7.5mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisans 7.5mm Fish Eye 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "7artisans Hope 85mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7artisans M43 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisans Spectrum 50mm T2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisans Vision 50mm T1.4 APSC", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisans Vision Cine Lens 25mm T1.05", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisans Vision CineLens 35mm T1.05", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artisans25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7artistian 25mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7Artizan 12mm T2.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "7tart 10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "80", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "800", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "81 mm Tele", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "85.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "85.00mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "85mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "85mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "85mm EF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "85mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "85mm Samyang", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "87.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "8mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "8mm drl", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "90 degree", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "90.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "90.00mm G Macro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "90macro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "90mm Tamron 2.8f", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "90mmf2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "90\u00b0 Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "92MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "932993f", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "94mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "95216789", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "9:16", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "9fab2ee1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "9mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "9mm Pana Leica DG H-X09", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "9mm T2.9 Sony E", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "9mm T2.9 Zero-D Cine", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "9MM/F1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "@16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "A", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "A047", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "A2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "a3a23ffd", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ACC 23", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "action cam", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AF 85mm F1.4 FE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AF NIKKOR 24mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AF Nikkor 35-70mm F2.8 D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AF NIKKOR 50mm f/1.8D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "af-p nikkor 18-55 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AF-P NIKKOR 18-55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AF-S 18-140mm f3.5-5.6G VR", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AF-S 18-55", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AF-S DX NIKKOR 18-140MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AF-S DX NIKKOR 18-140mm f/3.5-5.6G ED VR", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AF-S DX NIKKOR 18-140mm VR", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AF-S DX NIKKOR 18-55mm f/3.5-5.6G VR", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AF-S Nikkor 18-105mm 1*3.5-5.6 ED", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AF-S NIKKOR 18-105mm1* 3.5-5.6G ED", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AF-S Nikkor 18-140mm DX VR", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AF-S Nikkor 18-55 DX VR", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AF-S Nikkor 35mm 1:1.8G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AF-S Nikkor 50mm 1.8 G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AF-S NIKKOR 50MM 1:1.4G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AF-S NIKKOR 5MM 1:1.4G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AF-SNIKKOR 55-200", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AF-SNIKKOR55-200", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AFP 18-55 Nikkor", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Air", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AIR 2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "all-glass, 170\u00b0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Analog", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "anamorphic", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Anamorphic 1.212", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Anamorphic 1.2121x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Anamorphic 1.55x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ANGENIEUX 28", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ang\u00e9nieux 17-68mm 1:2.2 Type 4x17B", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Anomorphic 16/9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Aperture", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "APO Lanthar 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Apple", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Apple Iphone 8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "aps-c 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "aps-c 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ARRI B SPEED 18MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ARRI B SPEED 25MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ARRI CarlZeiss Ultra PRIME 24mm t1.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Arri Ultra Prime", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ARRI Ultra Prime 14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Arriflex Zeiss S16 9.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "artisan 55mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Artisan 7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Asahi SMC Pentax-M 1:1.4 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Asahi SMC Takumar Fish-eye 17mm F/4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AstrHori 10mm f.8 II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AstrHori 10mm F8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AstrHori 10mm f8 II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AstrHori 10mm_f8_II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AstrHori 10mmF8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AstrHori 50 F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AstrHori 85.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Astrhori50f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AstrHori50mmF2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AstrHori\u5ca9\u77f3\u661f10mmF8\u4e00\u4ee3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ATHENA 25 T1.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ATLAS ANAMORPHIC 40mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Atlas Orion 100mm@T5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ATLAS ORION 25MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ATLAS ORION 40MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.14, + "model": "Atlas Orion 40mm@T5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Atlas Orion 65mm@T5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ATLAS ORION 80MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Auto Chinon f=35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AvatarMoonlight__1080p_16by9_1920x1080-60.00fps", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AvatarMoonlight__1080p_4by3_4K-60.00fps", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AvatarMoonlight___2.7k_16by9_2704x1520-60.00fps", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "AvatarMoonlight___4k_16by9_3840x2160-60.00fps", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "B", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "B type (135\u00b0)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "B070 Tamron 17-70 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "b3b1bf80", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "back", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Back 1.0 focal", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Back camera (26mm equiv.)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Back Telephoto camera (51mm equiv.)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Base Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Batis 135.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "BATIS 2/25", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Batis 25.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Batis 40.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Batis 85", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "batis25", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "BEASTGRIP 0.6X", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "BeastGrip 0.6X Wide Angle", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "betis 18mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "betis18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Biotar 58mm + Aivascope 1.5x (Veritcal)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "Blackvue", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Blackwing 137", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Blackwing 20.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "BlackWing 27mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Blackwing 37", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Blackwing 47", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Blackwing 57", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Blackwing 77", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "BLAZAR REMUS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Blazar Remus 35mm 1.5X", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Blazar Remus 45mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Blazar Remus 45mm 1.5X", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Blazar Remus 45mm w/Metabones Speed Booster Ultra", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Blazar Remus 65mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Blazar Remus 65mm - V1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Blazar Remus 65mm 1.5X", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Blazar Remus Anamorphic 45 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "BMPCC 4K DZOFILM 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Brighten Stars 55mm FE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Brightin Star 10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Brightin Star 10mm F5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Brightin Star 35mm f0.95", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Brightin Star 7.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Brightin Star 7.5mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "BRIGHTIN STAR 9MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "BRIGHTIN STAR 9mm F5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "brightin star AF 50mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "brightingstar 12mmf2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "BrightStar 10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "BRIGHTSTAR 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Brigthin star 10mm f5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Build-in lens Zeiss", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Built-in lens Zeiss", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "by FredoxFpv", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "C-Dreamer 9mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "caddx", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "caddx 1.8mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Caddx LS106", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Caddx LS108", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "caddx ratel v1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Caddx/Caddx_Walnut_LDC_1080P120_1080p_16by9_1920x1080-120fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Caddx/Caddx_Walnut_LDC_4k60_4k_16by9_3840x2160-59.94fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Caddx/Caddx_Walnut_NO-LDC_1080P120_1080p_16by9_1920x1080-120fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Caddx/Caddx_Walnut_NO-LDC_1080P60_1080p_16by9_1920x1080-59.94fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Caddx/Caddx_Walnut_NO-LDC_2.7k30_2.7k_4by3_2720x2040-29.97fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Caddx/Caddx_Walnut_NO-LDC_4k30_12M_4k_4by3_4000x3000-29.97fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Caddx/Caddx_Walnut_NO-LDC_4k60_4k_16by9_3840x2160-59.94fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Caddx/Walksnail_Avatar_V2_Camera_1080p_16by9_60fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CaddxRatel 2.1mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Camara Trasera", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "cangye-10mm-f8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Cannon 50mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 10 - 22mm (10mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 10-18", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 10-18 5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 10-18 @ 10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 10-18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 10-18mm 4.5-5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 10-18mm 4.6-5.6 IS STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 10-18mm F4.5-5.6 IS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 100mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 100mm macro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 14-35 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 15-35mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 15-45", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 15-45 @ 15mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 15-45 @15mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 15-45mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 15-45mm @15mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON 158-55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 16 mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 16-35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 16-35 2.8f II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 16-35 2.8L Mk2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 16-35 EF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 16-35 f 2.8L", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON 16-35 F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON 16-35 F2.8 (35MM)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON 16-35 F2.8 I", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON 16-35 F2.8 I (24MM)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "canon 16-35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 16-35mm 2.8 LUSM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 16-35mm @16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 16-35mm @20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 16-35mm @24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 16-35mm @28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 16-35mm @35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 16-35mm f.4 L USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON 16-35mm F2.8 Mark ii", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON 16-35MM F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 16-35mm F4 IS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 16-35mm f4 L", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 16-35mm L Series", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON 16-35mm Mkii (20mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 16mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 16mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "canon 18-135", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 18-135mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 18-135mm f3.5-6.3 IS STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 18-150", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 18-45", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "canon 18-55", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 18-55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON 18-55mm Kitlens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "canon 18/55 EFS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 20-35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 24 - 105 F4.0L", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON 24 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "canon 24-105", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 24-105 f4 @ 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 24-105 F4 L", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON 24-105 II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 24-105 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON 24-105II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 24-105mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 24-105mm 3.5-5.6 IS STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 24-105mm f/4 Viltox Speed Booster 0.71x @ 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 24-105mm f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 24-105mm STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 24-200", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 24-70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 24-70 @ 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 24-70 f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 24-70 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "canon 24-70@24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 24-70mm 2.8f", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 24-70mm @24m", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 24-70mm @24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 24-70mm @28m", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 24-70mm @30mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 24-70mm @35m", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 24-70mm @35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 24-70mm f/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 24-70mm L 2.8 @24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 24-70mm L 2.8 @35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 24-70mm L 2.8 @50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 24-70mm L 2.8 @70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 24-70mm Ultrasonix", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON 24MM 1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 28-135mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 2MM F2 STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 35 F/2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "canon 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "canon 50 mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 50 mm 1/4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 50/1.4 FD SSC with MB SpeedBooster Ultra", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 50/1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 50mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 50mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 50mm 1.8 STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 50mm f/1.8 II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 50mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 50mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 50mm Prime", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 50mm STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 50mm UltraSonic", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 50mm. f1.4 scc", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon 55-250mm with viltrox speedbooster", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon CN-E 14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 100mm f/2.8L Macro IS USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 100mm L f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 11-24mm f/4L USM 11mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 14mm L f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON EF 16-35 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 16-35mm f/2.8L 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 16-35mm f/4L IS USM 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 17-40 f/4 @20mm_Equiv 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 17-40mm f/4L USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "canon ef 18-55", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 18-55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 24 1.4 L II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 24-105", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 24-105 f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 24-105 IS II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 24-105mm f/4L IS II USM 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 24-105mm f/4L IS II USM 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 24-105mm F4 USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 24-105mm f4L IS II @ 105mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 24-105mm f4L IS II @ 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 24-105mm f4L IS II @ 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 24-105mm f4L IS II @ 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 24-105mm f4L IS II @ 70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 24-105mm f4L IS II @ 85mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 24-70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 24-70 (24)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 24-70 f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "canon EF 24-70 F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 24-70ii (24)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 24-70mm F/2.8L II USM (5175B010)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 24-70mm f/2.8L II USM 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 24-70mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 24mm f/2.8 IS USM 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 24mm L f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 28mm f/1.8 USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 35 1:2 IS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 35mm f/2 IS USM Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 40mm f/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 40mm f/2.8 STM 40mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "canon EF 50 F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON EF 50 MM 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON EF 50MM 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 50mm 1.8 STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 50mm 1.8f", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 50mm f/1.4 USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 50mm f/1.8 STM 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 50mm L f1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 50mm STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "canon ef 70-200 L USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 70-200.00mm F4L", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 85mm f/1.4L IS USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF 85mm f/1.8 USM 85mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF L 16-35mm f2.8 II USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF S 24mm STM f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF USM 16-35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF-M 15-45mm IS STM at 15mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF-M 18-55mm 1:3,5-5.6 IS STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF-M 22mm f/2 STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF-S 10-18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF-S 10-18mm f/4.5-5.6 IS STM 10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF-S 10-18mm f/4.5-5.6 IS STM 11mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF-S 10-18mm f/4.5-5.6 IS STM 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF-s 10-18mm f4.5-5.6 at 10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF-s 10-18mm f4.5-5.6 at 14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF-s 10-18mm f4.5-5.6 at 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF-S 17-55mm f/2.8 IS USM 17mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF-S 18-135mm f/3.5-5.6 IS 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF-S 18-135mm f/3.5-5.6 IS NANO USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF-S 18-55mm f/4-5.6 IS STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF-S 24mm f/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF-S 24mm f/2.8 STM 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF24-105 with 1.7x Metabones Speedbooster", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF24mm f/2.8 IS USM 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EF24mm f/2.8 is USM Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "canon efs", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EFS 10-18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon EFS 18-55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 1.4 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 100mm f2.8 SSC", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON FD 14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 17MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 17mm f/4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 17mm f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 20-35 F3.5 L", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON FD 20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 20mm F2.8 SSC", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 20mm ZEROOptics", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 24", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 24mm f1.4 w/ Zhongyi Lens Turbo II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 24mm f2 + Metabones Speedbooster", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 24mm F2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 24mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 24mm f2.8 SSC", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon fd 28mm (32mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon fd 28mm (42mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 28mm f/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 28mm F2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON FD 28mm f2.0 SSC", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 28mm Speed Booster", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 35mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 35mm F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 35mm f2 + Metabones Speedbooster", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON FD 35mm f2 X0.71", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 35mm F2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 35mm F2.0 SSC", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 50 1,4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 50 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon fd 50mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 50mm 1.4 + Metabones Speedboster", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 50mm 1.4 S.S.C", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 50MM 1.4 Speedboosted", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 50mm 1.4mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 50mm f/1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 50mm F/1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 50mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 50mm f1.4 S.S.C", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 50mm F1.4 SSC", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 50mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 50mm Speed Boosted 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 50mm Speed Booster 10_3_23", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON FD 55mm f1.2 X0.71", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 85mm 1.8 + Metabones Speedbooster", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 85mm f1.8 S.S.C", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FD 85mm f1.8 SSC", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON FD LENS 20MM 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FDn 20mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon FDn 24mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON FL 35 2.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon HDGC", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon K35 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon kit lenses2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon L 1.2 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon L 16-35mm f.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon L 17-40", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "canon lens ef 50mm 1:1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON LENS FD 20mm 2.8F", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon Lens RF16mm F2.8 STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON LENS RF24-105mm F4 L IS USIM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON LTM 35mm F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon nFD 17mm f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon nFD 20mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon nFD 24mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon NFD 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon nFD 28mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon nFD 35mm f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon nFD 35mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon nFD 50mm f/1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon nFD 50mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon R5C", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon RF 14-24mm F4L", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "Canon RF 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon RF 18-150", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon RF 24-105mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "canon rf 24-50 f4-6.3 is stm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon RF-S18-150 IS STM KIT", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon RF14-35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon RF16mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon RF16mm F2.8 STM 16.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon RF18-150", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON ULTASONIC EF 50mm 1:1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon Ultrasonic 50mm f/1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon Ultrasonic 50mm F/1.4 EF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "canon usm 28mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon Zoom EF 24-105mm f/4L IS 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon Zoom Lens 24-105mm EF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "canon zoom lens ef 24-70 1:2.8 l ii usm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon16-35 F2.8 (16MM)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CANON16-35 F2.8( 16MM)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Canon18-135", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CanonEF lens 50mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "canonEF24-105(24mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "canonEF24-105(50mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Capteur Sony IMX317", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "carl zeiss", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Carl Zeiss 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Carl Zeiss Compact Prime 21mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Carl Zeiss Distagon 18mm F3.5 ZF with Metabones Speedbooster Ultra", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Carl Zeiss Distagon ZE 21.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Carl Zeiss Flektogon 20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Carl Zeiss Flektogon 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Carl Zeiss Jena 20mm f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Carl Zeiss Jena 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Carl Zeiss Jena Biometar 80mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Carl Zeiss Jena DDR Flektogon 2.4/35 MC", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Carl Zeiss Jena Flektogon", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Carl Zeiss Jena Flektogon 20mm f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Carl Zeiss Jena Flektogon 20mm T2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CARL ZEISS JENA FLEKTOGON 20mmF2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Carl Zeiss Jena Flektogon 25mm f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Carl Zeiss Jena Flektogon 35mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Carl Zeiss Jena Flektogon 4/20", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Carl Zeiss Jena Pancolar 50mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Carl Zeiss Jena Tevidon 10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Carl Zeiss Jenna f1.8 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Carl Zeiss Pancolar 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "Carl Zeiss Planar 1.4/50 HFT", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Carl Zeiss Planar 50mm f/1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Carl Zeiss Sonnar T* E 24mm f/1.8 ZA", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Carl Zeiss Sonnar T* E 24mm f1.8 ZA", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Carl Zeiss Vario-Tessar 2,8-5,64,8-144 T", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CARL_ZEISS_JENA_FLEKTOGON35mmF2.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CarlZeiss Master PRIME 24mm T1.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CAYE 10mm F8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CF10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Cheecar35mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CHINON 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CHINON 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CHINON 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CHINON-AUTO f35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Chiopt Xtreme 28-85 t3.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CHIOPT_28-85(28mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CHIOPT_28-85(35mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CHIOPT_28-85(50mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CHIOPT_28-85(85mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Cimko 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Cine 21mm IRIX", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Cinema pro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CinemaLens 14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CMOS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CMOS 1/1.3\"", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CMOS de 1/2.3\"", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CN-E14mm T3.1 L F 14.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CN-E18-80mm T4.4 L IS KAS S 18.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CN-E18-80mm T4.4 L IS KAS S 19.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CN-E18-80mm T4.4 L IS KAS S 23.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CN-E18-80mm T4.4 L IS KAS S 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CN-E18-80mm T4.4 L IS KAS S 25.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CN-E18-80mm T4.4 L IS KAS S 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CN-E20mm T1.5 L F 20.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CN-E24mm T1.5 L F 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CN-E24mm T1.5 L F 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CN-E35mm T1.5 L F 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CN-E50mm T1.3 L F 50.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CN-E85mm T1.3 L F 85.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CNE Prime 50mm 1.3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "cock 50 f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Computar MC TV Lens 1:15", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Comutar TV Zoom Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "conon zoom 55-250", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Contax 25mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "contax 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Contax 50mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Contax 50mm F1.4 x Metabones .64 Cine XL", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Contax Distagon 2,8/28", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Contax Planar 1,4/50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Contax Vario-Sonnar 4/80-200", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Contax Zeiss 15mm f3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Contax Zeiss 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Contax Zeiss 25mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Contax Zeiss 25mm/f2.8 via Metabones Speedbooster", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Contax Zeiss 28mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Contax Zeiss 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Contax Zeiss 35mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Contax Zeiss 35mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Contax Zeiss 35mm Viltrox 0.71x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Contax Zeiss 35mm/f2.8 via Metabones Speedbooster", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Contax Zeiss 50mm 1.7 AEJ", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Contax Zeiss 50mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Contax Zeiss 50mm Viltrox 0.71", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Contax Zeiss 50mm Viltrox 0.71x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Contax Zeiss 50mm/f1.4 via Metabones Speedbooster", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Contax Zeiss 85mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Contax Zeiss Distagon T* 18mm f/4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Cooke 18mm T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Cooke Panchro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Cooke Panchro 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Cooke S4 Mini 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Cooke SP3 100mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Cooke SP3 100mm T2.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Cooke SP3 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Cooke SP3 25mm T2.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Cooke SP3 32mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Cooke SP3 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Cooke SP3 75mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Cosina 20mm f3.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "cp2 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CP3 15mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CP3 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "CP3 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Custom", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "C\u00e2mera principal", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "C\u53e335mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "dd4199c6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Default", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Default lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Dewarp", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Dewarp_OFF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DJI", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DJI 15mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DJI 15mm 1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DJI 15mm f/1.7 MFT ASPH", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DJI 15mm F1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DJI 15mm f1.7 Asph MFT", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DJI 2.1 mm, f/2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DJI camera", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "dji fpv", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DJI Mavic 2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DJI MFT 15mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DJI MFT 15mm F1.7 ASPH 15mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DJI V2 DVR", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DL 35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DL-S 16mm F2.8 ND ASPH", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Dual", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Dulen 31", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DULEN31 6144 2592", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DULEN43 6114x2592 50P", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DULEN43 6114x2592 50PDULEN43 6114x2592 50P", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DULEN43 6114x3240 30P", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DULEN431 6114x3240 30P", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DULEN58 6114x2592 50P", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DULEN58 6114x3240 30P", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Dulens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Dulens 31", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DULENS 31mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Dulens 31mm - EF-L sigma", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DULENS 43mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "dulens 58", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Dulens APO 31mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Dulens APO 58mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DULENS21", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Dulens31", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DULENS31 50P", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DULENS31 6114x3240 30P", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DULENS31 6144X2592", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DULENS31 6144x2592 50P", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "dulens43 4.3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DULENS58", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DULENS58 6144x2592 50P", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DULENS58 6144x3240 30P", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "dulens58+1.5x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DX 12-28 F3.5-5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "DX 16-50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DX 16-50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DX 18-105", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DX 18-105 f3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DX AF-S KIKKOR 18-55mm 1:3.5-5.6G VR SWM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DX12-28 F3.5-5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DX18-55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZ35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZ35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZ50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZ50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO - Pictor 12-25mm Zoom", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO 20-55", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO Film 20-55 T2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO FILM 20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO Film 25mm Vespid Prime", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO GNOSIS 24MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO GNOSIS 65MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO Pictor Zoom 20-55", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO Pictor Zoom 20mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZo Vespid", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO Vespid 125mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO Vespid 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO Vespid 12mm T2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO Vespid 21mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO Vespid 21mm T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO Vespid 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Dzo Vespid 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO Vespid 40mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "dzo vespid 40mm 40mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO Vespid 40mm T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO Vespid 70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO Vespid 75mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO Vespid 75mm T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO Vespid Cyber 21mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO Vespid Cyber 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO VESPID CYBER 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO Vespid Prime 40mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO Vespid Prime 50mm T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO VP40", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO_32mm_MACRO", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZO_90mm_MACRO", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOFILE 21mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOFilm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOFILM 16mm T2.8 VESPID Prime", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOFILM 20-70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOFILM 21mm T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOFILM 21mm T2.1 VESPID Prime", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOFILM 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOFILM 35mm T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOFILM 40mm T2.1 VESPID Prime", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOFILM 75mm T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOFilm Catta Ace 35-80 T2.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOFILM Catta Ace 35mm-80mm T2.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOFilm Catta Zoom 35-80mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Dzofilm Pictor Zoom 14-30 T2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOFILM Retro 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOFILM Retro 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOFILM Retro 75mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "dzofilm vespid 21mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOFILM VESPID 35MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOFILM Vespid Prime 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOFILM Vespid Prime 50mm T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOFILM Vespid Prime 75mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOFILM Vespid Prime FF 125 mm T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOFILM Vespid Prime FF 16 mm T2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOFilm Vespid Prime FF 25mm T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOFILM Vespid Prime FF 35 mm T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOFILM Vespid Prime FF 50 mm T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOFILM Vespid Prime FF 90 mm Macro T2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOfilm-vespid-prime-50mmt2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "DZOLIFM 4K 36mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "E 16-50 f 3.5-5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "E 18-135mm F3.5-5.6 OSS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "E 18-135mm@18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "E 18-135mm@24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "e 18-200 f3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "e 18-70 f2.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "E 24mm F1.8 ZA", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "E 3.5-5.6/PZ 16-50 OSS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "E 3.5-5.6/PZ 16-50 OSS SELP1650", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "E 35/1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "E PZ 16-50 \u043c\u043c F3.5-5.6 OSS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "E PZ 16-50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "E1.4 15mmG", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "E16-50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "e24", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "E3.5-5.6/PZ 16-50 OSS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "E50MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "E50mm1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "e7403f4a", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "eca95ab9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 16 35 f4L @ 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ef 16-35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 16-35mm 2.8 MK2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 16-35mm F2.8 II 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 17-40 4.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 20-35 f.3.6-4.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ef 20-35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ef 24 105", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 24-105", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 24-105 IS USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 24-105mm F4 105mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 24-105mm F4 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 24-70 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 24-70 at 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ef 24-70 f4.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 24-70/2.8L USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 24-70mm 2.8L USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 24-70mm f/2.8 GM II @35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 24-70mm f/2.8 GM II @50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 24-70mm f/2.8 GM II @70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 24-70mm F2.8 GM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 28-60mm F4-5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 28MM 2.8 IS USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 35mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 4-5.6/28-60:35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 40 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 40 f/2.8 metabones 0.71", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 40MM 2.8MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 40mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 50 f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ef 50 mm f/1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 50/1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 50mm 1.8 STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 50mm STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 70-300mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF 85mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ef l 16-35 f4is @ 16.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ef l 16-35f4is @ 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ef l 16-35f4is @35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF Sigma 18-35mm f/1.8 om 20mm F4.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF-16-35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF-E 35MM F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF-L 16-35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF-M 11-22mm f/4-5.6 IS STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF-M 15-45", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF-M 15-45mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF-M 15-45mm IS STM at 15mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF-M 22MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF-M 22mm 2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF-M 22mm f/2 STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ef-s", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF-S 10-18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF-S 135MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF-S 18-135mm f/3.5-5.6 IS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF-S 18-55", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF-S 18-55 Kit Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF-S 18-55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF-S 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ef-s 24mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.6, + "model": "EF-S 24mm 2.8 STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF-S 24mm f2.8 STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF-S10-18mm f/4.5-5.6 IS STM 10.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ef-s15-85", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF-S17-55mm f/2.8 IS USM 11.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF-S17-55mm f/2.8 IS USM 20.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ef-s18-15 f/3.5-5.6 IS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF-S24mm f/2.8 STM 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF100-400mm f/4.5-5.6L IS II USM 70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF11-24mm f/4L USM 11.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF14mm f/2.8L II USM 14.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ef16-35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF16-35 F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ef16-35f2.8III", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF16-35mm f/2.8L II USM 16.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF16-35mm f/2.8L II USM 34.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF16-35mm f/2.8L II USM 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF16-35mm f/2.8L III USM 11.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF16-35mm f/2.8L III USM 16.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF16-35mm f/4L IS USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF16-35mm f/4L IS USM 16.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF17-40", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF17-40mm f/4L USM 19mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF17-40mm f/4L USM 20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF17-40mm f/4L USM 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF17-40mm f/4L USM 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF17-40mm f/4L USM 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF17-40mm f/4L USM 40mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ef24-105", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF24-70 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF24-70 f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF24-70/4L", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ef24-70f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF24-70f2.8 II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF24-70mm f/2.8L II USM -1.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF24-70mm f/2.8L II USM 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF24-70mm f/2.8L II USM 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF24-70mm f/2.8L II USM 28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF24-70mm f/2.8L II USM 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF24-70mm f/2.8L II USM 50.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF24-70mm f/2.8L II USM 70.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF2470", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF24f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF24mm f/1.4L II USM 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF35-135 F4-5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF35mm f/1.4L II USM 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF35mm f/2 IS USM 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF40mm f/2.8 STM 28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF40mm f/2.8 STM with Metabones Speedbooster 0.71x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ef501.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF50mm f/1.2L USM 50.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF50mm f/1.4 50.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ef50mm f/1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF50mm f/1.8 STM 50.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF50MM F1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF70-200mm f/2.8L IS II USM 70.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF70-200mm f/2.8L IS III USM 70.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EF85", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "efl16-35f4is @ 16.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "efl16-35f4is @ 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "efl16-35f4is @ 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "efm 15-45", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EFM 18-55", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EFM22", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EFS 10-18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EFS 10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EFS 17-55 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EFS 17-55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "efs 18 a 55", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EFS 18-135", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "efs 18-135 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EFS 18-135 mm f/3.5-5.56 IS USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EFS 18-135MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "efs 18-55", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EFS 18-55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EFS 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "efs 55-250mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EFS-18-135", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EFS-18-55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EFS18-135mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EFS18-135MMUSM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EFS18-35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ektar2 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EOS M 22mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ePZ19105", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "EYE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "f/1.88, IMX766", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "f/1.89 AF, lente 6P, FOV 79,8\u00b0.", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "F/2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "F/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "F05", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "f1.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "F1.8F2.66", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "F2.5, f2.68 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "f2.8 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "f2.8-170\u00b0\u5e7f\u89d2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "f4c0498c", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "F5-7.1 55-210", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Factory", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Factory Default", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FD50mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 1.2/50 GM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 1.4/35 GM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "fe 1.8/20 G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 1.8/35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 1.8/50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 12-24mm F4 G @14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 12-24mm F4 G @16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 12-24mm F4 G @18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 12-24mm F4 G @21mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 16-35mm F4 ZA OSS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 2.8/16-35 GM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 2.8/24-7 GM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 2.8/24-70 GM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 20-70g f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 20-70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 20-70mm F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 24-105 mm F4 G OSS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 24-105G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 24-240mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 24-70mm f2.8 GM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 24-70mm F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 28-60 @28", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 28-70 F3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 28-70mm F3.5 - 5.6 OSS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "fe 3.5 -5.6 28-70MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 3.5 28-70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 3.5-5.6 28-70 OSS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 35mm F1.4 GM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 4 / 24-105 G OSS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 4-5.6/28-60", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 4/ 25-105 G OOS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 4/12-24 G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 4/20-70 G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 4/24-105 G 0SS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 4/24-105 G OSS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 50mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 50mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE 85mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE PZ 16-35mm F4 G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE Sony 4/ 24-105 G OSS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE1.8/20G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE16-35F4za", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE2.8/24-70GM2 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "fe20-70f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE20-70F4G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE24-105 G OSS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE24-70F4za", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE2470F4za", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE4 /24-105 G OSS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE4/24-105MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE4_12_24G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE4\u300124-70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE55/1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FE85/F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FHD", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.6, + "model": "Fijinon 15-55mm f3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Film It", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Filmic pro Main", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Fish-eye-Takumar 17mm f1/4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "fisheye", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "fisheye 15mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Fisheye 8mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Fix", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Fixed Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Flektogon 35mm/f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Flywoo O4 Wide lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FOV (1/1.8\") D135 / H110 / V57 lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "fov 145 f/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FOV 155 f/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FOV 94 degree 20 mm f.2.8 focus infinity", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FOV83", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FOV: 145\u00b0 f/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FOV: 83\u00b0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Foxeer 1.7mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Foxeer 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Foxeer 2.5mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Foxeer CL1213 8MP 1.7mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Foxeer M12 1.7mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Freewell Anamorphic", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Freewell Sherpa Anamorphic 1.33x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Front", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Front facing", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Fuji", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "fuji 55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Fuji XC 16-50mm OIS II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Fujian 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Fujian 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Fujifilm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Fujifilm 16mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.6, + "model": "Fujifilm XC 15-45mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FUJIFILM XF 16-55mm f/2.8 R LM WR", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FujiFilm XF 16-80F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "fujifilm xf 18-55mm f/2.8-4.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Fujifilm\u9f9916mmf1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Fujinon", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FUJINON 10-24", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "fujinon 14mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Fujinon 16-55mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Fujinon 16-80", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FUJINON 18-120", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Fujinon 18-55", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FUJINON 18-55 F/2.8-4 R LM OIS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FUJINON 23 F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Fujinon 23mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Fujinon 27mm 2,8 WR", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Fujinon MK 18-55 T2.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FUJINON XC15-45mmF3.5-5.6 OIS PZFUJINON XC15-45mmF3.5-5.6 OIS PZ", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Fujinon XF 14mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Fujinon XF 16-55mm F2.8 R LM WR @ 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Fujinon XF16-80mmF4 R OIS WR", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.77, + "model": "FujiX 18-55", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "funinon 18-55", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FX 16-55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "fx 18-55 f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "FZOLIMF 75mm T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "G 12-32 f3.5-5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "G vario 12-32 f3.5-5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "g-master", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "G-Master 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "G15mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "G41", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "G7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "G9X M2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ganguang80mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Gelios 44M4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "GF45mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "GF63mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "GK319", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "GK554", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "GK766", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "GK811", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "glass 3rd party", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "GM 16-35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "GM 16-35mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "GM 24-70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "GMaster FE 2.8/24-70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "gmii-16-35-16.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "GoPro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "GoProHero4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Goveisee 2.1mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "GRAN ANGULAR", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "grand angle", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "Great Joy 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Great Joy 35mm x1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Great Joy 85mm 1.8x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Great Joy 85mm 1.8X Anamorphic", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "gw1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "GyroCam", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "H-F007014 7-14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "H-FS12032", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "H-FS12060", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "H-FS4140", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "H-H025K", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 2.0, + "model": "H-NS043", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "H-PS14042", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "H-X015", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "H-X09", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "HASSELBLAD28MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Hassleblad", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Hawkeye/HawkeyeNaked1080P_16_9_50fps.json", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Hawkeye/HawkeyeNaked2K5_16_9_50fps.json", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Hawkeye/HawkeyeNaked2K5_4_3_50fps.json", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Hawkeye/HawkeyeNaked4K_16_9_30fps.json", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Hawkeye/Thumb1080P_16_9_50fps.json", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Hawkeye/Thumb2K5_16_9_50fps.json", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Hawkeye/Thumb2K5_4_3_30fps.json", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Hawkeye/Thumb2K5_4_3_50fps.json", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Hawkeye/Thumb4K_16_9_30fps.json", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Hawkeye_Thumb2.json", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "HawkeyeTh1080P_16_9_30fpsN.json", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "HD12-35 @ 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "HDR", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Helios", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Helios - 44 - 2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Helios 28mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Helios 44 KMZ Silver", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Helios 44 M 58mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "helios 44-2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "HELIOS 44-2 58MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Helios 44-2 58mm f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Helios 44-2 58MM T2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Helios 44-2 58mm,f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "helios 44-2 aivascope", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Helios 44-2 Focal Reducer", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Helios 44-2 w/focal reducer", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Helios 44-2, Canon Speedbooster", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Helios 44-3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Helios 44-4 68mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Helios 44-6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Helios 44M", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Helios 44M (KMZ)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Helios 44M 2/58", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "HELIOS 44M 58MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Helios 44M-4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Helios 44M-4 58mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Helios 44M-6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Helios 58mm F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Helios-33", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Helios-44 2M", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Helios-44-2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Helios-44\u043c-4 2/58mm h113-a", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Helios44-2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "HH014 14 mm F2.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "HIKVISION 16mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Hoya_@_35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Hyperview", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "IAOWA 7.5mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "idk", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "IMX 368", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "IMX 386", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "IMX577(12MP)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "IMX582", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "IMX686", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "IMX708", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "IMX766", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "IMX776", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "imx989", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Inbuilt", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ind", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Industar 61", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "int", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "IOS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "iowa 10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "iPhone", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Iphone 13 pro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "iphone Xr", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Irex 15mm with.64x Speedbooster", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Irix 11mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "irix 15mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Irix 15mm EF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Irix 15mm f2.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Irix 15mm Firefly", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Irix 15mm T2.6 Cine", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Irix 21mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "IRIX 30mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Irix 30mm FF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "IRIX 30T", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Irix 45mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "irix 45mm cine", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Irix 45mm FF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "IRIX 45MMT1.5 CINEMA CANON-EF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Irix Cine 11mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "IRIX Cine 30mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "Irix cine 45mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "IRIX CINE T2.6 15MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "JK05", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "JK88", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Jupiter 8 f2 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Jupiter-8 50mm f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Kamlan 28mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Kamlan 50mm f1.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Kase 1.33x Anamorphic Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Kinoptik Tegea 9.8mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "kipon 75mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "KIT 15-45", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Kit 15-45mm IS STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "kit 16-50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Kit 18-55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "kit 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "kit 28-70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Kit 28-70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "kit 3.5-5.6 28-70 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "kit 3.5-5.6/28-70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "kit 3.5-5.6/28-70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "kit FE 3.5-5.6 28-70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "kit fe 3.5-5.6-28-70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "kit FE 3.5/5.6 28-70 55", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "kit lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "kit15-45", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "kit55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "kodak", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Kodak 30mm f10", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Kodak 30mm F10 Disposal Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Konica Hexanon 28mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "L2D-20c 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "la mini", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laica", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA 10 MM COOKIE DC", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA 10 mm f/4 Cookie", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 10 mm f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 10 mm f4 cookie", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 10.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA 10.00mm FF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "laowa 100mm F2.8 macro FE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA 100\u339c F2.8 CA-Dreamer Macro 2X", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 10mm apc-s", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 10mm Cookie", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 10mm Cookie Sony E Mount", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 10mm f/2 Zero-D MFT", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 10mm f/4 Cookie", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 10mm f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 10mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 10mm f4 Cookie", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 10mm f8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 10mm FF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 10mm MFT", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 10mm MFT T2.1 Cine", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 10mm Zero D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 10mm Zero-D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 11", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "laowa 11,,", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 11/4.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 11mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 11mm 4.5 FF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 11mm F3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA 11MM F4.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.24, + "model": "LAOWA 11mm F4.5 C-Dreamer", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 11mm FF 4.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 11mm RF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 11mm_4.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 12 MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 12-24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 12mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 12mm Cine T2.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA 12mm Cine Zero D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 12mm EF f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 12mm f/2.8 Zero-D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 12mm F2.8 Zero D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 12mm f2.8 Zero-D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA 12MM S35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 12mm SB0.64", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 12mm Zero D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 12mm Zero-D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 12mm Zero-D f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 12mm Zero-D T2.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA 14 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 14 mm F/4 FF RL Zero-D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 14MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 14mm EF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 14mm f/4 Zero-D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 14mm f/4 Zero-D DSLR", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 14mm F2,0 Zero-D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "laowa 14mm f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 14mm F4 Dreamer", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 14mm f4 FF RL", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 14mm f4 FF RL Zero-D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA 14MM F4 FF RL ZERO-DaAS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 14MM F4 FFii RF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 14mm F4 zero-d", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 14mm F4.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 14mm f4.0 c and d dreamer", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Laowa 14mm FF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 14mm RF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 14mm RL Zero-D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 14mm Zero-D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "laowa 14mmf4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA 15", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 15mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA 15mm F.4 MACRO", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 15mm f/2 Zero-D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA 15mm f/4 MAcro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "laowa 15mm f/4.5 zero-d shift", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "laowa 15mm F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 15mm f2 Zero-D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 15mm F2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 15mm F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 15mm F4 MACRO", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 15mm non cine", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 15mm T2.0 D-Dreamer", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 15mm T2.1 Cine", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA 15mm T2.1 CINE RF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 15mm Zero-D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 17mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 17mm 1.8 MFT", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 17mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 17mm T1.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 1mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "laowa 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 24mm T8 35*", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 25mm T2.0 D-Dreamer Kristian FPV", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA 25mmF0.95", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 27mm Anamorphic", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 27mm NANOMORPH", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "laowa 33 0.95", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 33mm f/0.95", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "laowa 35 0.95", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 35mm 0.95", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 35mm f/0.95 FF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 35mm F0.95", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 35mm Nanomorph", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 45 proteus 2x anamorphic", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 45mm anamorphi", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 45mm F0.95", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 6 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 6.0 T2.1 CINE LENS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA 6mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 6mm 2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 6mm 2.1T", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA 6mm cine", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 6mm f/2 Zero-D MFT Lens for MFT", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 6mm f/2.0 ZeroD MFT", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "laowa 6mm t2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 6mm T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7,5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "laowa 7.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA 7.5 C-Dreamer", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5 F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5 F2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5 F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5 M43", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5 MFT F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA 7.5 mm C-DREAMER", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5 mm f2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5mm - F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA 7.5mm 2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5mm Cine Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5mm f/2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA 7.5mm f/2 MFT", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5mm f/2.1T", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5mm F/2.9 CINE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5mm F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5mm F2 Blue Ring", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5mm f2 mtf", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "laowa 7.5mm F2,0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5mm F2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5mm f2.0 MFT", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5mm F2.0 MFT UL", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5mm F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5mm MFT", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5mm MFT F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5mm RF Super 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5mm T 2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5mm T/2.9 Cine Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5mm T2 M43", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5mm T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7.5mm T2.1 Cine", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 7mm 2.1T", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA 9 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA 9 mm ZeroD", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 9 mm, F2,8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Laowa 9mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 9mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 9mm 2.8 Zero-D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 9mm 2.9T cine", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "laowa 9mm aps-c", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 9mm CINE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA 9mm CINE RF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 9mm E Mount", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 9mm f 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 9mm f/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 9mm f/2.8 Zero-D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 9mm f/2.8 Zero-D Sony E", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 9mm f/5.6 FF RL", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 9mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 9mm F2.8 Zero-D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 9mm f2.8 Zero-D MFT", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 9mm f4.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 9mm f5,6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "laowa 9mm F5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 9MM F5.6 FF RL", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 9mm FF RL", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 9mm MFT", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA 9mm MFT on E", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 9mm RF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 9mm T2.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA 9MM T2.9 CINE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA 9mm T2.9 RF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA 9mm T2.9 Zero-D Cine", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 9mm Zero D E Mount", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 9mm Zero-D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 9mm Zero-D Cine", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 9mm ZeroD", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa 9mm zeroD cine", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA ARGUS 18mm T1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "Laowa Argus 33mm F0.95", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA C&D-Dreamer MFT 10mm F2.0 10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA C&D-Dreamer MFT6.0mm F2.0 6mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa C-Dreamer 9mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA CF 9mm F2.8 Zero-D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA CF10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa Cine 7.5mm F/2.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa Cine 7.5mm T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA Cookie 10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa f4.0 10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa FE 12mm F/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa FF 11mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa FF 11mm F4.5 C-Dreamer", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa FF 14mm f4.0 C&D Dreamer", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA FF 14mm F4.0 C&D-Dreamer 14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa FF 14mm f4.0 Dreamer", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa FF14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa FF14mm F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa FFII 11mm F4.5 C-Dreamer", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa FFii 14mm F4.0 C&D-Dreamer", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa MFT 7.5mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa MFT 7.5mm F2.0 7mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa Nanomorph", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA NANOMORPH 1.5X ANAMORPHIC 27MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa Nanomorph 20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa Nanomorph 27 f2.8 (1.5x Anamorphic)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa Nanomorph 27 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa Nanomorph 27mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa Nanomorph 27mm T2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa Nanomorph 27mm T2.8 1.5x S35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa Nanomorph 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa Nanomorph 35mm 2,4T Sony E", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa Nanomorph 35mm T2.4 1.5x 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa nanomorph 50 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa Nanomorph 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa Nanomorph 6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa Nanomorphic 27mm T2.8 1.5x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa periprobe 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA PHOTO 9mmF2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa Pro2be 24mm T8 Straight", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa Probe 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa Ranger - 28/75 - 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa Ranger - 28/75 - 75mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa Ranger Lite - 28/75 - 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa Ranger Lite - 28/75 - 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa S35 7.5mm T2.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa T2.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa Zero-D 9mm T2.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa Zero-D Cine 6mm T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa-7.5mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA10.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA10MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa10mmF4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "laowa11 f4.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "laowa11mm F4.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "laowa12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA14MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAOWA14MM F4.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "laowa6mmt2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "laowa7.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa7.5mm f2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "laowa9mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa_10MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa_11_4.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa_11_no_Crop", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laowa_9mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Laows 9mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LAWOA 15mm 22.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LDC Wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica 1\" Ultrawide 80", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica 10-25mm F1.7 @10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica 12 - 60", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica 12-60", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica 12-60mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 2.0, + "model": "Leica 15mm DG SUMMILUX", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "leica 1:2.8/4.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica 1inch", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica 28mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "leica 35 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica 35mm f/1.4 0.8 M", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "leica 50/1.4+1.5x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica 8-18", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica 90 anamorphic 2x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica 90mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica 9mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica DG 10-25f1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica DG 12-60", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LEICA DG 12-60/F2.8-4.0 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LEICA DG SUMMILUX 15/F1.7 15mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LEICA DG SUMMILUX 9/F1.7 9mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica DG Summilux 9mm F1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica DG Vario 12-60", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica Dicomar", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica Elmar M 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica Elmarit R 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica Elmarit- R 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica Elmarit-R 19mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica Elmarit-R 24mm f/2.8 v2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica Elmarit-r 35 z 35-70 f3.5 + speedbooster", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica Elmarit-R 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica Elmarit-R 60mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica Elmarit-R f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LEICA F2.8-4.5 24-480mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica F3.2 14.4mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica Lumix 12-16", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica M 24mm f/1.4 ASPH Summilux-M", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica M0.8 21mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica M0.8 21mm F1.4 Summilux", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica M0.8 24mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica M0.8 24mm F1.4 Summilux", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica M0.8 28mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica M0.8 35mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica M0.8 35mm F1.4 Summilux", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica M0.8 50mm F1.4 Summilux", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica M0.8 Summilux 21mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica M0.8 Summilux 24mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica M0.8 Summilux 35mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica M0.8 Summilux 50mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "leica m50+1.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica R 135mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica R 15mm f/3.5 Super-Elmar-R", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica R 19", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica R 19mm f/2.8 Elmarit-R II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LEICA R 19mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica R 19mm f2.8 v2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica R 21mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica R 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica R 24mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica R 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica R 28mm f/2.8 Elmarit-R II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "leica R 35 f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica R 35-70mm F2.8 3 ogniskowe", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica R 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica R 35mm f/2 Summicron-R II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica R 35mm f2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica R 50 z 35-70mm F3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica R 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica R 50mm f/1.4 Summilux-R II e60", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica R 50mm f2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica R 60mm f/2.8 Macro-Elmarit-R", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica R 70 z 35-70mm F3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica R 80mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica R 90 with FF Adapter", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica R 90mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica R 90mm F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica R Vario-Elmar 35-70mm F4 ~ 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica R_24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica R_35MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LEICA SUMMICRON 25", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica Summicron 35mm ASPH ii", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "Leica Summicron-R 50mm f/2 v2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica Summicron-R 90mm f/2 v2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica Summilux-R 35-70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Leica Vario 12-60 f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "leicaR 50 F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lens B", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "lens imu", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lens kit 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lens Kit 18-55MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lente de Zoom de 16-50 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "lente principal", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LH0811-12MP", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "liguan 50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Linear", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Linear + anamorph", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Linear 58", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Linear 64", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Linear 66", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Linear 88", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Linear 94", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LinearHorizon 75", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "linix 2060", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LOAWA 10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Loawa 7.5mm f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Loawa 9mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lomo Square Front 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lowa 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "lowa 7.5mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lowa 9mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lowa 9mm T2.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LOWO 7.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 12-25", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 12-32mm G Vario", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 12-35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 12-35 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 12-35 f2.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 12-35 f2.8 DG", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 12-35@12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 12-35MM 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 12-35mm f2.8 I (H-HS12035)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 12-60", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 12-60 1/3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX 14-42", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX 14-45mm @ 14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 14m", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 14mm f2.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 15mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 15mm f1,7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 15mm f1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 20-60", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 20-60mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 2060-20", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 20mm 1.33 Anamorphic", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 20mm F1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 24-105 F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 24mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 35-100 f2.8 G II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 35mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 35mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "lumix 50 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX 50mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 8mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix 9MM/1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "lumix dc vario", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX G 14-42", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX G 14/F2.5 14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.9, + "model": "LUMIX G 20/F1.7 20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "LUMIX G 20/F1.7 II 19mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX G 25/F1.7 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX G 25/F1.7 26mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix G 25mm F/1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix G 25mm f/1.7 ASPH", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX G 42.5/F1.7 44mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX G VARIO 12-35 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX G VARIO 12-35/F2.8 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX G VARIO 12-35/F2.8 19mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX G VARIO 12-35/F2.8 26mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX G VARIO 12-35/F2.8 34mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX G VARIO 12-35/F2.8II 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX G VARIO 12-35/F2.8II 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX G VARIO 12-35/F2.8II 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX G VARIO 12-35/F2.8II 34mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX G VARIO 12-60/F3.5-5.6 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX G VARIO 12-60/F3.5-5.6 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX G VARIO 14-140/F3.5-5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX G VARIO 14-140/F3.5-5.6 14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX G VARIO 14-140/F3.5-5.6 15mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX G VARIO 14-140F3.5-5.6 14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix G Vario 14-42/F3.5-5.6 II ASPH", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX G VARIO 14-45/F3.5-5.6 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX G VARIO 45-150/F4.0-5.6 45mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix G X Vario 12-35/2,8 II ASPH", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX G X VARIO 12-35mm / F2.8 II ASPH. / POWER O.I.S.", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX HD 14-42", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX LEICA 9mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX Leica DG Vario 12-60", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX S 18/F1.8 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LUMIX S 18mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix s 20-60", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Lumix S 50mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lumix S 50mm f/1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Lumix S50 1:1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "lumix20-60f3.5-5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "lumix7-14", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Lunix20-60", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LW10", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "LW9 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "M.ZUIKO 14-42", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "M.ZUIKO 14-42 IIR", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "m10", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "M12 7G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "M12 G7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "M43-17mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "m50+1.5x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Main", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Main 23mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Main 23mm f/1.88", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 3.0, + "model": "Main 24 mm (35 mm full frame equivalent)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Main 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Main 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Main 26mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Main 26mm f1.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Main 27mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Main 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Main 31mm f1.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Main 50 MP, f/2.0, 24mm (wide)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Main Cam", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Main Cam 26mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Main Camera", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Main camera f1.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Main f/1.79 4.71mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Main Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Main Lens 1x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Main Rear Camera", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Main rear lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Main sensor", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Main sensor f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Main Wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Main wide camera 28mm \u0192/ 1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "main_camera", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "MainCam 25mm F1.85", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Mamiya 80mm 1.9 sekor c", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Mavic mini 2 se", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Max", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Max Lens 2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Max Lens Wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Max Wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "MaxLensMOD2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "MaxLensMOD2.0Wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "MaxPro_LDC_1440P60", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "MaxPro_NO-LDC_2.7k30", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "MB0.71x+DZO35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "med lensHD 1080", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Medium", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "MEIKE 10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike 12 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike 12mm T2.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike 16mm M43 Cine", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike 24mm T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike 25mm f2.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike 25mm T2.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike 25mm t2.2 s35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "meike 3,5mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "MEIKE 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Meike 35mm 1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike 35mm f/1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike 35mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike 35mm F1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike 50mm FF Cine, Canon Speedbooster", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike 50mm FF Cine, Canon Speedbooster, 50fps, 2,4:1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike 6.5mm f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "MEIKE 7.5mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "MEIKE 7.5mm FishEye F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "MEIKE 85 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike 8mm T2.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike Cinema Lens 12mm T2.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike Cinema lens 16mm T2.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike Cinema Lens 35mm T2.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "MEIKE F1.8 25MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike FF 50mm Cine, Canon Speedbooster, 40FPSi", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike FF Cine 135mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike FF Cine 50mm, Canon RF Speedbooster", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike FF Cine 50mm, Canon RF Speedbooster,", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "MEIKE MICRO CINE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike Mini 10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike Mini 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike Mini 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike Mini 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike Mini 65mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike Optics MK 8mm f3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "meike S35 12mm T2.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike S35 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike S35 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike S35 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike s35 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meike T2.2/10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meke 16mm T2.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meke f1.4 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Metabones Speedbooster 0,71x + DZO Film Vespid Prime 50mm T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Metabones Speedbooster 0.71x + DZO Film Vespid Prime 16mm T2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Metabones Speedbooster 0.71x + DZO Film Vespid Prime 25mm T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Metabones Speedbooster 0.71x + DZO Film Vespid Prime 35mm T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Metabones Speedbooster 0.71x Ultra RF to PL + DZO Film Vespid Prime 16mm T2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meyer-Optik Gorlitz Biotar 58mm f/1.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Meyer-Optik Gorlitz f2.8 135mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "MFT Laowa 10mm F2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "MFT Laowa 7.5mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "MFT7.5mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "miancamer", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Micro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Micro-Nikkor 55mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Micro2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Middle", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Mike 12mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Milnolta 200mm 2.8 2X Tele", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Mini-Nikkor 55mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Mini2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Minolta 50mm f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Minolta 58F1.2withNero1.5x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Minolta AF 50 (85 crop) 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Minolta AF 50mm (75mm crop) f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Minolta AF 50mm f1.4 (crop)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Minolta MC Rokkor 28mm f2.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "minolta MC Rokkor 28mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Minolta Rokkor 58mm f/1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Minolta Rokkor MD 24mm f/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "MINolta55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Minolta_35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.33, + "model": "Mir 20m 20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "mir-1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "MIR-1B 37MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "MIR-24M", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "MIR-24M f/2 ANAMORPHIC MOD", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Mitakon 17mm f0.95", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Mitakon Speedmaster 35mm f0.95", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "mitakon speedmaster 35mm t1 with sirui 1.25 anamorphic adapter", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Mitakon Speedmaster Cine 35mm T1.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Mitakon Speedmaster Cinema Lens 17mm T1.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Mitakon Speedmaster Cinema Lens 35mm T1.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Mitakon T1 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "MJ", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Mobile/wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Moondog Anamorpgic 1.33x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Moondog Labs Anamorphic 1.33", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Moonlight", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Moonlight kit", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "moren", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Motion Cam", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "MotionCam", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "MotionCam Primary 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "MotionCam Pro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "MotionCamPro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "MZUIKO 9-18", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "N", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "N/A (Built in)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NA", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nano", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nano 4K", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "nano hd", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Narrow", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Navitar 6mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "nebula pro nano", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nero1.5xKonica57f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nightwalker 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nightwalker 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nightwalker 55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkonor AF 85mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "nikkor 14-30", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NIKKOR 16-50 f/3.5-6.3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor 18-55 AFP", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor 18-55mm 1:3.5-5.6G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NIKKOR 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NIKKOR 18mm f3.5 AiS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NIKKOR 18MM VINTAGE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor 1:4-5.6G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NIKKOR 20mm/2.8D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor 24-120", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor 24-120mm f4 S @ 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NIKKOR 24-70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor 24-70 f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor 28mm 2,8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NIKKOR 28mm f2.8 AiS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor 28mm/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Nikkor 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor 35mm 1.8g DX", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.6, + "model": "Nikkor 35mm DX f/1.8G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor 35mm F/1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor 35mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "nikkor 50 f1.4 ais", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NIKKOR 50MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor 50mm 1.4 G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor 50mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor 50mm 1:1.8 G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor 50mm f1.4 G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor 55 - 200mm 1:4-5.6 GED VR", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NIKKOR 85mm f2.0 Ai 2X Anamorphic", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor AF 50 mm 1:18 D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor AF-S 35mm 1:1 8G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NIKKOR AI 28mm f/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor Ai 50mm 1:1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NIKKOR AI 85mm f/2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NIKKOR AIS 20mm f/3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NIKKOR AIS 35mm f/2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NIKKOR AIS 50mm f/1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor DX 16-50 3.5-6.3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NIKKOR NIKON 24mm F2.0 AIS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor S 20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor S 20mm f1.8 S", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor S 24 - 70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor SC 55mm f/1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NIKKOR Z 14-24mm f/2.8 S", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NIKKOR Z 14-30mm f/4 S Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor Z 24-70 F/4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor Z 24-70 f2.8 @ 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor Z 24-70 f2.8 @24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor Z 24-70 f2.8 @35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor Z 24-70 f4 S @ 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor Z 24-70/4@24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor Z 24-70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor Z 24-70mm@70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor Z 35 mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NIKKOR Z DX 16-50mm f/3.5-6.3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "nikkor Z DX 16-50mm f/3.5-6.3 VR", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NIKKOR Z24-70 F2.8 S", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NIKKOR z24-70 F2.8s", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor z27-70 F2.8s", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor Z35s 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikkor40mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon 14-24", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon 14-30/4 S", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "nikon 16-80", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "nikon 24 mm 2.8D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon 24-120 F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon 35 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon 35mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "nikon 50 1.8d", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon 50mm 1.4D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NIkon 60mm macro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon AF Nikkor 20mm f2.8 DAF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon AF-S DX NIKKOR 18-55mm 1:3.5-5.6G VR", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon AF-S Nikkor 14-24mm f/2.8G ED 14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon AF-S Nikkor 14-24mm f/2.8G ED 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon AF-S Nikkor 50mm f/1.8G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NIKON AFS 24-70mm @ 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon AI 28mm f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon AI-S 18mm f3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon AIS 20mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon AIS 35mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon AIS 50mm 1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon AIS 85mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NIKON DX 18-55", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon F1.4 85mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon Nikkor 50mm AIS F/1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon Nikkor 50mm F/1.2 w/ Metabones .71x Speed Booster", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon Nikkor AF 20mm 2.8 D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon Nikkor AIS 85mm F/1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NIKON NIKKOR AIS 85MM F1.4 W/ METABONES SPEED BOOSTER 0.71X", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon Serie E 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NIKON Z 24-70 F4S", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon Z6 14-30mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "nikon18105-105mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "nikon50-250", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon_Nikkor_16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon_Nikkor_20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon_Nikkor_24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon_Nikkor_28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon_Nikkor_35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon_Nikkor_45mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nikon_Nikkor_55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NikonAF-24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nisi", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NiSi 14mm ATHENA PRIME", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nisi 15mm f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.41, + "model": "Nisi 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NiSi 25mm ATHENA PRIME", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NiSi 35mm ATHENA PRIME", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "nisi 35mm T1.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NISI 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NiSi 50mm ATHENA PRIME", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nisi 50mm T1.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NiSi 85mm ATHENA PRIME", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nisi Athena", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NISI Athena 14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nisi Athena 18mm PL", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nisi Athena 25", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NISI Athena 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NISI Athena 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NISI Athena 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NISI Athena 85mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nisi Athena Prime 14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NO", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NO-LDC", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NO-LDC Wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nokton 10.5 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Nokton 40mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "none", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Normal", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NOSE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "nour triplet 64mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "NX 20-50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "O3 air Unit", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Octa-PD", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "OEM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ojo de pez f/2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olimpus", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "olympus", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 12-100", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 12-200", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 12-40", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 12-40 f2,8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 12-40 f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 12-40 f2.8 at 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 12-40 mm f/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "olympus 12-40 pro 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 12-40mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 12-40mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 12-40mm f2.8 Pro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "OLYMPUS 12-50mm3.5-6.3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "olympus 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 12mm 12-40 Pro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 12mm 12-40Pro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 12mm 2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 12mm 84\u00ba", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 12mm F2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 14-42mm 1:3.5-5.6 EZ", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 16mm_M.ZUIKO DIGITAL_ED 8mm f1.8_Fisheye PRO", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 17mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 17mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 17mm Pro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 24mm f2.8 OM H.Zuiko Auto-W", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "olympus 25 f1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 45 f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 45mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 45mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 45mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "olympus 50mm 1.8 + pixco", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 8-18@14", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 9-18", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 9-18 @9mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 9-18@14", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 9-18mm @ 9mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 9mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus 9mm f8 Fisheye Body Cap", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus Digital", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus Digital 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus Fisheye Body Cap Lens 9-9mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus M. Zuiko Digital ED 12-40mm f/2.8 PRO", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "OLYMPUS M.12-40mm F2.8 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 2.02, + "model": "OLYMPUS M.12-40mm F2.8 40mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "OLYMPUS M.12-50mm F3.5-6.3 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "OLYMPUS M.12-50mm F3.5-6.3 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "OLYMPUS M.12mm F2.0 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "OLYMPUS M.14-42mm F3.5-5.6 EZ 14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "OLYMPUS M.17mm F1.8 17mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "OLYMPUS M.45mm F1.8 45mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus M.Zuiko", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus M.Zuiko - 15 mm - f/8.0 Body Cap", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus M.ZUIKO 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus M.Zuiko 12mm f2.0 MFT", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus M.ZUIKO 9mm F8,0 Body Cap Fisheye", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus M.Zuiko Digital 17 mm f/1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital ED 40-150mm f/4-5.6 R @ 40mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus OM 50mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus Zuiko 12-40mm f2.8 PRO", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Olympus Zuiko 50mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "OM System 12 - 40mm 1:2.8 II Pro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "omnivision", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "one", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Oneplus Open", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "OnePlusOpen", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Open Camera", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Open Camera, no zoom, 4K", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "OpenCamera Sensors", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Oppo", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Orca 4k", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "org", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Orginal", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Original", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "OSS 3.5-5.6/16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "OSS 3.5-5.6/50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "OSS 4.5-6.3/210mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Otus 28 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ov16a1q_i_aac", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "OV64B", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "padr\u00e3o", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Pananonic 25mm (x2 crop factor)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Panasonic", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Panasonic 12-25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 2.0, + "model": "Panasonic 12-35 II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Panasonic 12-60", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Panasonic 14-42", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Panasonic 15mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Panasonic 25mm f/1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Panasonic 25mm f1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Panasonic 7/14mm f4 set on 9mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Panasonic H-ES12060E 12-60mm/F2.8-4.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Panasonic H-X015", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Panasonic Leica 10-25", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Panasonic Leica 15mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Panasonic Leica DG Summilux 9mm 1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Panasonic Leica DG Vario-Elmarit 8-18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Panasonic LUMIX 14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Panasonic LUMIX 14mm F2.5 Pancake", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "PANASONIC LUMIX 25MM F1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Panasonic Lumix 7-14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Panasonic Lumix G 25mm f/1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Panasonic Lumix G X 12-35 f2.8 @12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Panasonic Lumix G X Vario PZ 14-42mm f/3.5-5.6 ASPH. POWER O.I.S.", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Panasonic Lumix H-H025", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Panasonic Lumix S 20-60mm f/3.5-5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Panasonic Lumix Vario G X III 12-35mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "PANCAKE 22MM F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Pannasonic 35 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "PDAF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Pentax 15mm f3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Pentax 16-85", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Pentax 28mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Pentax 31mm limited", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Pentax 40mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "PENTAX 50mm + speedbooster", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Pentax 50mm f1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Pentax 55mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Pentax 8.5mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "pentax SMC A 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Pentax Super Takumar 50mm 59 fps", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Pentax Super-Multi-Coated Takumar 24mm F3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Pentax Super-Takumar 55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Pentax Takumar 20mm F4.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "PENTAX TAKUMAR SMC 55MM F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Pentax-A 645 45mm 2.8 + Kipon P645-L 0.7x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Pergear 10mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Pergear 10mm f5.6 fisheye", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "pixel 25 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "PLANAR 50MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Porst 35mm f/1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Pov", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Pov 111", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Pov 113", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "PR", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Primary", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Primary camera Wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Prime 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "prinzflex 28mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "pro max", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "PureView", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "PureView 41MPix", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "PZ 16-35 G FE4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "PZ 16-50 f3,5-5,6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "pz10-20", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "pz1635f4-16.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "PZ1635G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ratel 1 1.66mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ratel red lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RC18G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RC19", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "rc19g", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RC25G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Real Me 8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Realme", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Realme8pro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rear", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rear Wide Camera", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RearCamera", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Red Pro Prime", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "redmi 10 s", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 100-400 F5.6-8 @ 100mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 100-400 F5.6-8 @ 135mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 100-400 F5.6-8 @ 200mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 100-400 F5.6-8 @ 300mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 100-400 F5.6-8 @ 400mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 14-35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 15-35 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 16mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 16mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 24 105 f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 24-105", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 24-105 F/4-7.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rf 24-105 F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 24-105 F4-7.1 @ 105mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 24-105 F4-7.1 @ 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 24-105 F4-7.1 @ 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 24-105 F4-7.1 @ 70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 24-105 F4-7.1 @ 85mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 24-105 f4-7.1 @f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 24-105mm F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 24-105mm F4 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 24-105mm F4 L IS USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 24-105MM F4-7.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 24-105mm F4L IS USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 24-105mmF4 IS USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 24-105mmF4L IS USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 24-50 f4.5-6.3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 24-70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 24-70 f/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 24-70 f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "rf 24-70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 24-70mm f/2.8L IS USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 24-70mm f2.8 L IS USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 24mmF/1.8 IS STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 24mmF1.8 IS STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 35mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rf 35mm F1.8 Macro IS STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 50 mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 50mm f.1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 50mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 50MM F1.8 STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 55-210mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF 85mm f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF-EF0.71+24-70F4-16MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF-S 18-150mm F3.5-6.3 IS STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF-S 18-45mm F4.5-6.3 is STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF100mm F2.8 L MACRO IS USM 100.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF14-35mm F4 L IS USM @ 14.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF14-35mm F4 L IS USM @ 18.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF14-35mm F4 L IS USM @ 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF15-30mm f4.5-6.3 IS STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF15-35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF15-35mm F2.8 L IS USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "RF15-35mm F2.8 L IS USM 15.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF15-35mm F2.8 L IS USM 19.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF15-35mm F2.8 L IS USM 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF16 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF16mm F2.8 STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF16mm F2.8 STM 16.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF24 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF24 105 f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "rf24 105F4L", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF24 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF24-105", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "rf24-105 f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF24-105 F4 L", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF24-105mm F4 L IS USM 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF24-105mm F4 L IS USM @ 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF24-105mm F4 L IS USM @ 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF24-105mm F4 L IS USM @ 50.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF24-105mm F4 L IS USM @ 70.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF24-105mm F4-7.1 IS STM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF24-240mm F4-6.3 IS USM 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rf24-70F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rf24-70F2.8l", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "rf24-70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF24-70mm F2.8 L IS USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF24-70mm F2.8 L IS USM 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF24-70mm F2.8 L IS USM 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF24-70mm F2.8 L IS USM 70.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF24-70mmF2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF24105F4L@24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF24mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF24mm F1.8 MACRO IS STM 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF24mm1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "rf28", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF28-70mm F2 L USM 28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "rf28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF28mm F2.8 STM 28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF35-1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "rf35f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF35mm F1.4 L VCM 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF35MM F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF35mm F1.8 MACRO IS STM 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF50mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF50mm F1.8 STM 50.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "rf50mm1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF70-200mm F2.8 L IS USM 70.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF70-200mm F4 L IS USM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF85mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF85MM F1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RF85mm F1.2 L USM DS 85.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "rfs 10-18", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RFS10-18", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RFS10-18MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RFS18-150", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RISESPRAY 7,5mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Risespray 7.5mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rockstar 10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "rockstar 10MM F8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RockStar 10mm MKII", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RockStar 12mm F2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ROCKSTAR 50mm F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RoclStar 10mm F8 MKII", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.33, + "model": "roki 20", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinion-12mm-APSC", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 10mm T3.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 10mm T3.1 Cine DS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 2.88, + "model": "Rokinon 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 12mm CINE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 12mm f/2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 12mm f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 12mm F2.0 NCS CS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 12mm F2.0 NCS CS Ultra Wide Angle", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 12mm F2.8 ED AS NCS Fish-eye", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 12mm T2.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ROKINON 14 MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 14.00mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ROKINON 14MM 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ROKINON 14MM DS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ROKINON 14MM F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 14mm T3.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.14, + "model": "Rokinon 14mm T3.1 + Viltrox 0.71x Speedbooster", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 16mm cine", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 16mm w Metabones 0.58 Speedbooster", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ROKINON 20mm (EF)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 20mm T1.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 24mm f1.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 24mm T1.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ROKINON 35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 35mm f1.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 50.00mm 1.4 FE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "Rokinon 7.5mm f3.5 fish", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 85 mm Cine", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 85mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 85mm T1.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 8mm f/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 8mm Fisheye", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon 8mm T/3.8 8mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon CAF35 T1.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon Cine 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon cine ds 14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon Cine DS 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon cine ds 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon cine ds 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon Cine Ds 35mm t/1.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon cine ds 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon Cine DS T.5 24mm ED ASIF UMC", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon CINE ED AS UMC", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Rokinon xeen 24mm 1.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ronkinon Cine DS 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RunCam 4K Protek25 Fixed Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "runcam nano3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "RunCam Phoenix 2 Nano", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Runcam RC25G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Runcam Split 3 Micro Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "S-S35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "s-s85", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "S20-60 @20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "S22 ultra 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "S4 27mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "S50 1.8 F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "S5K4H7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "s5kgm2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SAL1855", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samayng 12mm f2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "samjang af 35/1.8FE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samsung", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samsung 45mm 1.8 Prime", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samsung Bright S5KHMX", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samsung ISOCELL Bright HMX", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samsung nx 30 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 10mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.55, + "model": "Samyang 10mm T3.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 12", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 12 F2 AF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SAMYANG 12 mm 2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 12 mm F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "samyang 12 mmf", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 12mm 2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 12mm f/2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 12mm f/2.0 CS E", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 12mm F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 12mm f2 AF Sony e", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 12mm F2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 12mm T2.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SAMYANG 12MM T3.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "Samyang 135mm t2.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 14 F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 14/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "samyang 14mm 0.64x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 14mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 14mm F2.8 EF manual lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SAMYANG 14mm F2.8 fullsize", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 14mm f2.8 II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 14mm T3.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 16mm f/2.0 ED AS UMC CS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 16mm F2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 16mm T 2.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.2, + "model": "Samyang 18 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "samyang 18 f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 18.00mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 18mm / 2.8 FE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 18mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 20mm 1.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 21mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 21mm f1/4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "samyang 24", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 24 mm f/1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "samyang 24 T1.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 24-70 AF 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 24-70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Samyang 24-70mm 2.8 (24mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 24.-70 mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 24.00mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 24mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 24mm F1.4 ED AS IF UMC", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SAMYANG 24mm F2.8 AF - SONY FE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 24mm t1.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SAMYANG 25mm T1.5 UMCII", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 35-150", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 35-150mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SAMYANG 35.00mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 35.00mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "samyang 35.00mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SAMYANG 35.00mmF2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "samyang 35mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 35mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 35mm f/1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "samyang 35mm f1.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 35mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SAMYANG 35mm T1.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 35mm T1.5 @5K", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 35mm T1.5 @6K", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 35mm T1.5 UMC II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 45.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 45.00mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "samyang 45mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 50mm f1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 50mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 7.5mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "samyang 7.5mm f3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 7.5mm FISH EYE T3.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SAMYANG 7.5mm FISHEYE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SAMYANG 7.5MM T3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SAMYANG 75.00mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 75mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 85", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.34, + "model": "Samyang 85 EF Metabones 0.71", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 85mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 85mm CINE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 85mm f1.4 v1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 85mm F1.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 85mm t1.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 85mm t1.5 VDSLR", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 8mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 8mm 3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 8mm f/2.8 II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang 8mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SAMYANG af 12mm f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SAMYANG AF 12MM F2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang AF 24mm F2.8 FE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang AF 35mm F3.8 FE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SAMYANG AF 50mm F1,4 II FE f\u00fcr Sony E", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang AF FE 85.00mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "samyang cine 35 mm t 1.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang Cine V-AF 24mm T1.9 FE Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang Cine V-AF 45.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang Cine V-AF 75.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang EF 24mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang FE 18mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.2, + "model": "Samyang FE 35 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang FE 35MM 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang FE AF 35mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang fish eye 7,5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang MF 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang Rokinon 12.00mm F2 AF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Samyang Rokinon 12.00mm F2 AF APS-C", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang T1.5 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang T3.1 14mm ED AS IF UMC", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang v-af 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SAMYANG V-AF 24mm T1.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang V-AF T1.9 75mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang Xeen ef 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang/Rokinon - 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang/Rokinon Cine 35mm t1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang12mm f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang12mm2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "samyang14mmt3.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang24.00mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "samyang35.00mmf2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "samyang7.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "samyang75.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Samyang_12", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SAMYANG_7.5mm_MFT_fisheye", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SAMYANG_V-AF 75mm T1.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sanyang 35 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sanyang 35 1.4 af", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sanyang12mmF2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Schneider Arriflex cine xeno 35mm f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Schneider Arriflex cine xenon 28mm f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Schneider Arriflex cine xenon 40mm f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Schneider Arriflex cine xenon 50mm f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Schneider Arriflex cine xenon 75mm f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Schneider Arriflex cinegon 18mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Schneider-Kreuznach Xenon FF-Prime 75mm T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Schneider-Kreuznach Xeon FF-Prime 35mm T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "se lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "seagull50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL 70-200/f4.0 @200mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL 70-200mm F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL1018", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL1224GM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL1650OSS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL1670z", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL16F28", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL16F28+VLC-ECU1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL18-200", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL2070G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL20F18G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL24-70GM2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL24105G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL24105G 49.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL24105G 68.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL24105G-105.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL24105G@24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sel24240 @ 240mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sel24240 @240mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL2470GM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL2470GM2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL2470Z", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sel2860", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL2870", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL2870 28-70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL28F20", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL3514GM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL35F1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL35F18", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL35F18F", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL40F25G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL50F18F", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL55F18Z 55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SEL70200GM2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Selfie", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SELP1020G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "SELP1635G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "SELP1650", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SELP1650 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SELP1650 6729825C", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SELP18105F4G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SELP18105G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SELP28135G OSS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SHIMA 35mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "shima 50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Shortest F", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sig28-70/F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGAM 35 ART", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigem-50/1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigem50/1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigm 18-50 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Sigma 1.4 30.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 10-18mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "sigma 10-20", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 10-20 1:4-5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 10-20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 10-20mm 1:4-5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 10-20mm 1:4-5.6 DC HSM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 10-20mm f/3.5 EX DC HSM 10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 10-20mm f/4-5.6 Vilrox Speed Booster 0.71x @ 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 10-20mm f3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 10mm f.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 135mm f/1.8 DG HSM Art Lens for Canon EF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 14-24", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 14-24 @ 14", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 14-24 @14", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 14-24 @24", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 14-24 F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 14-24, 14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 14-24.00mm f2.8 @24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 14-24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 14-24mm DG DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 14-24mm f2.8 @ 14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 14-24mm f2.8 @24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 14.00mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 1424", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 1424, 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 14MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 14mm f/1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 14mm f/1.8 DG HSM Art Lens for Canon EF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 14mm f1.8 DG HSM Art", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 14MM PRIME", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 16 - 28 - 16.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 16 mm contemporane", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 16 mm f/1.4 DC DN Sony E", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 16-28", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 16-28 F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 16-28 F2_8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 16-28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 16-28mm 1:2.8 DG DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 16-28mm f/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 16-28mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 16-28mm F2.8 DG DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 16-28mm@42mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 16-28mmF2.8(16.00mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 16.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 16.00mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 16.00mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 16_28 F2_8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 16F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 2.71, + "model": "Sigma 16mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 16mm 1.4 DC", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 16mm 1.4 x1.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 16mm 1.4x1.5 Digital Zoom", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 16mm Contemporane", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 16mm f 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 16mm f/1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 16mm f/1.4 DC DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 16mm f/1.4 DC DN Contemporary Lens (MFT)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 16mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 16mm f1.4 268ca01e", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 16mm F1.4 DC DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 16mm F1.4 DC DN | C 017 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 16mm f1.4 DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 16mm f1.4 zoom 2x v1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 16mm/F1.4 DC DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 17-35 2.8-4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 17-50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 17-50 + VILTROX", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 17-50 @ 17mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 17-50 @ 21mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 17-50 @ 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 17-50 @ 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 17-50 F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 17-50 F2.8 17mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 17-50 f2.8-4.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 17-50mm f/2.8 EX DC OS HSM 17mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 17-50mm f/2.8 OS HSM 17mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 17-50mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 17-70mm f/2.8-4 DC Macro OS HSM @ 34mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 17.00mm f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 18 35 1 8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18- 35 1:1,8 DC", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-200", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-25 @20mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.6, + "model": "Sigma 18-250 OS HSM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-31mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35 (18mm)vitrox 0.70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35 (25) + Viltrox 0.70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35 (viltrox 18mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35 (viltrox 30mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35 1.8 ART", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35 1.8 Viltrox EF-E II 0.71 speedbooster", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35 @18.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35 @24mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35 @28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35 @35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35 @35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35 @35mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35 Aputure Lens regain", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35 F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35 F1.8 @ 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35 VILTROX @ 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35 w/ Viltrox EF-E II 0.71x speedbooster", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 18-35@35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.6, + "model": "SIGMA 18-35_35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35mm 1.8 (without speedbooster)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35mm 1.8 ART", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35mm Aputure Lens Regain", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35mm DC", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35mm f/1.8 DC 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35mm f/1.8 DC 19mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35mm f/1.8 DC HSM 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35mm f/1.8 DC HSM 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35mm f/1.8 DC HSM @ 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35mm f/1.8 DC HSM @ 23mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35mm f/1.8 DC HSM @ 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35mm f/1.8 DC HSM Art", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-35mm F1.8 DC HSM | Art 013 32.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 18-50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-50 (18mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-50 18.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-50 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-50 2.8 DC", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-50 2.8 DC DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 18-50 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 18-50 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-50 2;8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 18-50 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-50 50.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 18-50 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 18-50 @ 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-50 @ 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-50 @ 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-50 @ 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 18-50 F2.8 18.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-50 f2.8 36.30mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Sigma 18-50 F2.8 DC DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-50 F2.8@18mm.", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-50, 2.8f", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 18-50:2.8 DGDN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 18-50@18.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-50mm 1:2.8 DC DN @18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-50mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-50mm f 2.8 DC DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-50mm f/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-50mm f/2.8 DC DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-50mm F2.8 24.0mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-50mm F2.8 35.0mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "SIGMA 18-50mm F2.8 DC DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18-50mm f2.8-4.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Sigma 18.50 F2.8 DC DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18_50 F2.8 @50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 18mm to 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 19mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 20 F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 20/1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 20mm 1:1.4 DG", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 20mm DN NG", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 20mm f/1.4 DG HSM Art Lens for Canon EF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 20mm f/2.0 DG DN Contemporary", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 20mm1:1.4 DG", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 23.00 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 23.00mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 24 - 70 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24 mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-105 f/4 with Viltrox 0.71x Speedbooster", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 24-70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70 - 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 24-70 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70 @24", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 24-70 @24mm 4k 60fps", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70 DG", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70 DG DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70 DG DN (@ 24mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70 DG DN Art II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70 DG DN at 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70 DG-DN Art", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70 EX DG", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.6, + "model": "SIGMA 24-70 F/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70 f/2.8 @ 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 24-70 f/2.8 DG DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70 f2.8 DG", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 24-70F2.8 DG DN 2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm (24mm) f/2.8 DG DN Art", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm (35mm) f/2.8 DG DN Art", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm (50mm) f/2.8 DG DN Art", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm (70mm) f/2.8 DG DN Art", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm 2.8 Art", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm 2.8 DG DN ART", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm @24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm @30mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm @35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm DG DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm DG DN ART", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm DG DN | A", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm f/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm f/2.8 DG DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm f/2.8 DG DN Art", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm f/2.8 DG DN | A", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm f/2.8 DG OS HSM 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 24-70mm F2,8 DG DN | Art", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm f2.8 DG DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm F2.8 DG DN Art for Sony E Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm F2.8 DG DN | Art 019 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm@24", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm@24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm@35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm@50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm@50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24-70mm@70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24.00mm f/3.5 C", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24/70 f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 2470mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24mm f/1.4 DG HSM Art Lens for Canon EF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24mm F1.4 ART", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 24mm F1.8 EX DG Macro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24mm F2 DG DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 24mm F3.5 DG DN Contemporary", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 28 - 70mm F2.8 DG DN C", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 28 -70mm 2.8 DG DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 28 70 2.8 28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 28 70 28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 28-45mm F1.8 DG DN | Art 024 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 28-45mm F1.8 DG DN | Art 024 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 28-45mm F1.8 DG DN | Art 024 40mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 28-45mm F1.8 DG DN | Art 024 45mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 28-70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 28-70 (only for 28mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 28-70 2.8 dgdn", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 28-70 28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 28-70 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 28-70 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 28-70 70.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 28-70 DG DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 28-70 f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 28-70 F2.8 DG DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 28-70 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 28-70=28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 28-70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 28-70mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 28-70mm F2.8 DG DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 28-70mm F2.8 DG DN Contemporary", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 28-70mm F2.8 DG DN | Contemporary 021 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 28-70mm F2.8 DG DN | Contemporary 021 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 28-70mm F2.8 DG DN | Contemporary 021 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 28-70mm F2.8 DG DN | Contemporary 021 70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 28-70mm F2.8 DG DN | Contemporary @28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 28-70mm F2.8 DG DN | Contemporary @35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 28-70mm F2.8 DG DN | Contemporary @70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 2870 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 28mm f28", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 30 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 30 1.4mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 30 f/1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Sigma 30 f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 30 F1.4 DC DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 30 mm 1:2.8 DN 46", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 30 mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 30.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 30.00mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 30.00mm 1.4 DC DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 30.00mm 1:1.4 DC DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 30F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 30mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 30mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 30mm 1.4 DC DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 30mm 1.4ART", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 30mm 1:1.4 DC DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 30mm DC DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 30mm f 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 30mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 30mm f1.4 dc", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 30mm F1.4 DC Art APS-C", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 30mm f1.4 DC DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 30mm f1.4 dc dn contemporary", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 30mm f1.4 EF-M", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 30MM F1.4 ND", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 30mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 35 F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 35 F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 35 mm 1.4 ART DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 35 mm ART", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 35MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 35mm 1.2f", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 35mm 1.4 DG Art", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 35mm 1:1.4 DG", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 35mm f/1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 35mm f/1.4 DG HSM Art Lens for Canon EF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 35MM F1,4 ART", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 35mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 35mm F1.4 A", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 35mm F1.4 DG HSM | Art 012 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 35mm f1.8 Art", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 35mm f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 40mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 45mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 45mm f2.8 DG DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 50-100", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 50-100mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 50.00mm 1.4 art", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 50.00mm 1;1.4 DG DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 50mm 1.4 EX", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 50mm f/1.4 DG HSM Art Lens for Canon EF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 50mm f/1.4 EX DG HSM 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 50mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 50mm T1.5 FF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 50\u7aef", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 56 1.4 art", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 56 mm 1.4f", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 56.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma 56.00mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "Sigma 56mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 56mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 56mm DC DN f/1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "Sigma 56mm f/1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 56mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 56mm F1.4 DC DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 56mm F1.4 DC DN | C for MFT", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 65 F2 DG DN 20", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 70 200 2.8 l mount", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 70-200 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 70-300 1.4-5,6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 70-300mm f1.4-5.6 (crop)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 70.00-200 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 8-16mm 4.5-5.6 Viltrox Ef-E II 0.71 speedbooster", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 8-16mm 4.5-5.6 w/ Viltrox EF-E II 0.71x speedbooster", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 85.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 85mm f/1.4 DG HSM Art", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 85mm T1.5 FF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 8mm f/3.5 EX DG Circular Fisheye 8mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma 8mm-16mm @8mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA 90mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma art 11mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma art 18-35 (35.00mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma ART 18-35 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma Art 18-35 @20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma Art 18-35@18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma Art 18-35@35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA ART 18-35MM 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma Art 18-35mm 1:1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma Art 18-35mm @18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma Art 18-35mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma art 18-35mm F1.8 (18.00mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma Art 18.00mm 18 - 35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma art 24 1.4 DG", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma art 24-70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma Art 24-70mm f/2.8 DG", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma Art 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma Art 24mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma Art 30mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma art 35 mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma ARt 35mm + Canon Focal Reducer 0.71", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma ART 35mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma Art 35mm f/1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma Art 35mm F1.4 DG DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma art 85mm 1.4 dg dn", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma Art Canon /w MC11 14.00mm 1.8f", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma c 16mm dn", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma cine art 28mm T1.5 PL", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma DC 14-200mm f/3.5-6.3 Viltrox EF-M2 - 14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma DC 14-200mm f/3.5-6.3 Viltrox EF-M2 - 80mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma dc 17-50 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA DC 17-70 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma Dc 17-70mm 2.8-4.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA DC 18-50 (28mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma DC DN E 30mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 2.0, + "model": "Sigma DC EF17-50mm f/2.8 17mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma dg dn 28-70 f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma DG DN 3.5 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma DG DN 85mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma DG DN C 16-28 at 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma DGDN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma dn dg 85mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma EF 24mm f/1.4 Art", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma EX 1.4 30.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.6, + "model": "Sigma EX DC 18-50 f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma EX DC HSM 10-20 f/3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma f1.4 30mm DC DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma FF Cine Prime 20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma FF Cine Prime 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma FF Cine Prime 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma or Tamron 24-70mm f/2.8 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma Super Wide II 24mm f/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma Super-Wide II 24mm f/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma T1.5 FF 20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma(18 50)-18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma(18 50)-35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma, 16mm F1,4 DC DN | Contemporary", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma-2-56.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA-23mm-1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma-247-", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma10-18(10)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma135", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma1424.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma16 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma16-1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma16-28 F2.8 16.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma16-28 F2.8 18.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma16-28 F2.8 20.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma16-28 F2.8 22.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma16-28 F2.8 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma16-28 F2.8 28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA16-28@24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA16.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma16.00mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma16.00mm 1:1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma16f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA17-50 F2.8 17mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma18-35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma18-35 @ 20.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma18-50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma18-50 18.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma18-50F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma18-50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma18-50mm F2.8 50.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma1850", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA18\u7aef", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma20mm_f2_DN_ART", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma23f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma24-70@35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma2470", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA2470:24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma28-70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma28-70 28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma28-70 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma28-70 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma28-70 70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma28-70/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma28-70/f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA2870", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma30 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma30.00mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma30mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma35mmF1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIGMA40.00mmF1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma501.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma56.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sigma85.00mm1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma_16_mm_f1,4_DC_DN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma_16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sigma_35mm_F2_DGDN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIIRUI 75mm Anamorphic", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "simga 18-50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI 1.33x 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui 1.33x Anamorph", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui 1.6X Anamorphic_50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI 100mm Anamorphic", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI 135mm 60fps 1/125", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI 135mm Anamorphc", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI 135mm Anamorphic", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Sirui 150mm Anamorphic T2.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sirui 23 1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui 23 mm f1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui 24mm 1,33x Anamorphic", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui 24mm f/1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sirui 24mm mft", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui 24mm s35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI 24mm T1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui 33mm sniper AF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui 35 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sirui 35 T1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI 35mm 1.8 anamorphic 1.33", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui 35mm Anamorphic", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Sirui 35mm anamorphic 1.33", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI 35mm Anamorphic x 1.65", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui 35mm f/1.8 Anamorphic 1.33x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui 35mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI 35MM FF1.6X", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI 35MM MFT", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui 35mm Saturn", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sirui 35mm saturn t2.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI 35mm T1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "Sirui 35mm T2.9 Anamorhipc Carbon Fiber", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui 35mm T2.9 Saturn", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sirui 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI 50mm 1.33 MFT", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui 50mm anamorphic", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI 50mm MFT", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui 50mm T2.9 1.6x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui 50mm T2.9 FF Anamorphic", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI 55MM T.15", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui 75mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI 75mm Anamorphic", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI ANAMORPHIC 24 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui Anamorphic 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui Anamorphic 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.6, + "model": "Sirui Anamorphic 50mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui Anamorphic 50mmF1.8 1.33", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui Anamorphic 75mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI ANAMORPHIC x1.6 35mm T2.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI ANAMORPHIC x1.6 50mm T2.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI ANAMORPHIC x1.6 75mm T2.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sirui FF 55", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui Nigfhtwalker 55mmT1.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.33, + "model": "SIRUI Night Walker T1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.33, + "model": "SIRUI Night Walker T1.2 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.33, + "model": "SIRUI Night Walker T1.2 55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui Nightwalker 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui Nightwalker 24mm T1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui Nightwalker 24mm/1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI NightWalker 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI Nightwalker 35mm T1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui Nightwalker 35mm/1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI NIGHTWALKER 55MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui Nightwalker 55mm T1.2 S35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui Nightwalker 55mm/1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui Nightwalker 75mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui Nightwalker T1.2 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui Nightwalker T1.2 55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui Saturn 35 mm T2.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui Saturn 35mm 1.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui Saturn 35mm anamorphic", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI Saturn 35mm Full-frame Carbon Fiber Anamorphic", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "Sirui Saturn 50mm Anamorphic 1.6x T2.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui Saturn 75mm anamorphic", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI Sniper 23.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui Sniper 23mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui Sniper 23mm F1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sirui sniper F1.2 APS-C AF 23.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui Venus 35mm 1.66x anamorphic", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sirui Venus 75mm 1.66x anamorphic", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI24MMT1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIRUI35MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SIUI24MMT1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Siuri Night Walker 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Skydio 2+", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SkyReat Anamorphic", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "slr 8mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "slr 8mm f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SLR MAgic 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SLR MAgic 21mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SLR Magic 25mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 2.0, + "model": "SLR Magic 25mm T0.95 Hyperprime Cine III", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SLR Magic 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SLR magic 35mm f1.2 CINE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SLR Magic 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SLR MAGIC 50MM 1.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SLR MAGIC 50mm f1.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SLR MAGIC 8 MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SLR MAGIC 8mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SLR Magic 8mm f/4.0 Ultra Wide Angle MFT", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SLR Magic 8mm f4.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SLR Magic Micro Prime", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SLR Magic Micro Prime 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SLR Magic microprime 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SLR Magic Microprime 35mm T1.3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SLR Magic MicroPrime CINE 35mm T1.3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SLR Magic MicroPrime CINE 50mm T1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SLR8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SLRMAGIC 17MM T1.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SLRMAGIC 25MM T0.95", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SLRmagic 8mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sm-n981b", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Smartphone 25 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.61, + "model": "SMC Pentax 50mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SMC PENTAX-M 1:2 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SMC TAKUMAR 50MM F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Snoy 28mm F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "soni f1/6 48mp", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sonnar FE 35mm F2.8 ZA", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sonnar FE 55mm F1.8 ZA SEL55F18Z@1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sonnar T* FE 55mm F1.8 ZA", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SONY (SIGMA 24mm F1.4 DG DN)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SONY (Sony FE 55mm F1.8 ZA)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 10-18mm f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SONY 10-20 f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SONY 11mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 12-24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SONY 12MP", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 14m f1.8 GM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 15.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SONY 15.00mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 15.00mm G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 16-35mm G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 16-35mm G F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sony 16-50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 16-50 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 16-50@50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 16-50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 16-50mm f/3.5-5.6 Montura E", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 16-55mm GM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 18-105 f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 18-105mm F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sony 18-105mm F4 G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 18-135mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 18-135mm f5.6 135.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 18-55 Kit", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sony 18.108 emount f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 20-70 F4 G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "SONY 20-70 F4G 20-70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "SONY 20-70 F4G 20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 20-70mm f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 20mm f1.8 G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 20mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 24 - 70 f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 24-105", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 24-105 f4 @ 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 24-105 f4 G at 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 24-105 f4 G at 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 24-105 G at 105mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 24-105 G f4 at 105mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 24-105 G f4 at 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 24-105 G f4 at 70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 24-105mm f/4 G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 24-105mm f4 G at 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 24-240", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 24-240mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 24-70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 24-70 f2.8 G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 24-70mm 2.8 GM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 24-70mm f2.8 G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 24-70mm G mk2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SONY 24.00mm - 70.00mm GM II 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 24mm 1.4 GM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 24mm F/2.8 G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 28-60(@28)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sony 28-70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 28mm F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 3,5-5,6/16-50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sony 3.5-5.6 / 18-135", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sony 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sony 35mm f 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 35mm F/1.4 GM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 35mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 35mm f1.8 SEL35F18", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 4/18-105", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 4/18-105mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 48MP Camera", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 50 mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 50-210.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SONY 50M", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 50mm F/2.5 G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SONY 50mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 50mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sony 55-210", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sony 55-210mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 70-200 f4G2 @ 200", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 70-350", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 85F14GM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 85mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 85mm 1.8 FE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony 85mm F/1.4 GM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony a7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sony e 1.8/11", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sony e 11mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony E 11mm F1.8 (SEL11F18)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SONY E 16-503.5-5.6F OSS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony E 16-50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sony E 16-50mm f/3.5-5.6 OSS PZ", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony E 16mm w/UWA (12mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Sony E 18-135mm F3.5-5.6 OSS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony E 35mm f1.8 OSS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony E1.8/11", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony E24mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony E35 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony E35mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony ESLP 18mm 3.5-6.3/18-200", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sony f2.8 24-70mm G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony f3.5-5.6 16-50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SONY FDR X3000", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony FE 1.4/24 GM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony FE 1.4/35 GM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony FE 1.8/20G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony FE 1.8/50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony FE 1.8/50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony FE 1.8/85", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony FE 16-35mm f2.8 GM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony FE 2.8/24 G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "Sony FE 24mm F2.8 G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony FE 24mm/1.4 GM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony FE 28-70 f/3.5-5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony FE 28-70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony FE 28MM F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony FE 35 f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony FE 35 mm F1.4 GM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony FE 35mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony FE 4-5.6 / 28-60", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony FE 4-5.6 /28-60", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SONY FE 4/16-35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.24, + "model": "Sony FE 40mm F2.8 G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony FE 50mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony FE 55 f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony FE 70-200 Macro G II @70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony FE 85mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.24, + "model": "Sony FE 85mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sony fe2870", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony FE35 SEL35F18F 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony GM 14.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sony gm 14mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony GM 20.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony GM 24-27 F2.8 Mk II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony GM 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony GM 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sony Gseries 20mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 0.6, + "model": "Sony IMX 355", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony IMX 363", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony IMX 586", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony IMX 682", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SONY IMX335", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony IMX363 Exmor RS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SONY IMX386", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony IMX577 12MP 1/2.3\u201d", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony IMX582", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony IMX586", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony IMX682", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony IMX682 f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony IMX766", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony IMX800", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony Lines G 1.8/1.9-57", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony Prime 35mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony SEL 1.8/11.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony SEL 24-240mm 1:3,5-6,3 FE OSS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony SEL11F18", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony SEL16F28", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony SEL18-200", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony SEL20F18G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony SEL28F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony SEL28FE20", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony SEL35F18", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony SEL35F18 35mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony SEL35F18F", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SONY SEL50F18F", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony SELP1650 PZ 16-50mm f/3.5-5.6 OSS; 9 elements in 8 groups, 4 aspheric surfaces", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony Sigma 18-105", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony Vario-Tessar T FE 24-70mm f4 ZA OSS @ 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony Zeizz 4/24-70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony-Zeiss Planar T* FE 50mm F1.4 ZA", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony10-20G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony16-55mm G", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sony16-70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sony1650", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sony16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony18-105", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sony20-70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sony20F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony28-60", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony28.00mmF2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sony_A7C_SuperTakumar_55mm_F1_8_3840x2140_30fps", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sonyt 35mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "soocoo 70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SP AF 17-50/2.8 XR Di II LD Asp. IF A16", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "SP29MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Speed Boosted Sigma Art 24mm EF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SR70300", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SRL Magic 8mm F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "standard", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Standard Vista Camera", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Standart", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Standart Lens (includet)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "starlight", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "STD", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Std Weitwinkel", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "STM50 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "stock", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Stock 24mm camera lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Stock Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "stocklens@16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Sugma 8-16", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "sumyang75.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Super", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Super Takumar 300mm f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Super Takumar 35mm f/2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Super Takumar 35mm F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Super Takumar 50mm,f1.4 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SUPER VARIO ELMAR 16-35 ASPH", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Super-Multi-Coated Takumar 135mm f2.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Super-Multi-Coated Takumar 200mm f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Super-Multi-Coated Takumar 35mm f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Super-Takumar 24mm f3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Super-Takumar 35mm f3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Super-Tarkumar 35mm f3.5 & Metabones Speedbooster x0.71", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Superview", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "supreme prime 25mm 17:9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SWM VR ED IF 16-35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "SWM VR ED IF67", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "T series 58mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "T* 24-70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "T2.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Taikuma", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "Taikuma 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Takumar 135mm f3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Takumar 20mm f4.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Takumar 24mm f3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Takumar 28mm 3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Takumar 28mm f3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "takumar 35mm f2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Takumar 50mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Takumar 55 f/1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Takumar 85mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Takumar f3.5 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAKUMAR SMC 55MM F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tam17-28/f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tam20/F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tam20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tam70-300/f4.5-6.3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMARON 10 24", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamaron 11-16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamaron 17-50 f2.8 LD SP IF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamoron 28-75 @28", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.14, + "model": "TAMROM 18-300mm 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tamrom 28 75 mm f/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 10-24mm f/3.5-4.5 Di II VC HLD 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 11-18", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 11-20", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 11-20 F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 11-20mm - 11.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 11-20mm - 20.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 15-30 F/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 15-30 F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 15-35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17 50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-28", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-28 @17.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-28 @20.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-28 A046", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-28 f 2.8 Di III RXD", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-28 F2.8 -- 17mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-28 f2.8 @17.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-28 f2.8 @24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-28 f2.8 @28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-28 mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-28@17mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-28@28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON 17-28mm f/2.8 Di III RXD", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-28mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-28mm F2.8 @ 17mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-28\u914d\u7f6e\u6587\u4ef6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-50 XR DiII SP", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-50F4 Di III VXD", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-50F4 Di III VXD 17mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-50F4 Di III VXD 20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-50F4 Di III VXD 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-50F4 Di III VXD 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON 17-70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON 17-70 17", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-70 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Tamron 17-70 70mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-70 f2.8 17mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-70 F2.8 B070", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-70mm @ 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-70mm @17mm F/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Tamron 17-70mm F/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-70mm F/2.8 @17mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-70mm f2,8 Di III-A VC RXD Fuji X", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-70mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 17-70\uff0817\uff09", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 1728", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON 1770", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tamron 1770 f2.8 17", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 18", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 18-200", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 18-200 3.5-6.3 Di III VC", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 18-200mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tamron 18-200mm f3.5-f6.3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 18-250", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tamron 18-300", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 18-300 (18.00mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 18-300 18mm F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "TAMRON 18-300mm 18mmF4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON 18.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 18300", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 20-40", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 20-40 @22.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 20-40 f/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON 20-40 F2.8 20.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 20-40.00", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 20-40mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 20-40mm @20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 20-40mm F/2.8 DiIII VXD", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 20-40mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON 20-40mm F2.8 20.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 20-40mm F2.8 @ 20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 20.00mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON 200.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 20F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 20mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tamron 20mm-40mm f2,8@20.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 24-70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 24-70 f/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 24-70 f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 24-70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 24-70mm F2.8 Di VC G2 EF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 24-70mm F2.8 Di VC USD G2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 24.00mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 24mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 24mmn F/28 Di III OSD", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 25-75mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28 - 75mm F/2.8 Di III RXD", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-200", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-200 2.8-5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tamron 28-200 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-200 @ 100", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tamron 28-200 @ 134.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-200 @ 135", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tamron 28-200 @ 158.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-200 @ 200", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-200 @ 28", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-200 @ 28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-200 @ 35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tamron 28-200 @ 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tamron 28-200 @ 49.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-200 @ 50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tamron 28-200 @ 69.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-200 @ 70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tamron 28-200 @ 98.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-200 @28 Di III RDX", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-200 @28 Di III RXD", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-200 F/2.8-5.6 Di III RXD", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON 28-200 F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-200-28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-200mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON 28-200mm 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-200mm f/2.8-5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-74", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75 2.8 G2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75 50.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75 @ 28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tamron 28-75 di 3 f/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75 Di III XVD G2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75 Di VXD G2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON 28-75 F/2.8 Di III VXD G2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75 f/2.8 ff28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75 f/2.8 G2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75 f2.8 @ 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75 f2.8 @28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75 F2.8 Di III RXD", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75 F2.8 G2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75 G2 28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75 G2 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75 G2 41.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75 G2 50.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75 G2 64.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75 G2 75.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75 G2 @28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75 G2 RAW@28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75 G2 RAW@28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75 G2 RAW@35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75 G2 RAW@35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75 G2 RAW@50.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75 G2 RAW@75.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75-28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON 28-75.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tamron 28-75mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75mm 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75mm f/2.8 Di III VXD G2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75mm f/2.8 g2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75mm F/2.8[28mm]", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75mm F/2.8[50mm]", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75mm F2.8 @28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75mm f2.8 @50.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75mm f2.8 @75.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75mm f2.8 G2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75mm G1 23.976fps @28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75mm G1 75.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75\uff0828mm\uff09", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75\uff0828\u7aef\uff09", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75\uff0828\uff09", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28-75\uff0875mm\uff09", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 2875G2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tamron 35 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Tamron 35-150", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 35-150 f/2-2.8 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 35-150 f/2-2.8 85.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 35-150mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 35-150mm Di III VXD", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 35-150mm f/2-2.8 Di III VXD 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 35mm F/1.8 VC", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON 35mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 35mm FE/2.8 Di III OSD", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 35mm VC", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tamron 35MM-150.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 50-400mm f4.5-6.3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 50-400mm F4.5-6.3 VC VXD (A067) 200mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 50-400mm F4.5-6.3 VC VXD (A067) 400.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON 70-180 F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tamron 70-300", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 70-300 (300mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 70-300 4.5-6.3 Di III RXD", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron 75mm 1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tamron a009 70-200 200", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 2.0, + "model": "TAMRON A16 17-50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron Aspherical", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron DI III RXD", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON E 17-28 f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON E 35-150 f2-2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 2.0, + "model": "TAMRON EF 17-50 + Viltrox 0.71X", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron FE 20-40 @20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron FE 20-40 @20mm 1.2x 30fps", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron FE 20-40 @28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron FE 20-40 @28mm 30fps 1.2x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron FE 20-40 @40 1.5x Crop + Zoom 1.5x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron FE 20-40 @40mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron FE 20-40 @40mm + Zoom 1.5x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron FE 20-40 @40mm 30fps 1.2x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron FE 20-40 @40mm 30fps 1.2x + 1.5x Zoom", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron FE 20-40 @40mm Crop 1.5 + Zoom 1.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron FE 28-200 @100mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron FE 28-200 @40mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron FE 28-200mm 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON FE 28-75mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron SP 17 - 50 mm F/2.8 (Nikon F)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron SP 17-50mm F/2.8 XR Di-II VC LD", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON SP 24-70mm F/2.8 Di VC USD G2 A032 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON SP 24-70mm F/2.8 Di VC USD G2 A032 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON SP 24-70mm F/2.8 Di VC USD G2 A032 50.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON SP 24-70mm F/2.8 Di VC USD G2 A032 70.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON SP 35mm F/1.4 Di USD", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON SP 35mm F/1.4 Di USD F045 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron SP 35mm F/1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON SP 35mm F/1.8 Di VC USD F012 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron SP 35mm F1.4 + Canon Speedbooster", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron SP VC 24-70mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron-28-75-2g", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON-28-75mm F/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron11.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron17-28", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron17-70 2.8 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron17-70/f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON17-70mm F/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON18-300mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON20-40mm F2.8 40.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron20/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tamron28-200", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron28-75/2.8Di III", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON28-75II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON2875G2 @ 51.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tamron35.00mm-150mm_35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron70-300", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tamron_17-28mm_F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON_17-70_17.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMRON_18-300_18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tamronTamron 17-28 f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tamronTamron 17-28 f2.8 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TAMROW 28-75mm F/2.8 Di III VXD G2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tamton 28-75mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TARMRON 18-300", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TARSIER", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tele", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tele 53mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tele 53mm f2.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tele-Astranar 400mm f6.3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tele-zoom x2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Telephoto", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Telephoto (10x)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Telephoto (5x)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "Telephoto 84mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Temron 24 2.8 Di III OSD Tamron", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Temron17-35-17MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tenglong11-20", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TL2875 75.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TL35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tla007", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina 11", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina 11 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina 11-16", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TOKINA 11-16 ATX-i @ 11mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TOKINA 11-16 ATX-i @ 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TOKINA 11-16 ATX-i @ 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tokina 11-16 DX", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina 11-16 f2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina 11-16 F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina 11-16 f2.8 Pro DX I", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TOKINA 11-16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina 11-16mm ATX-i @ 11mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina 11-20", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina 11-20 (12MM)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TOKINA 11-20 ATX", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina 11-20 atx-i @11", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina 11-20 F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TOKINA 11-20 T2.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tokina 11-20 T2.9at 11mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina 11-20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina 11-20mm (viltrox 11mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina 11-20mm (viltrox 20mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina 11-20mm f2.8 + Viltrox EF-M2 II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina 11-20mm f2.8 @14mm + Viltrox EF-M2 II 0.71x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina 12-24 F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "tokina 12-24 f4 if dx pro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina 12-28mm F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina 16-28", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina 16-28 T3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina 28-70 2.8-4.3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina AT-X 12-28mm f/4 PRO DX 12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina AT-X 270 AF PRO II @ 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina ATX-i 11-20 F/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina atx-m 23mm AF F1.4 E - 30p 1.2x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina atx-m 23mm AF F1.4 E - 4k24p 1.0x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina ATX-m 23mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Tokina ATX-m 23mm F1.4 Sony E", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina ATX-m 56mm F1.4 Sony E", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina Firin 20.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina Pro DX 11-16mmViltrox Speedbooster EF-EOS M2 0.71x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TOKINA SD 11-16 f.2.8 (IF) DXII", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina SD 11-16mm f2.8 (IF) DX", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Tokina SD11-16 2,8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TokinaATXi 11-20 T3.1 at 20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TOMRON28-75A6350mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TOMRON28-75A6375mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Topcor 57mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Touit12 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TS-E24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TT Artian 35mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TT ARTISAN", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TT ARTISAN 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TT Artisan 35mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TT Artisan 50mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TT Artisans 17mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TT Artisans 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "tt35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TT35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTA-50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTArtisan", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ttartisan 10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTArtisan 10mm f/2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ttartisan 11m f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTartisan 11mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTArtisan 17/1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTartisan 17mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTArtisan 17mm f/1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTartisan 17mm f/1.4 Sony E", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTArtisan 21mm f1.5 ASPH", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTartisan 25mm 1.33 Anamorphic", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTArtisan 25mm f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTArtisan 25mm F2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ttartisan 35mm 1.4 ef-m", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTArtisan 50 mm f1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTArtisan 50mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTArtisan 50mm f/0.95 Lens for Canon RF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTArtisan 50mm f0.95", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTartisan 50mm f1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTArtisan 50mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTArtisan 50mm F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTartisan 7.5mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTartisan 7.5mm f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTartisan 7.5mm F2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTARTISAN 7.5MM FISHEYE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTArtisan AF 27/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTArtisan AF 27mm f/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTArtisan APS-C 10mm f2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTArtisan-11mm(Fisheye)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTArtisan50f1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTArtisans", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTArtisans 11mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ttartisans 17mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTartisans 17mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTartisans 35mm f/1.8 APS-C", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTArtisans 35mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "TTartisans_17mm_1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ulanzi wl-1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ultra", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ultra Prime 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ultra Wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ultra wide (0.5x)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ultra Wide (0.6x)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ultra Wide 0,6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ultra wide 13mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ultra Wide 13mm 0.5x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ultra Wide 155\u00b0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ultra wide 15mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ultra wide angle", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ultra Wide Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ultra Wide: \u0192/2.4 aperture and 120\u00b0 FOV", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ultra-Wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "UltraWide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "UltraWide (0.5x)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ultrawide 104", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ultrawide 109", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ultrawide 110", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ultrawide 137", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ultrawide 148", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "Ultrawide 15mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ultrawide 64", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ultrawide 80", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ultrawide 88", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ultrawide 88 (4K Boost Lens)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ultrawide 96", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ultrawide Rear Camera", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Unknown", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "unknown 11.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "unknown 14.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "unknown 16.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Unknown 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "unknown 20.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "unknown 21.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "unknown 24.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "unknown 28.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "unknown 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Unknown1 104", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "uw", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "UW 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "UW@10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "v 56mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "v1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "V2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "v2 lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "V27 1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "V50X", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Vario 1:1.7 - 2.8/10.9-34", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "vario 20 60", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "vario-sonnar 2,8/24-70 ZA", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "Vazen85 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "VCL-ECF2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Venus Laowa 100mm f/2.8 2X Ultra Macro APO 100mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Venus Optics Laowa 10.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Venus Optics Laowa 10.00mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Venus Optics Laowa 10mm f/2.8 Zero-D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Venus Optics Laowa 12mm f/2.8 Zero-D", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Venus Optics Laowa 7.5mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Venus Optics Laowa 7.5mm f/2 MFT", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Venus Optics Laowa 7.5mm F2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Venus Optics Laowa 9mm T2.9 Zero-D Cine Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "VenusOptics Laowa 12mm F/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Vertical", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Vespid 21mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Vespid Prime 40mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Vilrox Epic 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "VILTORX 20MM f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "viltrol 20.00mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 13.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "viltrox 13f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 13mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 13mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 13mm f.14", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 13mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 13mm f1.4 Z", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 16.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "VILTROX 16mm 1.8f", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 20 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 20 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 20 f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 20.00mm F/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "VILTROX 20.00mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 20F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "viltrox 20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 20mm 2,8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "viltrox 20mm 2.8 fe", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "VILTROX 20MM F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "VILTROX 20MM T2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 20mm/2.8 FE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 20mm/f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 20T2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 23.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "viltrox 23.00mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 23mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 23mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 23mm 1.4 - 5884045", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "viltrox 23mm f.14", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "viltrox 23mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "viltrox 24", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 27 F1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "VILTROX 27.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "VILTROX 27F1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 27mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.14, + "model": "VILTROX 27mm F1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "VILTROX 27mmf1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 33", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 33mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 33mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 35.00mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "VILTROX 35MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 35mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 40mm f.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 50mm 1.8 Sony E", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 50mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 56mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 75.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 85 F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 85.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "viltrox 85mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 85mm 1.8 II FE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox 85mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "VILTROX AF 13mm F1.4 XF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox AF 16mm F1.8 FE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox AF 16mm f1.8 Sony FE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "VILTROX AF 20/2.8 FE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox AF 20mm f/2.8 FE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox AF 20mm F2.8 FE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "VILTROX AF 20mm F2.8 FE 56A11", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox AF 23/1.4 E", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "VILTROX AF 35/1.8 FE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox AF 35mm F1.8 FE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox AF 56/1.4 E", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "VILTROX AF 85MM F1.8 FE", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "VILTROX AF13/1.4XF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox Epic 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "viltrox fe20 f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Viltrox viltrox 85 F1.8 STM ED IF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "viltrox-23mm-f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "viltrox\u552f\u5353\u4ed5 27.00 1.2pro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "viltrox\u552f\u5353\u4ed5 27.00 1.2promm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "VITROX 85mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Vivitar 135mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Vivitar 25mm 2.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Vivitar 28 f2.5 Viltrox .71", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Vivitar 28-85mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Vivitar 28mm f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Vivitar 28mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Vivitar 90mm 2.5 Macro", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Vivitar Canon FD 135mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Vivtar 28mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "VM 75.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "VM-10mmF5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Voigtlander 15 4.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Voigtlander 15mm 4.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Voigtlander 15mm f/4.5 Super-Wide Heliar (V1)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Voigtlander 15mm SW-H ASPiii", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Voigtlander 17.5mm F0.05", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Voigtlander 21mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Voigtlander 21mm f/3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Voigtlander 35 2.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Voigtlander 35mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Voigtlander 35mm2.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Voigtlander 42,5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Voigtlander 75mm Nokton", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Voigtlander APO-LANTHAR 50mm F2 Aspherical", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Voigtlander Nokton 35mm f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Voigtlander Nokton 42.5mm f/0.95", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Voigtlander Nokton 42.5mm f/0.95 MFT", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "VOIGTLANDER ULTRON 28mm RF Adapter", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Voigtlander_10.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "vr 18-105", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "VR180", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Vtro 13mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "vtx 56mm F1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "VTX56mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "vvd", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "vzs 27 1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "W 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Walimexpro 35 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "walksnail cinlog35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Walksnail_Avatar_Pro_Camera_1080p_16by9_60fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Walksnail_Avatar_V2_Camera_1080p_16by9_60fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Walksnail_Avatar_V2_Camera_1080p_4by3_60fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Wallimex 10mm EF", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "WESLEY 24MM F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "Wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Wide (1x)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Wide + Magnet", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Wide + Neweer Anamorphic 1.33x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Wide 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Wide 16mm f1.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Wide 18mm f1.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Wide 2.7k 60fps", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "Wide 23mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Wide 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "wide 26mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Wide 26mm 1x", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Wide 68", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Wide 76", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Wide 86", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Wide 98", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Wide @26mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Wide Angle", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "wide angle 28 mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Wide Angle Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Wide Cam", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Wide Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Wide lens 26mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Wide lense", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Wide(x1)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Wide/Main", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "wide/main lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Wideangle", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Without Len correction", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "wsap", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "WW", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "x0.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "x0.6 film mode", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "X0.71+16-35F4-16MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "X0.71+16-35F4-35MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "x1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "X3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "X4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "x7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XC 15-45mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XC 16-50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XC 35mm F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "xc 50 203", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XC15-45", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "xc15-45 15", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "XC15-45mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XC1545mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "xc35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XC35MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Xeen 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Xeen 35mm T1.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XEEN 50mm T1.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Xeen 85mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XEEN 85mm T 1.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Xeen 85mm T1.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XEEN CF 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XEEN CF 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XEEN CF 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XEEN CF 35mm T1.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XEEN CF 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XEEN CF 50mm T1.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XEEN CF 85mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XF 16-55", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XF 16-55 F/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XF 16-55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XF 18-55", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XF 18-55 f2.8-4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XF 18-55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XF 18-55mm @18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XF 18mm f/1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XF 23mm F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XF 27mm F1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XF 33mm f/1.4 R LM WR", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XF 35mm 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "xf 56 1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XF ZOOM 16-80", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XF16-55", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XF16-55mmF2.8 R LM WR", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XF18-120", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "xf18-200 f4 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "xf18-200mmF4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XF18-55", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XF23", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "xf33 f1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XF35mm F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XF8mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "xiaomi 11 ultra", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "xiaomi yi", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "xiaoyi 42.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "xingyao35mmF0.95", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XS", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU S6 1080P30 SuperView 1920x1080-30.00fps Wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU-X3_LDC_4K30_16:9_3840x2160_29.97fps", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MAX2_LDC_2.7k25_2.7k_4by3_2720x2040-25fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MAX2_LDC_4k25_4k_16by9_3840x2160-25fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MAX2_NO-LDC_4k25_4k_16by9_3840x2160-25fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MAX2_NO-LDC_4k60_4k_16by9_3840x2160-59.94fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MAX2_NO-LDC_6k30_6k_16by9_5376x3024-29.97fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MAX3_NO-LDC_1080P120_1080p_16by9_1920x1080-120fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MAX3_NO-LDC_1080P30_1080p_16by9_1920x1080-29.97fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MAX3_NO-LDC_1080P30full_1080p_16by9_1920x1080-29.97fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MAX3_NO-LDC_1080P60_1080p_16by9_1920x1080-59.94fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MAX3_NO-LDC_1080P60full_1080p_16by9_1920x1080-59.94fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MAX3_NO-LDC_1440P30_1440p_4by3_1920x1440-29.97fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MAX3_NO-LDC_1440P60_1440p_4by3_1920x1440-59.94fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MAX3_NO-LDC_2.7k30_2.7k_16by9_2720x1530-29.97fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MAX3_NO-LDC_2.7k30_2.7k_4by3_2720x2040-29.97fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MAX3_NO-LDC_2.7k60_2.7k_16by9_2720x1530-59.94fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MAX3_NO-LDC_4k25_4k_16by9_3840x2160-25fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MAX3_NO-LDC_4k30_12M_4k_4by3_4000x3000-29.97fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MAX3_NO-LDC_4k30_4k_16by9_3840x2160-29.97fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MAX3_NO-LDC_4k30full_4k_16by9_3840x2160-29.97fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MAX3_NO-LDC_4k50_4k_16by9_3840x2160-50fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MAX3_NO-LDC_4k60_4k_16by9_3840x2160-59.94fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MAX3_NO-LDC_6k30_6k_16by9_5376x3024-25fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MAX3_NO-LDC_6k30_6k_16by9_5376x3024-29.97fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MAX3_NO-LDC_720P120_720p_16by9_1280x720-120fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MAX3_NO-LDC_720P30_720p_16by9_1280x720-29.97fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MAX3_NO-LDC_720P60_720p_16by9_1280x720-59.94fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MaxPro_LDC_1440P30_1440p_4by3_1920x1440-29.97fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MaxPro_LDC_1440P60_1440p_4by3_1920x1440-59.94fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MaxPro_LDC_2.7k60_2.7k_16by9_2720x1530-59.94fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MaxPro_LDC_4k30_4k_16by9_3840x2160-29.97fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MaxPro_LDC_4k30full_4k_16by9_3840x2160-29.97fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MaxPro_LDC_720P30_720p_16by9_1280x720-29.97fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MaxPro_NO-LDC", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MaxPro_NO-LDC_1080P30_1080p_16by9_1920x1080-29.97fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MaxPro_NO-LDC_1080P60_1080p_16by9_1920x1080-59.94fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MaxPro_NO-LDC_1080P60full_1080p_16by9_1920x1080-59.94fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MaxPro_NO-LDC_1440P30_1440p_4by3_1920x1440-29.97fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MaxPro_NO-LDC_1440P60_1440p_4by3_1920x1440-59.94fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MaxPro_NO-LDC_2.7k30_2.7k_16by9_2720x1530-29.97fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MaxPro_NO-LDC_2.7k60_2.7k_16by9_2720x1530-59.94fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MaxPro_NO-LDC_4k30_4k_16by9_3840x2160-29.97fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_MaxPro_NO-LDC_4k30full_4k_16by9_3840x2160-29.97fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_XTUS2_XTU_2.7k30_2.7k_16by9_2704x1520-30fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_XTUS5K_XTU_2.7k30_2.7k_16by9_2704x1520-30fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_XTUS5K_XTU_4k30_4k_16by9_3840x2160-30fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XTU/XTU_XTUS5K_XTU_5k30_5k_16by9_4068x2592-30fps wide", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "xv", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "xxx", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "XY-1440-1080", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Yashika 45mm F1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Yashinon-DS 50mm f1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "YN 85.00mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "YN-50 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "YN-50.8 E", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "YN-50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "YN-E 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "YN11mm_F1.8S_DA_DSM_WL_240607", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "YN16mm F1.8S DA DSM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "YN25mm F1.7M", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "YN50 f1.8s", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "YN50.00mm f/1.8 DF DSM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "YN50MM1.8S", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "YN85MM F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ynlens YN50mm F1.8S DA DSM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "YnLens-35mm-F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ynlens-50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "yong nuo 50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "yongnou 35 f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "yongnuo 11.00mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Yongnuo 11mm F/1.8S DA", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Yongnuo 16.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "yongnuo 50 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Yongnuo 50 f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Yongnuo 50f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Yongnuo 50MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "YONGNUO 50MM 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "yongnuo 50mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Yongnuo 50mm1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Yongnuo EF YN 50mm F/1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Yongnuo YN11mm F1.8S DA DSM WL", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Yongnuo YN16 16mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "YONGNUO1.8 @ 50.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "yongnuo50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "yongnuo50.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Yonguno 50mm f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.6, + "model": "Yonguo 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Youngnuo 50mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "yudiputa ka", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "z 14_24 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "z 16-50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "z 24-120 f4.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "z 24-120 f4.0s", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Z 24-120mm F4(24mm)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Z 24-200mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "z 24-70 f2.8s", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "z 24-70 f4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "z 24-70 f4s", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Z 28-75 f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Z 35mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Z 40mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Z 50mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Z 600mm f/6.3 VR S", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Z 85 f1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Z DX 12-28mm f/3.5-5.6 PZ VR", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Z DX 18-140", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Z105mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Z12-28", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Z16-50mm @ 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Z22L", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "z24 70 F4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "z24-120mm @ 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Z24-702.8S", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.0, + "model": "Z24-70mm f2.8 @ 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "z254-120", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "Z35mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Z50-250mm @ 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "z501.8s", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "z85mm 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zalupasigm 30mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss 1.4 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss 15mm 2.9T CP.3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss 15mm cp.3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "zeiss 16-35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss 16.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "zeiss 18", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss 21.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZEISS 21/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss 24-70mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "zeiss 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "zeiss 25/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZEISS 28MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss 35mm f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss 55.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss 55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss @16mm 16.00mm-35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss B-Speed 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "zeiss batis", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Batis 135mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "zeiss Batis 18", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Batis 18.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Batis 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Batis 2/25", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Batis 25.00mm 2.0@2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "zeiss Batis 40", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Batis 40.00mm 2.0@2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "zeiss Batis 85", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "zeiss Classic makro 50mm f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZEISS Compact Prime CP.3 18 mm/T2.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.33, + "model": "ZEISS Compact Prime CP.3 25 mm/T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.33, + "model": "ZEISS Compact Prime CP.3 35 mm/T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Contax 25mmF2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Contax 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Contax 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Contax 50 1.4 T*", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Contax 50 1.4 T* MMJ", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Cp.2 21mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZEISS CP.2 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZEISS CP.3 100MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss CP.3 XD 100mm/T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss CP.3 XD 21mm/T2.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss CP.3 XD 50mm/T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss CP2 21mm 2.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss CP2 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss CP2 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss CP3 15mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZEISS CP3 18MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZEISS CP3 35MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZEISS CP3 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZEISS CP3 85MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss CP3_100mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Distagon 18mm f3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Distagon 25.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss distagon ZE 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZEISS FE 1.8/55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZEISS FE 2.8 / 35", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Flektogon 35/F2.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Loxia 21mm f2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Loxia 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Macro-Planar 50.00mm f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Master PRIME T2.0", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Otus 28mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Otus 55 with Canon 0.71x Focal Reducer", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZEISS OTUS 55mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Portrait F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Praktikar 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Spuperspeedmk1 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Super Speed 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZEISS SUPER SPEED MK1 18mm T5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Super Speed MkIII 18mm T1.3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Super Speed MkIII 25mm T1.3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Super Speed MkIII 35mm t1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Super Speed MkIII 50mm t1.3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Super Speed MkIII 85mm t1.3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZEISS SUPER SPEEED MK1 18mm T4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Superspeed 18mm T2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss superspeed 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZEISS SUPERSPEED 25mm T2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZEISS SUPERSPEED MK.1 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Superspeed Mk.1 18mm T2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss SuperSpeed Mk.1 T4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZEISS SUPERSPEED MK1 25mm T4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Supreme Prime 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Supreme Prime 25mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Supreme Prime 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Tesar T* 7,9mm F4 (24mm FF)", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Tevidon 10mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Touit", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Touit 2.8/12mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss Vario-Sonnar 28-70mm f3.5-4.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZEISS ZUPERSPEED MK1 18mm T5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss16-35 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss16-35 20mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss16-35 24mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zeiss16-35 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.33, + "model": "ZEISSCompact Prime CP.3 18mm/T2.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZEISS\u00ae Tessar\u00ae", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZEISS\u00ae Tessar\u00ae Lens", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "zenith 58f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZF100/2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZF25/2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZHONGYI 25mm f0.95", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Ziess Kowa 16H slr rangefinder v 1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ziess milvus 35.00mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZONLAI 25mm F1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZOOM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "Zoom 1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZUIKO 14-42 IIR", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZUIKO 28mm f3.5", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZUIKO 45MM 1.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZumLain_8mm_LH0811-12MP", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZumLian LH0811 8mm F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "ZumLian LH0811 8mm F2 V2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u0413\u0435\u043b\u0438\u043e\u0441 81\u041d F2.0 50mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u041e\u0441\u043d\u043e\u0432\u043d\u0430\u044f", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u4e03\u5de5\u532010mm\u9c7c\u773c", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u4e03\u5de5\u532035MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u4e3b\u6444", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u4e3b\u6444\u50cf\u5934", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u4e3b\u6444\u6a2a\u5c4f", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u4f73\u80fd18-200", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u51e4\u51f0HD", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u524d\u7f6e", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u534e\u4e3a", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u536b\u65af\u740625 F 1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u53cc\u6444", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u540e\u7f6e26mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": 1.5, + "model": "\u552f\u5353\u4ed5 20mm F2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u552f\u5353\u4ed5 56mm F1.7", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u552f\u5353\u4ed523e1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u552f\u5353\u4ed575mm f1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u552f\u5353\u4ed5AF85/1.8 II", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u552f\u5353\u58eb23 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u552f\u5353\u58eb751.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u5951\u536135mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u5965\u6797\u5df4\u65af 17F1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u5965\u6797\u5df4\u65af1250", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u5965\u6797\u5df4\u65af40-150", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u5bbd", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u5bbe\u5f97645 75 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u5c3c\u5eb724-200f4-6.3", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u5ca9\u77f3\u661f10mmF8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u5ca9\u77f3\u661f50 f2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u5ca9\u77f3\u661f50F2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u5ca9\u77f3\u661f50MMF2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u5e83\u89d2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u601d\u951035mmT1.2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u661f\u800010mm f5.6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u661f\u800050 F1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u661f\u80009mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u6700\u5e7f", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u6807\u51c6", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u6807\u51c6\u955c\u5934", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u68ee\u517b-20mmT1.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u68ee\u517b20mm T1.9", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u6c38\u8bfaFE50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u6df1\u5149 35mm F0.95", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u7984\u6765", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u7d22\u5c3ce50", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u7ea2\u7c73K30pro\u4e3b\u6444\u6a2a\u5c4f", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u7ea2\u7c73K30pro\u5e7f\u89d2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u7ef4\u5353\u4ed520 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u7f8e\u79d116MM", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u7f8e\u79d135mm T2.1", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u7f8e\u79d150mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u7f8e\u80fd\u8fbeAuto.Rokkor- PF 58/1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u8001\u86d9 6mm M43", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u8001\u86d9 M43 18mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u817e\u9f9911-20", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u817e\u9f9911-20 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u817e\u9f9917-70", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u817e\u9f9917-70 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u817e\u9f9917-70 35mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u817e\u9f9918300", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u817e\u9f9920 2.8", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u817e\u9f9924mmF2.8 Di III", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u817e\u9f9928-75", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u81ea\u6d4b\u817e\u9f9911-20 16mm", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u81ea\u6d4b\u817e\u9f9917-70 17mm 4k", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u82f9\u679c", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u8d85\u5bbd", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u8d85\u5e7f\u89d2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u8d85\u5e83\u89d2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u9002\u9a6c56", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u9002\u9a6c56 1.4", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u901a\u5e38\u5e83\u89d2", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u94ed\u5320\u5149\u5b6650mm 0.98", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "", + "crop_factor": null, + "model": "\u9ad8\u6e0560fps", + "mounts": [], + "source": [ + "gyroflow" + ] + }, + { + "brand": "7Artisans", + "crop_factor": 1.0, + "model": "7Artisans 18mm f/5.6 Full Frame", + "mounts": [ + "Leica L", + "Nikon Z", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "7Artisans", + "crop_factor": 1.534, + "model": "7Artisans 18mm f/6.3 II", + "mounts": [ + "Fujifilm X", + "Sony E", + "Nikon Z", + "Leica L", + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "7Artisans", + "crop_factor": 1.534, + "model": "7Artisans 35mm f/0.95", + "mounts": [ + "Sony E", + "Nikon Z", + "Fujifilm X", + "Canon EF-M", + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "7Artisans", + "crop_factor": 1.534, + "model": "7Artisans 35mm f/1.4 APS-C (manual)", + "mounts": [ + "Sony E", + "Nikon Z", + "Fujifilm X", + "Canon EF-M", + "Leica L", + "Canon RF", + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "7Artisans", + "crop_factor": 1.5, + "model": "7Artisans 60mm f/2.8 II APS-C", + "mounts": [ + "Nikon Z", + "Fujifilm X", + "Sony E", + "Leica L", + "Canon EF-M", + "Canon RF", + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "AEE", + "crop_factor": 6.0, + "model": "fixed lens", + "mounts": [ + "aeeDV" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Apple", + "crop_factor": 6.118, + "model": "fixed lens", + "mounts": [ + "iPhoneXS" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Apple", + "crop_factor": 8.667, + "model": "fixed lens", + "mounts": [ + "iPhoneXStele" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Arsenal", + "crop_factor": 1.523, + "model": "MC Volna-3 80mm f/2.8", + "mounts": [ + "Kiev 88" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "AstrHori", + "crop_factor": 1.534, + "model": "AstrHori 10mm f/8", + "mounts": [ + "Fujifilm X", + "Sony E", + "Nikon Z", + "Leica L", + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Beroflex", + "crop_factor": 1.531, + "model": "Beroflex 1:8 500mm", + "mounts": [ + "T2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Beroflex", + "crop_factor": 1.0, + "model": "Beroflex 400mm f/6.3", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.005, + "model": "Canon EF 100-200mm f/4.5A", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 100-300mm f/4.5-5.6 USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 100-300mm f/5.6L", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 100-400mm f/4.5-5.6L IS II USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 100-400mm f/4.5-5.6L IS II USM + 1.4\u00d7 ext.", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.611, + "model": "Canon EF 100-400mm f/4.5-5.6L IS USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.611, + "model": "Canon EF 100mm f/2.8 Macro", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 100mm f/2.8 Macro USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 100mm f/2.8L Macro IS USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 11-24mm f/4L USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 135mm f/2 L USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.267, + "model": "Canon EF 135mm f/2.8 Soft Focus", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 14mm f/2.8L II USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 15mm f/2.8 Fisheye", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 16-35mm f/2.8L II USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 16-35mm f/2.8L III USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 16-35mm f/2.8L USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 16-35mm f/4L IS USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 17-35mm f/2.8L USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 17-40mm f/4L USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 20-35mm f/3.5-4.5 USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.611, + "model": "Canon EF 200mm f/2.8L II USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 200mm f/2.8L USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 20mm f/2.8 USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.613, + "model": "Canon EF 22-55mm f/4-5.6 USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 24-105mm f/3.5-5.6 IS STM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 24-105mm f/4L IS II USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 24-105mm f/4L IS USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 24-70mm f/2.8L II USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 24-70mm f/2.8L USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 24-70mm f/4L IS USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 24-85mm f/3.5-4.5 USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.005, + "model": "Canon EF 24mm f/1.4L II USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 24mm f/1.4L USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 24mm f/2.8", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.613, + "model": "Canon EF 24mm f/2.8 IS USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 28-105mm f/3.5-4.5 II USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 28-135mm f/3.5-5.6 IS USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 28-300mm f/3.5-5.6L IS USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.611, + "model": "Canon EF 28-70mm f/2.8L USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 28-80mm f/3.5-5.6 USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.613, + "model": "Canon EF 28-80mm f/3.5-5.6 USM IV", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.61, + "model": "Canon EF 28-90mm f/4-5.6 USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.611, + "model": "Canon EF 28mm f/1.8", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 28mm f/1.8 USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.613, + "model": "Canon EF 28mm f/2.8", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 300mm f/2.8L IS II USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 300mm f/2.8L IS II USM + EF 1.4\u00d7 ext. III", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 300mm f/2.8L IS II USM + EF 2.0\u00d7 ext. III", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 300mm f/2.8L IS USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.61, + "model": "Canon EF 300mm f/2.8L IS USM + EF 1.4\u00d7 ext. II", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 300mm f/2.8L IS USM + EF 1.4\u00d7 ext. III", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.61, + "model": "Canon EF 300mm f/2.8L IS USM + EF 2.0\u00d7 ext. II", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 300mm f/2.8L IS USM + EF 2.0\u00d7 ext. III", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.605, + "model": "Canon EF 300mm f/4L IS USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.605, + "model": "Canon EF 300mm f/4L IS USM + 1.4\u00d7 ext.", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.005, + "model": "Canon EF 35-105mm f/3.5-4.5", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.611, + "model": "Canon EF 35-105mm f/4.5-5.6", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.611, + "model": "Canon EF 35-135mm f/4-5.6 USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.611, + "model": "Canon EF 35-70mm f/3.5-4.5", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.611, + "model": "Canon EF 35-80mm f/4-5.6 III", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.605, + "model": "Canon EF 35mm f/1.4L II USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 35mm f/1.4L USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 35mm f/2", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.005, + "model": "Canon EF 35mm f/2 IS USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.005, + "model": "Canon EF 400mm f/5.6L USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.005, + "model": "Canon EF 400mm f/5.6L USM + EF 1.4\u00d7 ext.", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 40mm f/2.8 STM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.622, + "model": "Canon EF 50-200mm f/3.5-4.5L", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 500mm f/4L IS II USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 500mm f/4L IS II USM + EF 1.4\u00d7 ext. III", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 500mm f/4L IS II USM + EF 2.0\u00d7 ext. III", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 50mm f/1.2L USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 50mm f/1.4 USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.267, + "model": "Canon EF 50mm f/1.8", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 50mm f/1.8 II", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 50mm f/1.8 STM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 50mm f/2.5 Compact Macro", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.611, + "model": "Canon EF 55-200mm f/4.5-5.6", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 70-200mm f/2.8L IS II USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 70-200mm f/2.8L IS II USM + EF 2\u00d7 III ext.", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 70-200mm f/2.8L IS USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 70-200mm f/2.8L IS USM + EF 1.4\u00d7 ext.", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.62, + "model": "Canon EF 70-200mm f/2.8L IS USM + EF 2\u00d7 II ext.", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 70-200mm f/2.8L USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 70-200mm f/4L IS USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 70-200mm f/4L USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 70-200mm f/4L USM + EF 1.4\u00d7 ext.", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 70-210mm f/3.5-4.5 USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.005, + "model": "Canon EF 70-210mm f/4", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 70-300mm f/4-5.6 IS II USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.611, + "model": "Canon EF 70-300mm f/4-5.6 IS USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.605, + "model": "Canon EF 70-300mm f/4-5.6L IS USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 70-300mm f/4.5-5.6 DO IS USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.005, + "model": "Canon EF 75-300mm f/4-5.6 III USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.611, + "model": "Canon EF 75-300mm f/4-5.6 IS USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.613, + "model": "Canon EF 75-300mm F4-5.6 III", + "mounts": [ + "Canon EF-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 8-15mm f/4L Fisheye USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 80-200mm f/2.8L", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 80-200mm f/4.5-5.6", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 85mm f/1.2L II USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 85mm f/1.2L USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 85mm f/1.4L IS USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon EF 85mm f/1.8 USM", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.005, + "model": "Canon EF 90-300mm f/4.5-5.6", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.613, + "model": "Canon EF-M 11-22mm f/4-5.6 IS STM", + "mounts": [ + "Canon EF-M" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.613, + "model": "Canon EF-M 15-45mm f/3.5-6.3 IS STM", + "mounts": [ + "Canon EF-M" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.613, + "model": "Canon EF-M 18-55mm f/3.5-5.6 IS STM", + "mounts": [ + "Canon EF-M" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.613, + "model": "Canon EF-M 22mm f/2 STM", + "mounts": [ + "Canon EF-M" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.613, + "model": "Canon EF-M 28mm f/3.5 Macro IS STM", + "mounts": [ + "Canon EF-M" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.613, + "model": "Canon EF-M 32mm f/1.4 STM", + "mounts": [ + "Canon EF-M" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.613, + "model": "Canon EF-M 55-200mm f/4.5-6.3 IS STM", + "mounts": [ + "Canon EF-M" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.62, + "model": "Canon EF-S 10-18mm f/4.5-5.6 IS STM", + "mounts": [ + "Canon EF-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.613, + "model": "Canon EF-S 10-22mm f/3.5-4.5 USM", + "mounts": [ + "Canon EF-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.613, + "model": "Canon EF-S 15-85mm f/3.5-5.6 IS USM", + "mounts": [ + "Canon EF-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.622, + "model": "Canon EF-S 17-55mm f/2.8 IS USM", + "mounts": [ + "Canon EF-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.611, + "model": "Canon EF-S 17-85mm f/4-5.6 IS USM", + "mounts": [ + "Canon EF-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.613, + "model": "Canon EF-S 18-135mm f/3.5-5.6 IS", + "mounts": [ + "Canon EF-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.613, + "model": "Canon EF-S 18-135mm f/3.5-5.6 IS STM", + "mounts": [ + "Canon EF-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.605, + "model": "Canon EF-S 18-135mm f/3.5-5.6 IS USM", + "mounts": [ + "Canon EF-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.62, + "model": "Canon EF-S 18-200mm f/3.5-5.6 IS", + "mounts": [ + "Canon EF-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.611, + "model": "Canon EF-S 18-55mm f/3.5-5.6", + "mounts": [ + "Canon EF-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.622, + "model": "Canon EF-S 18-55mm f/3.5-5.6 II", + "mounts": [ + "Canon EF-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.611, + "model": "Canon EF-S 18-55mm f/3.5-5.6 III", + "mounts": [ + "Canon EF-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.622, + "model": "Canon EF-S 18-55mm f/3.5-5.6 IS", + "mounts": [ + "Canon EF-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.611, + "model": "Canon EF-S 18-55mm f/3.5-5.6 IS II", + "mounts": [ + "Canon EF-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.613, + "model": "Canon EF-S 18-55mm f/3.5-5.6 IS STM", + "mounts": [ + "Canon EF-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.613, + "model": "Canon EF-S 18-55mm f/4-5.6 IS STM", + "mounts": [ + "Canon EF-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.622, + "model": "Canon EF-S 24mm f/2.8 STM", + "mounts": [ + "Canon EF-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.611, + "model": "Canon EF-S 55-250mm f/4-5.6 IS", + "mounts": [ + "Canon EF-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.611, + "model": "Canon EF-S 55-250mm f/4-5.6 IS II", + "mounts": [ + "Canon EF-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.611, + "model": "Canon EF-S 55-250mm f/4-5.6 IS STM", + "mounts": [ + "Canon EF-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.611, + "model": "Canon EF-S 60mm f/2.8 Macro USM", + "mounts": [ + "Canon EF-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.534, + "model": "Canon FD 200mm f/2.8 S.S.C.", + "mounts": [ + "Canon FD" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon FD 50mm f/1.4 S.S.C.", + "mounts": [ + "Canon FD" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 2.0, + "model": "Canon FDn 100mm 1:2.8", + "mounts": [ + "Canon FD" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.534, + "model": "Canon FDn 100mm f/2.8", + "mounts": [ + "Canon FD" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.534, + "model": "Canon FDn 135mm 1:2.8", + "mounts": [ + "Canon FD" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.534, + "model": "Canon FDn 200mm 1:4", + "mounts": [ + "Canon FD" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.529, + "model": "Canon FDn 24mm 1:2.8", + "mounts": [ + "Canon FD" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.534, + "model": "Canon FDn 28mm f/2.8", + "mounts": [ + "Canon FD" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 2.0, + "model": "Canon FDn 50mm 1:1.4", + "mounts": [ + "Canon FD" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.529, + "model": "Canon FDn 50mm 1:1.8", + "mounts": [ + "Canon FD" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.529, + "model": "Canon Lens FL 135mm F3.5", + "mounts": [ + "Canon FL" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.529, + "model": "Canon Lens FL 50mm F1.4", + "mounts": [ + "Canon FL" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 10-20mm f/4L IS STM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 100-400mm F5.6-8 IS USM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 100-500mm F4.5-7.1L IS USM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 100mm F2.8L Macro IS USM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 135mm F1.8L IS USM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 14-35mm F4 L IS USM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 15-30mm F4.5-6.3 IS STM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 15-35mm F2.8L IS USM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 16mm F2.8 STM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.613, + "model": "Canon RF 200-800mm F6.3-9 IS USM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 24-105mm F4-7.1 IS STM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 24-105mm F4L IS USM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 24-240mm F4-6.3 IS USM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 24-50mm F4.5-6.3 IS STM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 24-70mm F2.8L IS USM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 24mm F1.4 L VCM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.613, + "model": "Canon RF 24mm F1.8 MACRO IS STM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 28-70mm F2 L USM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 28-70mm F2.8 IS STM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 28mm F2.8 STM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 35mm F1.4 L VCM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 35mm F1.8 MACRO IS STM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 45mm F1.2 STM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 50mm F1.2 L USM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 50mm F1.8 STM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.613, + "model": "Canon RF 600mm F11 IS STM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 70-200mm F2.8L IS USM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 70-200mm F4L IS USM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 800mm F11 IS STM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 85mm F1.2L USM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon RF 85mm F2 MACRO IS STM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.61, + "model": "Canon RF-S 10-18mm F4.5-6.3 IS STM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.613, + "model": "Canon RF-S 18-150mm F3.5-6.3 IS STM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.613, + "model": "Canon RF-S 18-45mm F4.5-6.3 IS STM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.613, + "model": "Canon RF-S55-210mm F5-7.1 IS STM", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon TS-E 24mm f/3.5L", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon TS-E 45mm f/2.8", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.0, + "model": "Canon TS-E 90mm f/2.8", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 3.933, + "model": "fixed lens", + "mounts": [ + "canonPro1" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.843, + "model": "fixed lens", + "mounts": [ + "canonG3" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.843, + "model": "fixed lens", + "mounts": [ + "canonG2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.843, + "model": "fixed lens", + "mounts": [ + "canonG1" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.63, + "model": "fixed lens", + "mounts": [ + "canonG12" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.85, + "model": "fixed lens", + "mounts": [ + "canonG1X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.65, + "model": "fixed lens", + "mounts": [ + "canonG15" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.8, + "model": "fixed lens", + "mounts": [ + "canonSD500" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.7, + "model": "fixed lens", + "mounts": [ + "canonSD950" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 6.05, + "model": "fixed lens", + "mounts": [ + "canonSD200" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 6.5, + "model": "fixed lens", + "mounts": [ + "canonIxusII" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.843, + "model": "fixed lens", + "mounts": [ + "canonIxusI" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.843, + "model": "fixed lens", + "mounts": [ + "canonIxus400" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.843, + "model": "fixed lens", + "mounts": [ + "canonS70" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.843, + "model": "fixed lens", + "mounts": [ + "canonS30" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.8, + "model": "fixed lens", + "mounts": [ + "canonA610" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 6.05, + "model": "fixed lens", + "mounts": [ + "canonA510" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.85, + "model": "fixed lens", + "mounts": [ + "canonA80" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 6.5, + "model": "fixed lens", + "mounts": [ + "canonA70" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 6.0, + "model": "fixed lens", + "mounts": [ + "canonS2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 6.56, + "model": "fixed lens", + "mounts": [ + "canonS1" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 5.28, + "model": "fixed lens", + "mounts": [ + "canonPro90" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 6.0, + "model": "fixed lens", + "mounts": [ + "canonS5" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 6.02, + "model": "fixed lens", + "mounts": [ + "canonIxus80IS" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.67, + "model": "fixed lens", + "mounts": [ + "canonS90" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.67712, + "model": "fixed lens", + "mounts": [ + "canonA650IS" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.554, + "model": "fixed lens", + "mounts": [ + "canonG11" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 5.62, + "model": "fixed lens", + "mounts": [ + "canonSX150IS" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 5.6, + "model": "fixed lens", + "mounts": [ + "canonSX220HS" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 5.61, + "model": "fixed lens", + "mounts": [ + "canonA1200" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 6.03, + "model": "fixed lens", + "mounts": [ + "canonA720IS" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.79, + "model": "fixed lens", + "mounts": [ + "canonA640" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.62, + "model": "fixed lens", + "mounts": [ + "canonS120" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.67, + "model": "fixed lens", + "mounts": [ + "canonS95" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.93, + "model": "fixed lens", + "mounts": [ + "canonG1X2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 1.613, + "model": "fixed lens", + "mounts": [ + "canonG1X3" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 2.73, + "model": "fixed lens", + "mounts": [ + "canonG5X2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.843, + "model": "fixed lens", + "mounts": [ + "canonG7" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 2.72, + "model": "fixed lens", + "mounts": [ + "canonG7X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 2.72, + "model": "fixed lens", + "mounts": [ + "canonG9X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.62, + "model": "fixed lens", + "mounts": [ + "canonS100" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 5.58, + "model": "fixed lens", + "mounts": [ + "canonIxus125HS" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 5.58, + "model": "fixed lens", + "mounts": [ + "canonSX510HS" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.62, + "model": "fixed lens", + "mounts": [ + "canonS110" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.67, + "model": "fixed lens", + "mounts": [ + "canonG16" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 5.6, + "model": "fixed lens", + "mounts": [ + "canonSX10IS" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 5.61, + "model": "fixed lens", + "mounts": [ + "canonSX50HS" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 5.61, + "model": "fixed lens", + "mounts": [ + "canonSX60HS" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 2.727, + "model": "fixed lens", + "mounts": [ + "canonG3X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 5.58, + "model": "fixed lens", + "mounts": [ + "canonIxy220F" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.8, + "model": "fixed lens, with CHDK's DNG", + "mounts": [ + "canonA610" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 5.62, + "model": "fixed lens, with CHDK's DNG", + "mounts": [ + "canonSX150IS" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 5.6, + "model": "fixed lens, with CHDK's DNG", + "mounts": [ + "canonSX220HS", + "canonSX230HS" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 5.56, + "model": "fixed lens, with CHDK's DNG", + "mounts": [ + "canonSX260HS" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 5.58, + "model": "fixed lens, with CHDK's DNG", + "mounts": [ + "canonIxus220HS" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 5.6, + "model": "fixed lens, with CHDK's DNG", + "mounts": [ + "canonA4000IS" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 5.58, + "model": "fixed lens, with CHDK's DNG", + "mounts": [ + "canonSX510HS" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 5.6, + "model": "fixed lens, with CHDK's DNG", + "mounts": [ + "canonSX160IS" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 5.39, + "model": "fixed lens, with CHDK's DNG", + "mounts": [ + "canonA495" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 5.58, + "model": "fixed lens, with CHDK's DNG", + "mounts": [ + "canonSX30IS" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 5.6, + "model": "fixed lens, with CHDK's DNG", + "mounts": [ + "canonSX710HS" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.843, + "model": "fixed lens, with Geobartic 0.5\u00d7 converter", + "mounts": [ + "canonG2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.843, + "model": "fixed lens, with TC-DC10 2\u00d7 converter", + "mounts": [ + "canonS70" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 6.0, + "model": "fixed lens, with TC-DC58B", + "mounts": [ + "canonS2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 6.0, + "model": "fixed lens, with TC-DC58B", + "mounts": [ + "canonS5" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.85, + "model": "fixed lens, with Tiffen 0.56\u00d7 converter", + "mounts": [ + "canonA80" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.85, + "model": "fixed lens, with Tiffen 2\u00d7 converter", + "mounts": [ + "canonA80" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.843, + "model": "fixed lens, with Tiffen MegaPlus 0.56 converter", + "mounts": [ + "canonIxus400" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.843, + "model": "fixed lens, with WC-DC58N", + "mounts": [ + "canonG3" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Canon", + "crop_factor": 4.79, + "model": "fixed lens, with WC-DC58N", + "mounts": [ + "canonA640" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 1.68, + "model": "fixed lens", + "mounts": [ + "sonyR1" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 6.0, + "model": "fixed lens", + "mounts": [ + "sonyH1" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 3.933, + "model": "fixed lens", + "mounts": [ + "sony828" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 3.933, + "model": "fixed lens", + "mounts": [ + "sony707" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 4.8, + "model": "fixed lens", + "mounts": [ + "sonyW1" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 4.843, + "model": "fixed lens", + "mounts": [ + "sonyV1" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 5.65, + "model": "fixed lens", + "mounts": [ + "sonyT1" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 4.843, + "model": "fixed lens", + "mounts": [ + "sonyS85" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 6.5, + "model": "fixed lens", + "mounts": [ + "sonyS60" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 1.0, + "model": "fixed lens", + "mounts": [ + "sonyRX1" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 3.933, + "model": "fixed lens, at 2 feet lens-to-subject", + "mounts": [ + "sony828" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 3.933, + "model": "fixed lens, macro at 1 inch lens-to-subject", + "mounts": [ + "sony707" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 3.933, + "model": "fixed lens, macro at 12 inches lens-to-subject", + "mounts": [ + "sony707" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 3.933, + "model": "fixed lens, macro at 16 inches lens-to-subject", + "mounts": [ + "sony707" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 3.933, + "model": "fixed lens, macro at 2 inches lens-to-subject", + "mounts": [ + "sony707" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 3.933, + "model": "fixed lens, macro at 20 inches lens-to-subject", + "mounts": [ + "sony707" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 3.933, + "model": "fixed lens, macro at 24 inches lens-to-subject", + "mounts": [ + "sony707" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 3.933, + "model": "fixed lens, macro at 32 inches lens-to-subject", + "mounts": [ + "sony707" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 3.933, + "model": "fixed lens, macro at 4 inches lens-to-subject", + "mounts": [ + "sony707" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 3.933, + "model": "fixed lens, macro at 6 inches lens-to-subject", + "mounts": [ + "sony707" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 3.933, + "model": "fixed lens, macro at 8 inches lens-to-subject", + "mounts": [ + "sony707" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 3.933, + "model": "fixed lens, with Sakar 1858W", + "mounts": [ + "sony707" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 4.843, + "model": "fixed lens, with VCL-DEH07V converter", + "mounts": [ + "sonyV1" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 4.843, + "model": "fixed lens, with VCL-DEH17V converter", + "mounts": [ + "sonyV1" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 6.0, + "model": "fixed lens, with VCL-DH0758 0.7\u00d7 converter", + "mounts": [ + "sonyH1" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 6.0, + "model": "fixed lens, with VCL-DH1758 1.7\u00d7 converter", + "mounts": [ + "sonyH1" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 3.933, + "model": "fixed lens, with VCL-HGD0758 wide angle", + "mounts": [ + "sony707" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Carl Zeiss", + "crop_factor": 4.843, + "model": "fixed lens, with VCL-MHG07a converter", + "mounts": [ + "sonyS85" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Casio", + "crop_factor": 4.8, + "model": "fixed lens", + "mounts": [ + "casioZ750" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Casio", + "crop_factor": 4.65, + "model": "fixed lens", + "mounts": [ + "casioP600" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Casio", + "crop_factor": 6.05, + "model": "fixed lens", + "mounts": [ + "casioZ4" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Casio", + "crop_factor": 4.8, + "model": "fixed lens", + "mounts": [ + "casioQV3500" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Casio", + "crop_factor": 4.8, + "model": "fixed lens, with Raynox 0.66\u00d7", + "mounts": [ + "casioQV3500" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Casio", + "crop_factor": 4.65, + "model": "fixed lens, with WC-DC58A", + "mounts": [ + "casioP600" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Chinon", + "crop_factor": 1.0, + "model": "Auto Chinon 35mm f/2.8", + "mounts": [ + "M42", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Chinon", + "crop_factor": 1.0, + "model": "Chinon 75-205mm f/3.8", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Contax", + "crop_factor": 1.534, + "model": "Contax G Planar T* 2/35", + "mounts": [ + "Contax G" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Contax", + "crop_factor": 1.0, + "model": "Zeiss 21mm f/2.8 Distagon", + "mounts": [ + "Contax/Yashica" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Contax", + "crop_factor": 1.0, + "model": "Zeiss 28mm f/2.8 Distagon", + "mounts": [ + "Contax/Yashica" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Cosina", + "crop_factor": 1.526, + "model": "24mm 1:2.0 Macro", + "mounts": [ + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Cosina", + "crop_factor": 1.0, + "model": "Cosina 19-35mm f/3.5-4.5 MC", + "mounts": [ + "Canon EF", + "Nikon F", + "Sony Alpha", + "Pentak K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Cosina", + "crop_factor": 1.538, + "model": "Cosina Cosinon-S 50mm 1:2", + "mounts": [ + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Cosina", + "crop_factor": 1.53, + "model": "Cosinon-T 135mm 1:3.5", + "mounts": [ + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Cosina", + "crop_factor": 1.53, + "model": "Cosinon-W 28mm 1:2.8", + "mounts": [ + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Cosina", + "crop_factor": 1.53, + "model": "Cosinon-W 35mm 1:2.8", + "mounts": [ + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "DJI", + "crop_factor": 2.0, + "model": "DJI MFT 15mm F1.7 ASPH", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "DJI", + "crop_factor": 2.63, + "model": "FC3411 fixed lens", + "mounts": [ + "djiFC3411" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "DJI", + "crop_factor": 3.6, + "model": "FC3582 fixed lens", + "mounts": [ + "djiFC3582" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "DJI", + "crop_factor": 2.73, + "model": "FC6310R fixed lens", + "mounts": [ + "djiFC6310R" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "DJI", + "crop_factor": 6.0, + "model": "fixed lens", + "mounts": [ + "dijPhantomVisionFC200" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "DJI", + "crop_factor": 5.5, + "model": "fixed lens", + "mounts": [ + "dijPhantom3ProFC300X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "DJI", + "crop_factor": 5.64, + "model": "fixed lens", + "mounts": [ + "djiMavicProFC220" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "DJI", + "crop_factor": 2.73, + "model": "fixed lens", + "mounts": [ + "djiFC6310" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "DJI", + "crop_factor": 5.6, + "model": "fixed lens", + "mounts": [ + "djiMavicAirFC2103" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fotasy", + "crop_factor": 1.529, + "model": "Fotasy M3517 35mm f/1.7", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujian", + "crop_factor": 2.0, + "model": "35mm f/1.7", + "mounts": [ + "C" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 4.5, + "model": "fixed lens", + "mounts": [ + "fujiF11" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 4.48, + "model": "fixed lens", + "mounts": [ + "fujiS9000" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 6.491, + "model": "fixed lens", + "mounts": [ + "fujiS5500" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 4.487, + "model": "fixed lens", + "mounts": [ + "fuji602" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 4.487, + "model": "fixed lens", + "mounts": [ + "fuji601" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 4.5, + "model": "fixed lens", + "mounts": [ + "fuji810" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 6.3333333, + "model": "fixed lens", + "mounts": [ + "fuji2800" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 4.341, + "model": "fixed lens", + "mounts": [ + "fujiF200exr" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.523, + "model": "fixed lens", + "mounts": [ + "fujix100" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 3.93, + "model": "fixed lens", + "mounts": [ + "fujix10" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 5.71, + "model": "fixed lens", + "mounts": [ + "fujihs20exr" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 5.43, + "model": "fixed lens", + "mounts": [ + "fujif770exr" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 6.03, + "model": "fixed lens", + "mounts": [ + "fujiS5600" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 3.91, + "model": "fixed lens", + "mounts": [ + "fujiXQ1" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 6.03, + "model": "fixed lens", + "mounts": [ + "fujiA370" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 3.93, + "model": "fixed lens", + "mounts": [ + "fujiXS1" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 0.8, + "model": "fixed lens", + "mounts": [ + "fujiGFX100RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.53, + "model": "fixed lens, or with WCL/TCL", + "mounts": [ + "fujix100v2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.523, + "model": "fixed lens, with TCL-X100", + "mounts": [ + "fujix100" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 4.5, + "model": "fixed lens, with WL-FXE01 (full wide)", + "mounts": [ + "fuji810" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 0.79, + "model": "GF110mmF2 R LM WR", + "mounts": [ + "Fujifilm G" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 0.79, + "model": "GF23mmF4 R LM WR", + "mounts": [ + "Fujifilm G" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 0.79, + "model": "GF35-70mmF4.5-5.6 WR", + "mounts": [ + "Fujifilm G" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 0.79, + "model": "GF45mmF2.8 R WR", + "mounts": [ + "Fujifilm G" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 0.79, + "model": "GF50mmF3.5 R LM WR", + "mounts": [ + "Fujifilm G" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 0.79, + "model": "GF55mmF1.7 R WR", + "mounts": [ + "Fujifilm G" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 0.79, + "model": "GF80mmF1.7 R WR", + "mounts": [ + "Fujifilm G" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.5375, + "model": "X70 & compatibles (Standard)", + "mounts": [ + "fujix70" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.529, + "model": "XC 15-45mm f/3.5-5.6 OIS PZ", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.529, + "model": "XC 16-50mm f/3.5-5.6 OIS", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.529, + "model": "XC 16-50mm f/3.5-5.6 OIS II", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.528, + "model": "XC 35mm f/2", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.529, + "model": "XC 50-230mm f/4.5-6.7 OIS", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.529, + "model": "XC 50-230mm f/4.5-6.7 OIS II", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.529, + "model": "XF 10-24mm f/4 R OIS", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.529, + "model": "XF 10-24mm f/4 R OIS WR", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.529, + "model": "XF 100-400mm f/4.5-5.6 R LM OIS WR", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.529, + "model": "XF 100-400mm f/4.5-5.6 R LM OIS WR + 1.4\u00d7 conv.", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.529, + "model": "XF 14mm f/2.8 R", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.534, + "model": "XF 16-50mm f/2.8-4.8 R LM WR", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.529, + "model": "XF 16-55mm f/2.8 R LM WR", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.534, + "model": "XF 16-55mm f/2.8 R LM WR II", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.534, + "model": "XF 16-80mm f/4 R OIS WR", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.529, + "model": "XF 16mm f/1.4 R WR", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.529, + "model": "XF 16mm f/2.8 R WR", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.529, + "model": "XF 18-135mm f/3.5-5.6R LM OIS WR", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.529, + "model": "XF 18-55mm f/2.8-4 R LM OIS", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.529, + "model": "XF 18mm f/2 R", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.529, + "model": "XF 23mm f/1.4 R", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.53, + "model": "XF 23mm f/1.4 R LM WR", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.529, + "model": "XF 23mm f/2 R WR", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.529, + "model": "XF 27mm f/2.8 R WR", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.534, + "model": "XF 30mm f/2.8 R LM WR Macro", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.534, + "model": "XF 33mm f/1.4 R LM WR", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.529, + "model": "XF 35mm f/1.4 R", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.528, + "model": "XF 35mm f/2 R WR", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.529, + "model": "XF 50-140mm f/2.8 R LM OIS WR", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.528, + "model": "XF 50mm f/2 R WR", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.529, + "model": "XF 55-200mm f/3.5-4.8 R LM OIS", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.529, + "model": "XF 56mm f/1.2 R", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.529, + "model": "XF 56mm f/1.2 R APD", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.534, + "model": "XF 56mm f/1.2 R WR", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.529, + "model": "XF 60mm f/2.4 R Macro", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.534, + "model": "XF 70-300mm f/4-5.6 R LM OIS WR", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.534, + "model": "XF 70-300mm f/4-5.6 R LM OIS WR + 1.4x", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.534, + "model": "XF 90mm f/2 R LM WR", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Fujifilm", + "crop_factor": 1.53, + "model": "XF10 & compatibles (Standard)", + "mounts": [ + "fujixf10" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Generic", + "crop_factor": 1.0, + "model": "Fisheye 8-20mm f/1.0", + "mounts": [ + "Generic" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Generic", + "crop_factor": 1.0, + "model": "Panoramic 10-100mm f/1.0", + "mounts": [ + "Generic" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Generic", + "crop_factor": 1.0, + "model": "Rectilinear 10-1000mm f/1.0", + "mounts": [ + "Generic" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "GitUp", + "crop_factor": 5.57, + "model": "fixed lens", + "mounts": [ + "git2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "GoPro", + "crop_factor": 6.4, + "model": "fixed lens", + "mounts": [ + "goProHero" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "GoPro", + "crop_factor": 5.42, + "model": "fixed lens", + "mounts": [ + "goProHero3+" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "GoPro", + "crop_factor": 7.66, + "model": "fixed lens", + "mounts": [ + "goProHero4" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "GoPro", + "crop_factor": 5.0, + "model": "fixed lens", + "mounts": [ + "goProHero4black" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "GoPro", + "crop_factor": 5.5, + "model": "fixed lens", + "mounts": [ + "goProHero10bl" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "GoPro", + "crop_factor": 5.54, + "model": "fixed lens", + "mounts": [ + "goProHero11bl" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Hasselblad", + "crop_factor": 2.8, + "model": "fixed lens", + "mounts": [ + "l1d20c" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Hasselblad", + "crop_factor": 1.953, + "model": "fixed lens", + "mounts": [ + "l2d20c" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Honor", + "crop_factor": 8.235, + "model": "fixed lens", + "mounts": [ + "dlil22" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Huawei", + "crop_factor": 4.86, + "model": "fixed lens", + "mounts": [ + "vogl29" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Huawei", + "crop_factor": 4.55, + "model": "fixed lens", + "mounts": [ + "cltl29" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Huawei", + "crop_factor": 6.88, + "model": "fixed lens", + "mounts": [ + "waslx1a" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Irix", + "crop_factor": 1.0, + "model": "Irix 11mm f/4 G", + "mounts": [ + "Nikon F AF", + "Canon EF", + "Pentax KA" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Irix", + "crop_factor": 1.0, + "model": "Irix 15mm f/2.4", + "mounts": [ + "Canon EF", + "Nikon F", + "Pentax KA" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Kipon", + "crop_factor": 1.0, + "model": "Elegant 35mm F/2.4", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "KMZ", + "crop_factor": 1.0, + "model": "Helios-40 85mm f/1.5", + "mounts": [ + "M39", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "KMZ", + "crop_factor": 1.0, + "model": "Helios-44 58mm 1:2", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "KMZ", + "crop_factor": 1.0, + "model": "Industar-50-2 3.5/50", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "KMZ", + "crop_factor": 1.0, + "model": "Jupiter-37AM MC 3.5/135", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "KMZ", + "crop_factor": 1.538, + "model": "MC Helios-44M-4 58mm 1:2", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "KMZ", + "crop_factor": 1.531, + "model": "MC MTO 11CA 10/1000", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "KMZ", + "crop_factor": 1.523, + "model": "MIR-1B 37mm f/2.8", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Kodak", + "crop_factor": 6.593, + "model": "fixed lens", + "mounts": [ + "kodakCX6330" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Konica Minolta", + "crop_factor": 6.05, + "model": "fixed lens", + "mounts": [ + "kmZ3" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Konica Minolta", + "crop_factor": 6.03, + "model": "fixed lens", + "mounts": [ + "kmZ2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Konica Minolta", + "crop_factor": 6.545, + "model": "fixed lens", + "mounts": [ + "kmZ1" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Konica Minolta", + "crop_factor": 6.05, + "model": "fixed lens", + "mounts": [ + "kmZ10" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Konica Minolta", + "crop_factor": 3.933, + "model": "fixed lens", + "mounts": [ + "kmD7" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Konica Minolta", + "crop_factor": 6.5, + "model": "fixed lens", + "mounts": [ + "kmXt" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Konica Minolta", + "crop_factor": 6.144, + "model": "fixed lens", + "mounts": [ + "kmG400" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Konica Minolta", + "crop_factor": 3.933, + "model": "fixed lens, with ACW-100 converter", + "mounts": [ + "kmD7" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Konica Minolta", + "crop_factor": 6.03, + "model": "fixed lens, with ZCW-100", + "mounts": [ + "kmZ2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Konica Minolta", + "crop_factor": 6.545, + "model": "fixed lens, with ZCW-100", + "mounts": [ + "kmZ1" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Konica Minolta", + "crop_factor": 6.05, + "model": "fixed lens, with ZCW-200", + "mounts": [ + "kmZ10" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Konica Minolta", + "crop_factor": 1.526, + "model": "KM 20mm f/2.8", + "mounts": [ + "Minolta AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Konica Minolta", + "crop_factor": 1.526, + "model": "KM 24-105mm f/3.5-4.5 AF D", + "mounts": [ + "Minolta AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Konica Minolta", + "crop_factor": 1.526, + "model": "KM 28-100mm f/3.5-5.6 AF D", + "mounts": [ + "Minolta AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Konica Minolta", + "crop_factor": 1.526, + "model": "KM 80-200mm f/2.8", + "mounts": [ + "Minolta AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 1.0, + "model": "APO-Summicron 1:2/43 Asph.", + "mounts": [ + "leicaQ343" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 1.0, + "model": "APO-Summicron-M 1:2/75 Asph. (11673/11701)", + "mounts": [ + "Leica M" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 1.0, + "model": "APO-Summicron-SL 1:2/35 Asph.", + "mounts": [ + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 1.0, + "model": "APO-Summicron-SL 1:2/50 Asph.", + "mounts": [ + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 1.0, + "model": "Elmarit-M 1:2.8/28 Asph.", + "mounts": [ + "Leica M" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 1.0, + "model": "Elmarit-M 1:2.8/90", + "mounts": [ + "Leica M" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 1.53, + "model": "Elmarit-TL 1:2.8/18 Asph.", + "mounts": [ + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 3.933, + "model": "fixed lens", + "mounts": [ + "leicaDigilux2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 1.0, + "model": "fixed lens", + "mounts": [ + "leicaQTyp116" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 1.0, + "model": "fixed lens", + "mounts": [ + "leicaQ2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 1.53, + "model": "fixed lens", + "mounts": [ + "leicaXVario107" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 4.45, + "model": "fixed lens", + "mounts": [ + "panasonicLX1" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 4.7, + "model": "fixed lens", + "mounts": [ + "panasonicLX3" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 4.71, + "model": "fixed lens", + "mounts": [ + "panasonicLX5" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 5.1, + "model": "fixed lens", + "mounts": [ + "panasonicLX7" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 2.73, + "model": "fixed lens", + "mounts": [ + "panasonicLX10" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 6.06, + "model": "fixed lens", + "mounts": [ + "panasonicLZ2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 6.05, + "model": "fixed lens", + "mounts": [ + "panasonicFX7" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 5.6, + "model": "fixed lens", + "mounts": [ + "panasonicFZ28" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 4.73, + "model": "fixed lens", + "mounts": [ + "panasonicFZ30" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 5.84, + "model": "fixed lens", + "mounts": [ + "panasonicFZ10" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 6.0, + "model": "fixed lens", + "mounts": [ + "panasonicFZ5" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 7.6, + "model": "fixed lens", + "mounts": [ + "panasonicFZ3" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 5.56, + "model": "fixed lens", + "mounts": [ + "panasonicDMCFZ200" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 2.21, + "model": "fixed lens", + "mounts": [ + "panasonicDMCLX100" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 2.73, + "model": "fixed lens", + "mounts": [ + "panasonicFZ1000" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 2.73, + "model": "fixed lens", + "mounts": [ + "panasonicFZ2000" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 5.56, + "model": "fixed lens", + "mounts": [ + "panasonicFZ150" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 5.58, + "model": "fixed lens", + "mounts": [ + "panasonicTZ70" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 2.75, + "model": "fixed lens", + "mounts": [ + "panasonicTZ100" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 1.0, + "model": "Summicron-M 1:2/28 Asph.", + "mounts": [ + "Leica M" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 1.0, + "model": "Summicron-M 1:2/35 Asph. (11879/11882)", + "mounts": [ + "Leica M" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 1.0, + "model": "Summicron-M 1:2/50", + "mounts": [ + "Leica M" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 1.53, + "model": "Summicron-TL 1:2/23 Asph.", + "mounts": [ + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 1.53, + "model": "Summilux-TL 1:1.4/35 Asph.", + "mounts": [ + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 1.0, + "model": "Vario-Elmarit-SL 1:2.8-4/24-90 ASPH.", + "mounts": [ + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Leica", + "crop_factor": 1.0, + "model": "Vario-Elmarit-SL 1:2.8/24-70 Asph.", + "mounts": [ + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "LG", + "crop_factor": 6.34, + "model": "fixed lens", + "mounts": [ + "lgH815" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Mamiya", + "crop_factor": 0.644, + "model": "Mamiya 120mm f/32.0-4.0", + "mounts": [ + "Mamiya 645" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Mamiya", + "crop_factor": 0.644, + "model": "Mamiya 150mm f/32.0-3.5", + "mounts": [ + "Mamiya 645" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Mamiya", + "crop_factor": 0.644, + "model": "Mamiya 35mm f/22.0-3.5", + "mounts": [ + "Mamiya 645" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Mamiya", + "crop_factor": 0.577, + "model": "Mamiya 35mm f/3.5", + "mounts": [ + "Mamiya 645" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Mamiya", + "crop_factor": 0.577, + "model": "Mamiya 55-110mm f/4.5", + "mounts": [ + "Mamiya 645" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Mamiya", + "crop_factor": 0.577, + "model": "Mamiya 80mm f/2.8", + "mounts": [ + "Mamiya 645" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Mamiya", + "crop_factor": 1.0, + "model": "Mamiya/Sekor SX 55mm f/1.8", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Meike", + "crop_factor": 1.534, + "model": "Meike 25mm f/1.8", + "mounts": [ + "Canon EF-M", + "Fujifilm X", + "Micro 4/3 System", + "Nikon CX", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Meike", + "crop_factor": 1.529, + "model": "Meike 28mm f/2.8", + "mounts": [ + "Fujifilm X", + "Micro 4/3 System", + "Sony E", + "Nikon CX", + "Canon EF-M" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Meike", + "crop_factor": 1.528, + "model": "Meike 35mm f/1.7", + "mounts": [ + "Fujifilm X", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Meike", + "crop_factor": 1.528, + "model": "Meike 50mm f/2.0", + "mounts": [ + "Fujifilm X", + "Micro 4/3 System", + "Sony E", + "Nikon CX", + "Canon EF-M" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Meike", + "crop_factor": 1.0, + "model": "Meike 50mm F1.2", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Meike", + "crop_factor": 1.005, + "model": "Meike 85mm f/1.8", + "mounts": [ + "Nikon F AF", + "Canon EF", + "Fujifilm X", + "Nikon Z", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Meike", + "crop_factor": 1.0, + "model": "Meike SL 35mm F1.8 STM PRO", + "mounts": [ + "Leica L", + "Sony E", + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Meke", + "crop_factor": 1.0, + "model": "Meike AF 35mm F2 FF", + "mounts": [ + "Leica L", + "Sony E", + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Meke", + "crop_factor": 1.0, + "model": "Meike SL 85mm F1.8 STM PRO", + "mounts": [ + "Leica L", + "Sony E", + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Meyer-Optik G\u00f6rlitz", + "crop_factor": 1.0, + "model": "Domiplan 50mm f/2.8", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Meyer-Optik G\u00f6rlitz", + "crop_factor": 1.0, + "model": "Helioplan 40mm f/4.5", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Meyer-Optik G\u00f6rlitz", + "crop_factor": 1.0, + "model": "Lydith 30mm f/3.5", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Meyer-Optik G\u00f6rlitz", + "crop_factor": 1.0, + "model": "Orestegon 29mm f/2.8", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Meyer-Optik G\u00f6rlitz", + "crop_factor": 1.0, + "model": "Orestegor 200mm f/4", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Meyer-Optik G\u00f6rlitz", + "crop_factor": 1.0, + "model": "Oreston 50mm f/1.8", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Meyer-Optik G\u00f6rlitz", + "crop_factor": 1.0, + "model": "Orestor 100mm f/2.8", + "mounts": [ + "M42", + "Exakta" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Meyer-Optik G\u00f6rlitz", + "crop_factor": 1.0, + "model": "Orestor 135mm f/2.8", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Minolta", + "crop_factor": 1.0, + "model": "Minolta AF 100-300mm f/4.5-5.6 APO (D)", + "mounts": [ + "Minolta AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Minolta", + "crop_factor": 1.0, + "model": "Minolta AF 135mm f/2.8", + "mounts": [ + "Minolta AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Minolta", + "crop_factor": 1.0, + "model": "Minolta AF 17-35mm f/2.8-4 (D)", + "mounts": [ + "Minolta AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Minolta", + "crop_factor": 1.534, + "model": "Minolta AF 17-35mm F2.8-4 (D)", + "mounts": [ + "Minolta AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Minolta", + "crop_factor": 1.0, + "model": "Minolta AF 28-75mm F2.8 (D)", + "mounts": [ + "Minolta AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Minolta", + "crop_factor": 1.523, + "model": "Minolta AF 35-105mm f/3.5-4.5", + "mounts": [ + "Minolta AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Minolta", + "crop_factor": 1.0, + "model": "Minolta AF 35-70mm F4", + "mounts": [ + "Minolta AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Minolta", + "crop_factor": 1.0, + "model": "Minolta AF 50mm f/1.4", + "mounts": [ + "Minolta AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Minolta", + "crop_factor": 1.523, + "model": "Minolta AF 50mm f/1.7", + "mounts": [ + "Minolta AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Minolta", + "crop_factor": 1.0, + "model": "Minolta AF 50mm f/2.8 Macro", + "mounts": [ + "Minolta AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Minolta", + "crop_factor": 1.0, + "model": "Minolta AF 70-210mm f/4 Macro", + "mounts": [ + "Minolta AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Minolta", + "crop_factor": 1.0, + "model": "Minolta AF 85mm f/1.4G (D)", + "mounts": [ + "Minolta AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Minolta", + "crop_factor": 2.0, + "model": "Minolta MC Rokkor-PG 50mm 1:1.4", + "mounts": [ + "Minolta MC" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Minolta", + "crop_factor": 1.534, + "model": "Minolta MD 135mm f/2.8", + "mounts": [ + "Minolta MD" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Minolta", + "crop_factor": 1.0, + "model": "Minolta MD 24mm f/2.8", + "mounts": [ + "Minolta MD" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Minolta", + "crop_factor": 1.534, + "model": "Minolta MD 28mm f/2.8", + "mounts": [ + "Minolta MD" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Minolta", + "crop_factor": 1.529, + "model": "Minolta MD 35mm 1/2.8", + "mounts": [ + "Minolta MD" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Minolta", + "crop_factor": 1.0, + "model": "Minolta MD 45mm f/2", + "mounts": [ + "Minolta MD" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Minolta", + "crop_factor": 1.534, + "model": "Minolta MD 50mm f/1.4", + "mounts": [ + "Minolta MD" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Minolta", + "crop_factor": 1.534, + "model": "Minolta MD Rokkor 50mm 1:1.4", + "mounts": [ + "Minolta MD" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Minolta", + "crop_factor": 1.0, + "model": "Minolta/Sony AF 24-105mm f/3.5-4.5 (D)", + "mounts": [ + "Minolta AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Miranda", + "crop_factor": 1.0, + "model": "Miranda 28mm f/2.8 MC", + "mounts": [ + "Contax/Yashica", + "Canon FD", + "M42", + "Nikon F", + "Pentax K", + "Minolta MD" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Mitakon", + "crop_factor": 1.0, + "model": "Mitakon Speedmaster 50mm f/0.95 III", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Mitakon", + "crop_factor": 1.538, + "model": "Mitakon wide MC f=24mm 1:2.8", + "mounts": [ + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "MTO", + "crop_factor": 1.529, + "model": "MTO-500 500mm f/8 mirror lens", + "mounts": [ + "M39/1" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 2.727, + "model": "1 Nikkor 10mm f/2.8", + "mounts": [ + "Nikon CX" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 2.727, + "model": "1 Nikkor 18.5mm f/1.8", + "mounts": [ + "Nikon CX" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 2.727, + "model": "1 Nikkor 32mm f/1.2", + "mounts": [ + "Nikon CX" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 2.727, + "model": "1 Nikkor AW 10mm f/2.8", + "mounts": [ + "Nikon CX" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 2.727, + "model": "1 Nikkor AW 11-27.5mm f/3.5-5.6", + "mounts": [ + "Nikon CX" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 2.727, + "model": "1 Nikkor VR 10-30mm f/3.5-5.6", + "mounts": [ + "Nikon CX" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 2.727, + "model": "1 Nikkor VR 10-30mm f/3.5-5.6 PD-ZOOM", + "mounts": [ + "Nikon CX" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 2.727, + "model": "1 Nikkor VR 30-110mm f/3.8-5.6", + "mounts": [ + "Nikon CX" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 3.933, + "model": "fixed lens", + "mounts": [ + "nikon8800" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 3.933, + "model": "fixed lens", + "mounts": [ + "nikon8400" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 3.933, + "model": "fixed lens", + "mounts": [ + "nikon5700" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 4.86, + "model": "fixed lens", + "mounts": [ + "nikon7900" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 4.843, + "model": "fixed lens", + "mounts": [ + "nikon5400" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 3.933, + "model": "fixed lens", + "mounts": [ + "nikon5000" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 6.0, + "model": "fixed lens", + "mounts": [ + "nikon4800" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 4.843, + "model": "fixed lens", + "mounts": [ + "nikon995" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 4.843, + "model": "fixed lens", + "mounts": [ + "nikon990" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 5.408, + "model": "fixed lens", + "mounts": [ + "nikon950" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 5.62, + "model": "fixed lens", + "mounts": [ + "nikonP60" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 4.706, + "model": "fixed lens", + "mounts": [ + "nikonP330" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 5.65, + "model": "fixed lens", + "mounts": [ + "nikonS3300" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 4.69, + "model": "fixed lens", + "mounts": [ + "nikonP7000" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.523, + "model": "fixed lens", + "mounts": [ + "nikonA" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 5.56, + "model": "fixed lens", + "mounts": [ + "nikonP1000" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 4.67, + "model": "fixed lens", + "mounts": [ + "nikonP7800" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 3.933, + "model": "fixed lens, with TC-E15ED (full tele)", + "mounts": [ + "nikon5700" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 4.843, + "model": "fixed lens, with TC-E2", + "mounts": [ + "nikon995" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 4.843, + "model": "fixed lens, with WC-E24", + "mounts": [ + "nikon995" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 4.843, + "model": "fixed lens, with WC-E63", + "mounts": [ + "nikon995" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 4.843, + "model": "fixed lens, with WC-E63", + "mounts": [ + "nikon990" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 3.933, + "model": "fixed lens, with WC-E68 (full wide)", + "mounts": [ + "nikon5000" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 3.933, + "model": "fixed lens, with WC-E75", + "mounts": [ + "nikon8400" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 4.843, + "model": "fixed lens, with WC-E80", + "mounts": [ + "nikon5400" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 3.933, + "model": "fixed lens, with WC-E80 (full wide)", + "mounts": [ + "nikon5700" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 3.933, + "model": "fixed lens, with WM-E80", + "mounts": [ + "nikon8800" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor 50mm f/2", + "mounts": [ + "Nikon F" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.529, + "model": "Nikkor 55mm f/3.5 Micro", + "mounts": [ + "Nikon F" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.523, + "model": "Nikkor AF 10.5mm f/2.8G DX ED Fisheye", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF 105mm f/2.8D Micro", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF 105mm f/2D DC", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AF 105mm Micro f/2.8D", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF 135mm f/2D DC", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AF 14mm f/2.8D ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF 18-35mm f/3.5-4.5D IF-ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF 180mm f/2.8D IF-ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF 20-35mm f/2.8D IF", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AF 20mm f/2.8D", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF 24-50mm f/3.3-4.5", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AF 24-50mm f/3.3-4.5D", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF 24-85mm f/2.8-4D IF", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AF 24mm f/2.8D", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF 28-105mm f/3.5-4.5D IF", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF 28-200mm f/3.5-5.6D IF", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AF 28-200mm f/3.5-5.6G IF-ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF 28-70mm f/3.5-4.5D", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF 28-80mm f/3.3-5.6G", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF 28-85mm f/3.5-4.5", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF 28mm f/1.4D", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF 28mm f/2.8D", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF 300mm f/4 IF-ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF 35-70mm f/2.8", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AF 35-70mm f/2.8D", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF 35-70mm f/3.3-4.5 N", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF 35mm f/2.0D", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF 35mm f/2.8 PC \u201cblack knob\u201d", + "mounts": [ + "Nikon F" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF 50mm f/1.4D", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AF 50mm f/1.8D", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF 60mm f/2.8D Micro", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AF 70-180mm f/4.5-5.6D ED Micro", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF 70-210mm f/4", + "mounts": [ + "Nikon F" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AF 70-210mm f/4", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.523, + "model": "Nikkor AF 70-210mm f/4-5.6", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AF 70-300mm f/4-5.6D ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AF 70-300mm f/4-5.6G", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.523, + "model": "Nikkor AF 80-200mm f/2.8 ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF 80-200mm f/2.8D ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AF 80-400mm f/4.5-5.6D ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.523, + "model": "Nikkor AF 85mm f/1.8", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF 85mm f/1.8D", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.534, + "model": "Nikkor AF-P 10-20mm f/4.5-5.6G DX VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.523, + "model": "Nikkor AF-P 18-55mm f/3.5-5.6G DX VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-P 70-300mm f/4.5-5.6E ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.534, + "model": "Nikkor AF-P 70-300mm f/4.5-6.3G DX ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.558, + "model": "Nikkor AF-S 10-24mm f/3.5-4.5G DX ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 105mm f/1.4E ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AF-S 12-24mm f/4G DX IF-ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 14-24mm f/2.8G ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 16-35mm f/4G ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.534, + "model": "Nikkor AF-S 16-80mm f/2.8-4E DX ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AF-S 16-85mm f/3.5-5.6G DX ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AF-S 17-35mm f/2.8D IF-ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AF-S 17-55mm f/2.8G DX IF-ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.534, + "model": "Nikkor AF-S 18-105mm f/3.5-5.6G DX ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AF-S 18-135mm f/3.5-5.6G DX IF-ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.523, + "model": "Nikkor AF-S 18-140mm f/3.5-5.6G DX ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.5, + "model": "Nikkor AF-S 18-200mm f/3.5-5.6G DX VR IF-ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.5, + "model": "Nikkor AF-S 18-200mm f/3.5-5.6G DX VR IF-ED II", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.534, + "model": "Nikkor AF-S 18-300mm f/3.5-5.6G DX ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.523, + "model": "Nikkor AF-S 18-300mm f/3.5-6.3G DX ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 18-35mm f/3.5-4.5G ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AF-S 18-55mm f/3.5-5.6G DX ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AF-S 18-55mm f/3.5-5.6G DX VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.523, + "model": "Nikkor AF-S 18-55mm f/3.5-5.6G DX VR II", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AF-S 18-70mm f/3.5-4.5G DX IF-ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 200-400mm f/4G IF-ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.534, + "model": "Nikkor AF-S 200-500mm f/5.6E ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 20mm f/1.8G ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AF-S 24-120mm f/3.5-5.6G VR IF-ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 24-120mm f/4G ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 24-70mm f/2.8E ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 24-70mm f/2.8G ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 24-85mm f/3.5-4.5G ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 24-85mm f/3.5-4.5G IF-ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.001, + "model": "Nikkor AF-S 24mm f/1.8G ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 28-300mm f/3.5-5.6G ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 28mm f/1.8G", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 300mm f/4D IF-ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 300mm f/4E PF ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 35mm f/1.4G", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AF-S 35mm f/1.8G DX", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 35mm f/1.8G ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 400mm f/2.8G ED + converter TC-14EIII", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 400mm f/2.8G ED + converter TC-20EIII", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 400mm f/2.8G ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.534, + "model": "Nikkor AF-S 40mm f/2.8G DX Micro", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.534, + "model": "Nikkor AF-S 500mm f/4G ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 500mm f/5.6E PF ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.534, + "model": "Nikkor AF-S 50mm f/1.4G", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.523, + "model": "Nikkor AF-S 50mm f/1.8G", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AF-S 55-200mm f/4-5.6G DX ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.523, + "model": "Nikkor AF-S 55-200mm f/4-5.6G DX ED VR II", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.523, + "model": "Nikkor AF-S 55-300mm f/4.5-5.6G DX ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 58mm f/1.4G", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 60 mm f/2.8G ED Micro", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 600mm f/4E FL ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 600mm f/4E FL ED VR + converter TC-14EIII", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 600mm f/4G ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.523, + "model": "Nikkor AF-S 60mm f/2.8G ED Micro", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 70-200mm f/2.8E FL ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 70-200mm f/2.8G ED VR II", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 70-200mm f/2.8G ED VR II + Kenko TELE+ HD 2.0X", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 70-200mm f/2.8G IF-ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AF-S 70-200mm f/2.8G VR IF-ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 70-200mm f/4G IF-ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 70-300mm f/4.5-5.6G VR IF-ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 80-400mm f/4.5-5.6G ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 800mm f/5.6E FL ED VR", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 85mm f/1.4G", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S 85mm f/1.8G", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AF-S VR 105mm f/2.8G Micro IF-ED", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AI 15mm f/3.5", + "mounts": [ + "Nikon F AI" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AI 20mm f/3.5", + "mounts": [ + "Nikon F AI" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AI 45mm f/2.8 GN", + "mounts": [ + "Nikon F AI" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AI 55mm f/1.2", + "mounts": [ + "Nikon F AI" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AI 80-200mm f/4.5 Zoom New", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AI-S 105mm f/2.5", + "mounts": [ + "Nikon F AI", + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AI-S 135mm f/2", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AI-S 135mm f/2.8", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AI-S 135mm f/3.5", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AI-S 180mm f/2.8 ED", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AI-S 200mm f/4", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AI-S 20mm f/2.8", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AI-S 24mm f/2", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AI-S 24mm f/2.8", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AI-S 28mm f/2", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AI-S 28mm f/2.8", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AI-S 28mm f/3.5 PC (unshifted)", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AI-S 300mm f/4.5", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AI-S 35mm f/1.4", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AI-S 35mm f/2", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AI-S 400mm f/3.5", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AI-S 400mm f/3.5 + TC14B teleconverter", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AI-S 50-135mm f/3.5", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AI-S 500mm f/8 Reflex", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AI-S 50mm f/1.2", + "mounts": [ + "Nikon F AI", + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AI-S 50mm f/1.4", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AI-S 50mm f/1.8", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AI-S 55mm f/2.8 Micro", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.528, + "model": "Nikkor AI-S 58mm f/1.2 Noct", + "mounts": [ + "Nikon F AI", + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AI-S 6mm f/2.8 Fisheye", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AI-S 70-210mm f/4.5-5.6", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor AI-S 85mm f/2.0", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Auto 43-86mm f/3.5", + "mounts": [ + "Nikon F" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z 100-400mm f/4.5-5.6 VR S", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z 135mm f/1.8 S Plena", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z 14-24mm f/2.8 S", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z 14-30mm f/4 S", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z 180-600mm f/5.6-6.3 VR", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z 20mm f/1.8 S", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z 24-120mm f/4 S", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z 24-200mm f/4-6.3 VR", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z 24-70mm f/2.8 S", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z 24-70mm f/4 S", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z 26mm f/2.8", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z 28-400mm f/4-8 VR", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z 28-75mm f/2.8", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z 28mm f/2.8", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z 35mm f/1.4", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z 35mm f/1.8 S", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z 400mm f/4.5 VR S", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z 40mm f/2", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z 50mm f/1.2 S", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z 50mm f/1.4", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z 50mm f/1.8 S", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z 600mm f/6.3 VR S", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z 70-180mm f/2.8", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z 70-200mm f/2.8 VR S", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z 85mm f/1.2 S", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z 85mm f/1.8 S", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.531, + "model": "Nikkor Z DX 12-28mm f/3.5-5.6 PZ VR", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.531, + "model": "Nikkor Z DX 16-50mm f/3.5-6.3 VR", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.531, + "model": "Nikkor Z DX 18-140mm f/3.5-6.3 VR", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.531, + "model": "Nikkor Z DX 24mm f/1.7", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.5, + "model": "Nikkor Z DX 50-250mm f/4.5-6.3 VR", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z MC 105mm f/2.8 VR S", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikkor Z MC 50mm f/2.8", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikon Lens Series E 100mm f/2.8", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikon Lens Series E 28mm f/2.8", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Nikon", + "crop_factor": 1.0, + "model": "Nikon Lens Series E 50mm f/1.8", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 3.933, + "model": "fixed lens", + "mounts": [ + "olympus8080" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 6.0, + "model": "fixed lens", + "mounts": [ + "olympusStylusV" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 4.8, + "model": "fixed lens", + "mounts": [ + "olympus7000" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 4.92, + "model": "fixed lens", + "mounts": [ + "olympus4000" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 4.9, + "model": "fixed lens", + "mounts": [ + "olympusC50" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 6.03, + "model": "fixed lens", + "mounts": [ + "olympus750" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 6.52, + "model": "fixed lens", + "mounts": [ + "olympus700" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 4.93, + "model": "fixed lens", + "mounts": [ + "olympus2040" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 4.843, + "model": "fixed lens", + "mounts": [ + "olympus5060" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 6.563, + "model": "fixed lens", + "mounts": [ + "olympusC860" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 1.0, + "model": "fixed lens", + "mounts": [ + "olympusEpic" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 4.68, + "model": "fixed lens", + "mounts": [ + "olympusxz1" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 4.67, + "model": "fixed lens", + "mounts": [ + "olympusStylus1" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 5.56, + "model": "fixed lens", + "mounts": [ + "olympusToughTG4" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 5.62, + "model": "fixed lens", + "mounts": [ + "olympusToughTG5" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 3.933, + "model": "fixed lens", + "mounts": [ + "olympusE10" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 3.933, + "model": "fixed lens, macro (full tele): 12 inches lens-to-subject", + "mounts": [ + "olympusE10" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 3.933, + "model": "fixed lens, macro (full tele): 16 inches lens-to-subject", + "mounts": [ + "olympusE10" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 3.933, + "model": "fixed lens, macro (full tele): 20 inches lens-to-subject", + "mounts": [ + "olympusE10" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 3.933, + "model": "fixed lens, macro (full tele): 8 inches lens-to-subject", + "mounts": [ + "olympusE10" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 4.92, + "model": "fixed lens, with A-28 iS/L converter", + "mounts": [ + "olympus4000" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 3.933, + "model": "fixed lens, with B-300 (full tele)", + "mounts": [ + "olympusE10" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 4.93, + "model": "fixed lens, with WCON-08B", + "mounts": [ + "olympus2040" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 3.933, + "model": "fixed lens, with WCON-08B", + "mounts": [ + "olympusE10" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus 9mm Body Cap Lens Fisheye", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital 14-42mm f/3.5-5.6 II", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital 17mm f/1.8", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital 17mm f/2.8 Pancake", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital 25mm f/1.8", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital 45mm f/1.8", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital ED 12-100mm f/4.0 IS Pro", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital ED 12-200mm f/3.5-6.3", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital ED 12-40mm f/2.8 Pro", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital ED 12-45mm f/4.0 Pro", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital ED 12-50mm f/3.5-6.3 EZ", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital ED 12mm f/2.0", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital ED 14-150mm f/4.0-5.6", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital ED 14-150mm f/4.0-5.6 II", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital ED 14-42mm f/3.5-5.6", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital ED 14-42mm f/3.5-5.6 EZ", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital ED 14-42mm f/3.5-5.6 II R", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital ED 14-42mm f/3.5-5.6 L", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital ED 17mm f/1.2 Pro", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital ED 25mm f/1.2 Pro", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital ED 30mm f/3.5 Macro", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital ED 40-150mm f/2.8 PRO + 1.4\u00d7 conv.", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital ED 40-150mm f/4.0-5.6 R", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital ED 40-150mm F2.8 Pro", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital ED 45mm f/1.2 Pro", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital ED 60mm f/2.8 Macro", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital ED 7-14mm f/2.8 Pro", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital ED 75-300mm f/4.8-6.7 II", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital ED 75mm f/1.8", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital ED 8-25mm f/4.0 PRO", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital ED 8mm f/1.8 Fisheye Pro", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus M.Zuiko Digital ED 9-18mm f/4.0-5.6", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus OM-System Zuiko Auto-S 50 mm f/1.8 (Vers. S/N 5\u0445\u0445\u0445\u0445\u0445\u0445)", + "mounts": [ + "Olympus OM" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus Zuiko Digital 11-22mm f/2.8-3.5", + "mounts": [ + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus Zuiko Digital 14-45mm f/3.5-5.6", + "mounts": [ + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus Zuiko Digital 14-54mm f/2.8-3.5", + "mounts": [ + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus Zuiko Digital 25mm f/2.8", + "mounts": [ + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus Zuiko Digital 35mm f/3.5 Macro", + "mounts": [ + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus Zuiko Digital 40-150mm f/3.5-4.5", + "mounts": [ + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus Zuiko Digital 70-300mm F4.0-5.6", + "mounts": [ + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus Zuiko Digital ED 12-60mm f/2.8-4.0 SWD", + "mounts": [ + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus Zuiko Digital ED 14-35mm F2.0 SWD", + "mounts": [ + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus Zuiko Digital ED 14-42mm f/3.5-5.6", + "mounts": [ + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus Zuiko Digital ED 40-150mm f/4.0-5.6", + "mounts": [ + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus Zuiko Digital ED 50-200mm f/2.8-3.5", + "mounts": [ + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus Zuiko Digital ED 50-200mm f/2.8-3.5 SWD", + "mounts": [ + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus Zuiko Digital ED 50-200mm f/2.8-3.5 SWD + EC-14 1.4\u00d7 extender", + "mounts": [ + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus Zuiko Digital ED 50-200mm f/2.8-3.5 SWD + EC-20 2\u00d7 extender", + "mounts": [ + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus Zuiko Digital ED 50mm f/2.0 Macro", + "mounts": [ + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus Zuiko Digital ED 7-14mm f/4.0", + "mounts": [ + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus Zuiko Digital ED 9-18mm f/4.0-5.6", + "mounts": [ + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "Olympus Zuiko Digital Pro ED 35-100mm F2.0", + "mounts": [ + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 2.0, + "model": "OM 17mm F1.8 II", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Olympus", + "crop_factor": 1.613, + "model": "Zuiko Auto-S 50mm f/1.8", + "mounts": [ + "Olympus OM" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "OM Digital Solutions", + "crop_factor": 2.0, + "model": "M.Zuiko Digital ED 40-150mm F4.0 PRO", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "OM Digital Solutions", + "crop_factor": 2.0, + "model": "OM 12-100mm F4.0", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "OM Digital Solutions", + "crop_factor": 2.0, + "model": "OM 20mm F1.4", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Opteka", + "crop_factor": 1.0, + "model": "Opteka 15mm f/4 Wide Macro 1:1", + "mounts": [ + "Nikon F", + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 5.81, + "model": "fixed lens", + "mounts": [ + "panasonicDMCFZ45" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 4.67, + "model": "fixed lens", + "mounts": [ + "panasonicLF1" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.73, + "model": "fixed lens", + "mounts": [ + "panasonicZS200" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Leica D Summilux 25mm f/1.4 Asph.", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Leica D Vario-Elmar 14-150mm f/3.5-5.6 Asph. OIS", + "mounts": [ + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Leica DG Macro-Elmarit 45mm f/2.8 Asph. Mega OIS", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Leica DG Nocticron 42.5mm f/1.2 Asph. Power OIS", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Leica DG Summilux 15mm f/1.7 Asph.", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Leica DG Summilux 25mm f/1.4 Asph.", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Leica DG Summilux 25mm f/1.4 II", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Leica DG Summilux 9mm f/1.7 Asph.", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Leica DG Vario-Elmar 100-400mm f/4.0-6.3 Asph. Power OIS", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Leica DG Vario-Elmarit 12-60mm f/2.8-4.0 Asph. Power OIS", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Leica DG Vario-Elmarit 50-200mm f/2.8-4 Asph. OIS", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Leica DG Vario-Elmarit 8-18mm f/2.8-4 Asph.", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Leica DG Vario-Summilux 10-25mm f/1.7 Asph.", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G 14mm f/2.5 Asph.", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G 14mm f/2.5 Asph. + GWC1 0.79\u00d7", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G 14mm f/2.5 II Asph.", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G 20mm f/1.7 Asph.", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G 20mm f/1.7 II Asph.", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G 25mm f/1.7 Asph.", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G 42.5mm f/1.7 Asph. Power OIS", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G Macro 30mm f/2.8 Asph. Mega OIS", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G Vario 100-300mm f/4-5.6 II Power OIS", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G Vario 100-300mm f/4.0-5.6 Mega OIS", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G Vario 12-32mm f/3.5-5.6 Asph. Mega OIS", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G Vario 12-60mm f/3.5-5.6 Asph. Power OIS", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G Vario 14-140mm f/3.5-5.6 Asph. II Power OIS", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G Vario 14-140mm f/3.5-5.6 Asph. Power OIS", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G Vario 14-42mm f/3.5-5.6 II Asph. Mega OIS", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G Vario 14-45mm f/3.5-5.6 Asph. Mega OIS", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G Vario 35-100mm f/4.0-5.6 Asph. Mega OIS", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G Vario 45-150mm f/4.0-5.6 Asph. Mega OIS", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G Vario 45-200mm f/4.0-5.6 II Power OIS", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G Vario 45-200mm f/4.0-5.6 Mega OIS", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G Vario 7-14mm f/4.0 Asph.", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G Vario HD 14-140mm f/4.0-5.8 Asph. Mega OIS", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G X Vario 12-35mm f/2.8 Asph. Power OIS", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G X Vario 12-35mm f/2.8 II Asph. Power OIS", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G X Vario 35-100mm f/2.8 II Power OIS", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G X Vario 35-100mm f/2.8 Power OIS", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G X Vario PZ 14-42mm f/3.5-5.6 Asph. Power OIS", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G X Vario PZ 14-42mm f/3.5-5.6 Asph. Power OIS + GWC1 0.79\u00d7", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 2.0, + "model": "Lumix G X Vario PZ 45-175mm f/4.0-5.6 Asph. Power OIS", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 1.0, + "model": "Lumix S 100mm f/2.8 Macro", + "mounts": [ + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 1.0, + "model": "Lumix S 14-28mm f/4-5.6 Macro", + "mounts": [ + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 1.0, + "model": "Lumix S 18-40mm f/4.5-6.3", + "mounts": [ + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 1.0, + "model": "Lumix S 20-60mm f/3.5-5.6", + "mounts": [ + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 1.0, + "model": "Lumix S 24-105mm f/4 Macro OIS", + "mounts": [ + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 1.0, + "model": "Lumix S 24-60mm f/2.8", + "mounts": [ + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 1.0, + "model": "Lumix S 24mm f/1.8", + "mounts": [ + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 1.0, + "model": "Lumix S 28\u2013200mm f/4\u20137.1 Macro OIS", + "mounts": [ + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 1.0, + "model": "Lumix S 35mm f/1.8", + "mounts": [ + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 1.0, + "model": "Lumix S 50mm f/1.8", + "mounts": [ + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 1.0, + "model": "Lumix S 70-300mm f/4.5-5.6", + "mounts": [ + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 1.0, + "model": "Lumix S 85mm f/1.8", + "mounts": [ + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 1.0, + "model": "Lumix S Pro 16-35mm f/4", + "mounts": [ + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Panasonic", + "crop_factor": 1.0, + "model": "Lumix S Pro 50mm f/1.4", + "mounts": [ + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentacon", + "crop_factor": 1.0, + "model": "Pentacon 50mm f/1.8", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentacon", + "crop_factor": 1.526, + "model": "Pentacon 50mm f/1.8 auto multi coating", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentacon", + "crop_factor": 1.0, + "model": "Pentacon electric 2.8/29mm", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 5.53, + "model": "01 Standard Prime 8.5mm f/1.9 AL [IF]", + "mounts": [ + "Pentax Q" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 6.5, + "model": "fixed lens", + "mounts": [ + "pentax43WR" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 4.843, + "model": "fixed lens", + "mounts": [ + "pentax750" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 6.563, + "model": "fixed lens", + "mounts": [ + "pentax230" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 4.85, + "model": "fixed lens", + "mounts": [ + "pentax430" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.546, + "model": "HD Pentax DA* 16-50mm f/2.8 ED PLM AW", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.0, + "model": "HD Pentax-D FA 15-30mm f/2.8 ED SDM WR", + "mounts": [ + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.0, + "model": "HD Pentax-D FA 150-450mm f/4.5-5.6 ED DC AW", + "mounts": [ + "Pentax KAF3" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.0, + "model": "HD Pentax-D FA 24-70mm f/2.8 ED SDM WR", + "mounts": [ + "Pentax KAF3" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.0, + "model": "HD Pentax-D FA 28-105mm f/3.5-5.6 ED DC WR", + "mounts": [ + "Pentax KAF3" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.0, + "model": "HD Pentax-D FA* 70-200mm f/2.8 ED DC AW", + "mounts": [ + "Pentax KAF3" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.526, + "model": "HD Pentax-DA 16-85mm f/3.5-5.6 ED DC WR", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.522, + "model": "HD Pentax-DA 18-50mm f/4-5.6 DC WR RE", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.526, + "model": "HD Pentax-DA 20-40mm f/2.8-4 ED Limited DC WR", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.526, + "model": "HD Pentax-DA 21mm f/3.2 ED AL Limited", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.0, + "model": "HD Pentax-DA 55-300mm f/4-5.8 ED WR", + "mounts": [ + "Pentax KAF3" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.534, + "model": "HD Pentax-DA 55-300mm f/4.5-6.3 ED PLM WR RE", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.534, + "model": "HD Pentax-DA 70mm f/2.4 Limited", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.534, + "model": "HD Pentax-DA* 11-18mm f/2.8 ED DC AW", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.0, + "model": "Pentax SMC Takumar 50mm f/1.4", + "mounts": [ + "M42", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.526, + "model": "Pentax-F 28-80mm f/3.5-4.5", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.534, + "model": "smc Pentax DA* 60-250mm f/4 IF SDM", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.0, + "model": "smc PENTAX DA* 60-250mm F4 [IF] SDM", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.53, + "model": "smc Pentax K 30mm f/2.8", + "mounts": [ + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.0, + "model": "smc Pentax Takumar 135mm f/2.5 (V2/43812)", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.538, + "model": "smc Pentax-A 28mm 1:2.8", + "mounts": [ + "Pentax KA" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.522, + "model": "smc Pentax-A 50mm f/1.4", + "mounts": [ + "Pentax KA" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.0, + "model": "smc Pentax-A 50mm f/1.7", + "mounts": [ + "Pentax KA" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.53, + "model": "smc Pentax-D FA Macro 100mm f/2.8 WR", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.0, + "model": "smc Pentax-D FA Macro 100mm f/2.8 WR", + "mounts": [ + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.53, + "model": "smc Pentax-DA 12-24mm f/4 ED AL IF", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.538, + "model": "smc PENTAX-DA 14mm F2.8 ED[IF]", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.53, + "model": "smc Pentax-DA 15mm f/4 ED AL Limited", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.522, + "model": "smc Pentax-DA 16-45mm f/4 ED AL", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.53, + "model": "smc Pentax-DA 17-70mm f/4 AL [IF] SDM", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.53, + "model": "smc Pentax-DA 18-135mm f/3.5-5.6 ED AL IF DC WR", + "mounts": [ + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.53, + "model": "smc Pentax-DA 18-250mm f/3.5-6.3 ED AL [IF]", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.53, + "model": "smc Pentax-DA 18-55mm f/3.5-5.6 AL", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.53, + "model": "smc Pentax-DA 18-55mm f/3.5-5.6 AL II/L/WR", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.526, + "model": "smc Pentax-DA 21mm f/3.2 AL Limited", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.526, + "model": "smc Pentax-DA 35mm f/2.4 AL", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.0, + "model": "smc Pentax-DA 35mm f/2.4 AL", + "mounts": [ + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.0, + "model": "smc Pentax-DA 35mm f/2.8 Macro Limited", + "mounts": [ + "Pentax KAF3" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.53, + "model": "smc Pentax-DA 40mm f/2.8 Limited", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.0, + "model": "smc Pentax-DA 40mm f/2.8 XS", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.53, + "model": "smc Pentax-DA 50-200mm f/4-5.6 DA ED", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.526, + "model": "smc Pentax-DA 50mm f/1.8", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.53, + "model": "smc Pentax-DA 55-300mm f/4-5.8 ED", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.534, + "model": "smc Pentax-DA 70mm f/2.4 Limited", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.538, + "model": "smc Pentax-DA Fish-Eye 10-17mm f/3.5-4.5 ED IF", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.534, + "model": "smc Pentax-DA L 18-50mm f/4-5.6 DC WR RE", + "mounts": [ + "Pentax KAF3" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.534, + "model": "smc Pentax-DA L 50-200mm f/4-5.6 ED WR", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.0, + "model": "smc Pentax-DA L 50-200mm f/4-5.6 ED WR", + "mounts": [ + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.53, + "model": "smc Pentax-DA L 55-300mm f/4-5.8 ED", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.526, + "model": "smc Pentax-DA* 16-50mm f/2.8 ED AL IF SDM", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.526, + "model": "smc Pentax-DA* 50-135mm f/2.8 ED IF SDM", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.538, + "model": "smc Pentax-DA* 55mm f/1.4 SDM", + "mounts": [ + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.522, + "model": "smc Pentax-F 28mm f/2.8", + "mounts": [ + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.531, + "model": "smc Pentax-F 35-80mm f/4-5.6", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.538, + "model": "smc Pentax-F ZOOM 35-70mm f/3.5-4.5", + "mounts": [ + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.0, + "model": "smc Pentax-FA 28-70mm f/4 AL", + "mounts": [ + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.53, + "model": "smc Pentax-FA 28mm f/2.8 AL", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.0, + "model": "smc Pentax-FA 31mm f/1.8 AL Limited", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.53, + "model": "smc Pentax-FA 43mm f/1.9 Limited", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.526, + "model": "smc Pentax-FA 50mm f/1.4", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.538, + "model": "smc Pentax-FA 50mm f/1.7", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.0, + "model": "smc Pentax-FA 77mm f/1.8 Limited", + "mounts": [ + "Pentax KAF3" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.538, + "model": "smc Pentax-M 135mm f/3.5", + "mounts": [ + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.53, + "model": "smc Pentax-M 150mm f/3.5", + "mounts": [ + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.538, + "model": "smc Pentax-M 200mm f/4", + "mounts": [ + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.538, + "model": "smc Pentax-M 28mm 1:3.5", + "mounts": [ + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.0, + "model": "smc Pentax-M 28mm f/2.8", + "mounts": [ + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.538, + "model": "smc Pentax-M 35mm 1:2", + "mounts": [ + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.538, + "model": "smc Pentax-M 50mm f/1.4", + "mounts": [ + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.526, + "model": "smc Pentax-M 50mm f/1.7", + "mounts": [ + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.53, + "model": "smc Pentax-M 50mm f/2", + "mounts": [ + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.538, + "model": "smc Pentax-M 75-150mm f/4", + "mounts": [ + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.538, + "model": "smc Pentax-M 80-200mm f/4.5", + "mounts": [ + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.531, + "model": "smc Pentax-M Macro 1:4 100mm", + "mounts": [ + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.529, + "model": "smc Pentax-M Macro 1:4 50mm", + "mounts": [ + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.0, + "model": "Super-Multi-Coated Takumar 400mm f/5.6", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.0, + "model": "Super-Takumar 50mm f/1.4", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.523, + "model": "Super-Takumar 55mm f/1.8", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pentax", + "crop_factor": 1.53, + "model": "Takumar 135mm f/2.5 Bayonet", + "mounts": [ + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pergear", + "crop_factor": 1.534, + "model": "Pergear 60mm f/2.8 MK2 Macro", + "mounts": [ + "Sony E", + "Nikon Z", + "Fujifilm X", + "Leica L", + "Canon RF", + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Pergear", + "crop_factor": 2.0, + "model": "Pergear 7.5mm f/2.8", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Petri", + "crop_factor": 1.529, + "model": "Auto Petri 1:2.8 f=28mm", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Petri", + "crop_factor": 1.0, + "model": "Auto Petri 55mm f/1.8", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Quantaray", + "crop_factor": 1.0, + "model": "Quantaray M-AF 35-80mm F4-5.6", + "mounts": [ + "Sony Alpha", + "Canon EF", + "Nikon F", + "Pentak K", + "Minolta AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Ricoh", + "crop_factor": 4.8, + "model": "fixed lens", + "mounts": [ + "ricohGRdigital" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Ricoh", + "crop_factor": 4.9, + "model": "fixed lens", + "mounts": [ + "ricohGX" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Ricoh", + "crop_factor": 6.4, + "model": "fixed lens", + "mounts": [ + "ricohRR30" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Ricoh", + "crop_factor": 1.523, + "model": "fixed lens", + "mounts": [ + "ricohGR" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Ricoh", + "crop_factor": 1.53, + "model": "fixed lens", + "mounts": [ + "ricohGRIV" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Ricoh", + "crop_factor": 4.9, + "model": "fixed lens, with DW-4", + "mounts": [ + "ricohGX" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Ricoh", + "crop_factor": 1.0, + "model": "Ricoh 50mm 1:2.0", + "mounts": [ + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Ricoh", + "crop_factor": 1.523, + "model": "Ricoh XR Rikenon 1:1.4 50mm", + "mounts": [ + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Ricoh", + "crop_factor": 1.538, + "model": "Rikenon P 50mm f/2", + "mounts": [ + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Ricoh Imaging Company", + "crop_factor": 1.0, + "model": "HD PENTAX-D FA 21mm F2.4 ED Limited DC WR", + "mounts": [ + "Pentax KAF4" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Ricoh imaging company, ltd.", + "crop_factor": 1.53, + "model": "fixed lens", + "mounts": [ + "ricohGRIII" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Ricoh imaging company, ltd.", + "crop_factor": 1.53, + "model": "fixed lens", + "mounts": [ + "ricohGRIIIx" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Rollei", + "crop_factor": 1.0, + "model": "Rollei Rolleinar MC f/2.8 28mm", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Rollei", + "crop_factor": 1.0, + "model": "Rollei Rolleinar MC f/4 21mm", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samsung", + "crop_factor": 5.69, + "model": "fixed lens", + "mounts": [ + "samsungWB2000" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samsung", + "crop_factor": 4.6, + "model": "fixed lens", + "mounts": [ + "samsungEx2f" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samsung", + "crop_factor": 6.0, + "model": "Samsung Galaxy S21 ultrawide", + "mounts": [ + "samsungS21uw" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samsung", + "crop_factor": 1.531, + "model": "Samsung NX 10mm f/3.5 Fisheye", + "mounts": [ + "Samsung NX" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samsung", + "crop_factor": 1.531, + "model": "Samsung NX 16-50mm f/2-2.8 S", + "mounts": [ + "Samsung NX" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samsung", + "crop_factor": 1.525, + "model": "Samsung NX 16-50mm f/3.5-5.6 PZ ED OIS", + "mounts": [ + "Samsung NX" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samsung", + "crop_factor": 1.525, + "model": "Samsung NX 16mm f/2.4 Pancake", + "mounts": [ + "Samsung NX" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samsung", + "crop_factor": 1.531, + "model": "Samsung NX 18-55mm f/3.5-5.6 OIS", + "mounts": [ + "Samsung NX" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samsung", + "crop_factor": 1.528, + "model": "Samsung NX 20-50mm f/3.5-5.6 ED", + "mounts": [ + "Samsung NX" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samsung", + "crop_factor": 1.525, + "model": "Samsung NX 20mm f/2.8 Pancake", + "mounts": [ + "Samsung NX" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samsung", + "crop_factor": 1.528, + "model": "Samsung NX 30mm f/2 Pancake", + "mounts": [ + "Samsung NX" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samsung", + "crop_factor": 1.525, + "model": "Samsung NX 45mm f/1.8 2D/3D", + "mounts": [ + "Samsung NX" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samsung", + "crop_factor": 1.531, + "model": "Samsung NX 50-150mm F2.8 S", + "mounts": [ + "Samsung NX" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samsung", + "crop_factor": 1.531, + "model": "Samsung NX 50-200mm f/4-5.6", + "mounts": [ + "Samsung NX" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samsung", + "crop_factor": 2.727, + "model": "Samsung NX-M 9-27mm f/3.5-5.6 ED OIS", + "mounts": [ + "Samsung NX mini" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samsung", + "crop_factor": 2.727, + "model": "Samsung NX-M 9mm f/3.5 ED", + "mounts": [ + "Samsung NX mini" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samsung", + "crop_factor": 6.19, + "model": "Samsung S7 wide angle lens cover", + "mounts": [ + "samsungS7" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samsung", + "crop_factor": 6.047, + "model": "Samsung S8 wide angle lens", + "mounts": [ + "samsungS8wide" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samsung", + "crop_factor": 6.19, + "model": "SM-G950F", + "mounts": [ + "samsungS8" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.534, + "model": "Samyang 10mm f/2.8 ED AS NCS CS", + "mounts": [ + "Canon EF", + "Canon EF-M", + "Fujifilm X", + "Micro 4/3 System", + "Nikon F AI", + "Pentax KAF", + "Samsung NX", + "Sony Alpha", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.534, + "model": "Samyang 12mm f/2.0 NCS CS", + "mounts": [ + "Sony E", + "Fujifilm X", + "Micro 4/3 System", + "Samsung NX", + "Canon EF-M" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.0, + "model": "Samyang 12mm f/2.8 Fish-Eye ED AS NCS", + "mounts": [ + "Nikon F AI", + "Canon EF", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.0, + "model": "Samyang 12mm f/3.1 VDSLR ED AS NCS Fish-eye", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.0, + "model": "Samyang 135mm f/2 ED UMC", + "mounts": [ + "Nikon F", + "Canon EF", + "Pentax KAF", + "Micro 4/3 System", + "Sony Alpha", + "Sony E", + "Fujifilm X", + "Samsung NX" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.0, + "model": "Samyang 14mm f/2.8 AE ED AS IF UMC", + "mounts": [ + "Pentax KAF", + "Canon EF", + "Nikon F AI", + "Fujifilm X", + "Sony Alpha", + "Sony E", + "4/3 System", + "Micro 4/3 System", + "Samsung NX", + "Nikon CX", + "Canon EF-M" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.534, + "model": "Samyang 16mm f/2.0 ED AS UMC CS", + "mounts": [ + "Nikon F AF", + "Canon EF", + "Fujifilm X", + "Sony Alpha", + "Micro 4/3 System", + "Samsung NX", + "Canon EF-M", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.0, + "model": "Samyang 20mm f/1.8 ED AS UMC", + "mounts": [ + "Pentax K", + "Canon EF", + "Nikon F AI", + "Fujifilm X", + "Sony Alpha", + "Sony E", + "Micro 4/3 System", + "Samsung NX", + "Canon EF-M" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.0, + "model": "Samyang 24mm f/1.4 ED AS IF UMC", + "mounts": [ + "Canon EF", + "Sony E", + "Sony Alpha", + "Nikon F AF", + "Pentax K", + "Micro 4/3 System", + "Fujifilm X", + "Samsung NX" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.0, + "model": "Samyang 35mm f/1.4 AS UMC", + "mounts": [ + "Nikon F AI" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.605, + "model": "Samyang 35mm f/1.4 AS UMC", + "mounts": [ + "Canon EF-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.62, + "model": "Samyang 35mm T1.5 Cine Lens", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.534, + "model": "Samyang 500mm f/6.3 MC IF Mirror Lens", + "mounts": [ + "T2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.534, + "model": "Samyang 50mm f/1.4 AS UMC", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 2.0, + "model": "Samyang 7.5mm f/3.5 UMC Fish-eye MFT", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.0, + "model": "Samyang 800mm f/8 Mirror DX", + "mounts": [ + "T2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.0, + "model": "Samyang 85mm f/1.4 IF UMC Aspherical", + "mounts": [ + "Canon EF", + "Canon EF-M", + "Fujifilm X", + "Micro 4/3 System", + "Nikon F AI", + "4/3 System", + "Pentax KAF", + "Samsung NX", + "Sony Alpha", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.534, + "model": "Samyang 8mm f/2.8 UMC Fish-eye", + "mounts": [ + "Sony E", + "Fujifilm X", + "Samsung NX" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.534, + "model": "Samyang 8mm f/3.5 Fish-Eye CS", + "mounts": [ + "Pentax KAF", + "Canon EF", + "Nikon F AI", + "Fujifilm X", + "Sony Alpha", + "Sony E", + "4/3 System", + "Micro 4/3 System", + "Samsung NX" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.534, + "model": "Samyang AF 12mm f/2.0", + "mounts": [ + "Sony E", + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.0, + "model": "Samyang AF 14mm f/2.8", + "mounts": [ + "Sony E", + "Canon EF", + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.0, + "model": "Samyang AF 18mm f/2.8", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.0, + "model": "Samyang AF 24mm f/1.8", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.0, + "model": "Samyang AF 24mm f/2.8", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.0, + "model": "Samyang AF 35mm f/1.8", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.0, + "model": "Samyang AF 35mm f/2.8", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.0, + "model": "Samyang AF 45mm f/1.8", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.0, + "model": "Samyang AF 75mm f/1.8", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.0, + "model": "Samyang AF 85mm f/1.4", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.0, + "model": "Samyang T-S 24mm f/3.5 ED AS UMC", + "mounts": [ + "Nikon F AI", + "Canon EF", + "Sony Alpha", + "Sony E", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Samyang", + "crop_factor": 1.005, + "model": "Samyang XP 10mm f/3.5", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Schneider", + "crop_factor": 0.577, + "model": "28mm Digitar f/2.8", + "mounts": [ + "Mamiya 645" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Schneider", + "crop_factor": 0.51, + "model": "80mm Xenotar f/2.8", + "mounts": [ + "Rollei 6x6" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Schneider", + "crop_factor": 1.53, + "model": "D-Xenon 1:3.5-5.6 18-55mm AL", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Schneider", + "crop_factor": 1.53, + "model": "D-Xenon 1:4-5.6 50-200mm AL", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Schneider", + "crop_factor": 0.644, + "model": "LS 110mm f/2.8", + "mounts": [ + "Mamiya 645" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Schneider", + "crop_factor": 0.644, + "model": "LS 55mm f/2.8", + "mounts": [ + "Mamiya 645" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Schneider", + "crop_factor": 0.644, + "model": "LS 80mm f/2.8", + "mounts": [ + "Mamiya 645" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Schneider-Kreuznach", + "crop_factor": 1.0, + "model": "Curtagon 35mm f/4", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Schneider-Kreuznach", + "crop_factor": 1.0, + "model": "PC-Super-Angulon 28mm f/2.8", + "mounts": [ + "Canon EF", + "Nikon F AI-S", + "Pentax KAF2", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Schneider-Kreuznach", + "crop_factor": 1.529, + "model": "Retina-Curtagon 1:4/28mm", + "mounts": [ + "DKL" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Schneider-Kreuznach", + "crop_factor": 1.0, + "model": "Retina-Curtagon 28mm f/4", + "mounts": [ + "DKL" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Schneider-Kreuznach", + "crop_factor": 1.0, + "model": "Retina-Curtagon 35mm f/2.8", + "mounts": [ + "DKL" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Schneider-Kreuznach", + "crop_factor": 1.0, + "model": "Retina-Tele-Arton 85mm f/4", + "mounts": [ + "DKL" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Schneider-Kreuznach", + "crop_factor": 1.0, + "model": "Retina-Tele-Xenar 135mm f/4", + "mounts": [ + "DKL" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Schneider-Kreuznach", + "crop_factor": 1.0, + "model": "Retina-Xenon 50mm f/1.9", + "mounts": [ + "DKL" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Schneider-Kreuznach", + "crop_factor": 1.0, + "model": "Tele-Xenar 90mm f/3.5", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "105mm F2.8 DG DN MACRO | Art 020", + "mounts": [ + "Sony E", + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "14-24mm F2.8 DG DN | Art 019", + "mounts": [ + "Sony E", + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "16-28mm F2.8 DG DN | Contemporary 022", + "mounts": [ + "Sony E", + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "17mm F4 DG DN | Contemporary 023", + "mounts": [ + "Leica L", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "20mm F2 DG DN | Contemporary 022", + "mounts": [ + "Sony E", + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "24-70mm F2.8 DG DN II | Art 024", + "mounts": [ + "Leica L", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "24-70mm F2.8 DG DN | Art 019", + "mounts": [ + "Sony E", + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "24mm F2 DG DN | Contemporary 021", + "mounts": [ + "Sony E", + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "24mm F3.5 DG DN | Contemporary 021", + "mounts": [ + "Leica L", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "28-70mm F2.8 DG DN | Contemporary 021", + "mounts": [ + "Sony E", + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "28mm F1.4 DG HSM | Art", + "mounts": [ + "Nikon F AF", + "Leica L", + "Sony E", + "Canon EF", + "Sigma SA" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.534, + "model": "30mm f/1.4 DC DN", + "mounts": [ + "Sony E", + "Micro 4/3 System", + "Nikon Z", + "Fujifilm X", + "Leica L", + "Canon EF-M", + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "35mm F1.2 DG DN | Art 019", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "35mm F2 DG DN | Contemporary 020", + "mounts": [ + "Sony E", + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "45mm F2.8 DG DN | Contemporary 019", + "mounts": [ + "Sony E", + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "65mm F2 DG DN | Contemporary 020", + "mounts": [ + "Sony E", + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "70-200mm F2.8 DG OS HSM | S", + "mounts": [ + "Canon EF", + "Sigma SA", + "Nikon F", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "85mm F1.4 DG DN | Art 020", + "mounts": [ + "Sony E", + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "90mm F2.8 DG DN | Contemporary 021", + "mounts": [ + "Leica L", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.739, + "model": "fixed lens", + "mounts": [ + "sigmaDP2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.534, + "model": "Sigma 10-18mm F2.8 DC DN | Contemporary 023", + "mounts": [ + "Sony E", + "Fujifilm X", + "Leica L", + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.613, + "model": "Sigma 10-20mm f/3.5 EX DC HSM", + "mounts": [ + "Nikon F AF", + "Sigma SA", + "Canon EF-S", + "Sony Alpha", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.53, + "model": "Sigma 10-20mm f/4-5.6 EX DC", + "mounts": [ + "Nikon F AF", + "Sigma SA", + "Canon EF", + "Pentax KAF2", + "Sony Alpha", + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.523, + "model": "Sigma 100-300mm f/4 APO EX DG HSM", + "mounts": [ + "Sigma SA", + "Nikon F AF", + "Sony Alpha", + "Pentax KAF2", + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 100-300mm f/4 APO EX DG HSM + Kenko Teleplus PRO 300 AF 1.4\u00d7 DGX ext.", + "mounts": [ + "Sigma SA", + "Nikon F AF", + "Sony Alpha", + "Pentax KAF2", + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 100-400mm f/5-6.3 DG OS HSM | C +1.4x ext.", + "mounts": [ + "Canon EF", + "Sigma SA", + "Nikon F AF", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 100-400mm F5-6.3 DG OS HSM | C", + "mounts": [ + "Canon EF", + "Sigma SA", + "Nikon F AF", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 105 mm F1.4 DG HSM Art", + "mounts": [ + "Sony E", + "Canon EF", + "Leica L", + "Nikon F AF", + "Sigma SA" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.523, + "model": "Sigma 105mm f/2.8 EX DG OS HSM Macro", + "mounts": [ + "Nikon F AF", + "Sigma SA", + "Canon EF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 105mm f/2.8 EX DG OS HSM Macro", + "mounts": [ + "Nikon F AF", + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.622, + "model": "Sigma 10mm f/2.8 EX DC Fisheye HSM", + "mounts": [ + "Sigma SA", + "Nikon F AF", + "Sony Alpha", + "Pentax KAF2", + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.523, + "model": "Sigma 10mm f/2.8 EX DC Fisheye HSM", + "mounts": [ + "Nikon F AF", + "Sony Alpha", + "Pentax KAF2", + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 12-24mm f/4.5-5.6 EX DG Aspherical HSM", + "mounts": [ + "Sigma SA", + "Canon EF", + "Nikon F AF", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 12-24mm F4 DG HSM | A", + "mounts": [ + "Nikon F AF", + "Sigma SA", + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 12-24mm F4.5-5.6 II DG HSM", + "mounts": [ + "Nikon F AF", + "Canon EF", + "Pentax KAF", + "Sigma SA", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 14mm f/1.8 DG HSM | A", + "mounts": [ + "Sigma SA", + "Canon EF", + "Nikon F", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 14mm f/2.8 EX", + "mounts": [ + "Sigma SA", + "Canon EF", + "Minolta AF", + "Nikon F AF", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 14mm f/2.8 EX Aspherical HSM", + "mounts": [ + "Canon EF", + "Nikon F", + "Sigma SA", + "Sony Alpha", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.53, + "model": "Sigma 14mm f/3.5 EX", + "mounts": [ + "Sigma SA", + "Canon EF", + "Minolta AF", + "Nikon F AF", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 15-30mm f/3.5-4.5 EX DG Aspherical", + "mounts": [ + "Sigma SA", + "Canon EF", + "Minolta AF", + "Nikon F AF", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 150-500mm f/5-6.3 APO DG OS HSM", + "mounts": [ + "Nikon F AF", + "Sigma SA", + "Canon EF", + "Sony Alpha", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.613, + "model": "Sigma 150-600mm f/5-6.3 DG OS HSM | C", + "mounts": [ + "Canon EF", + "Sigma SA", + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 2.0, + "model": "Sigma 150mm f/2.8 EX DG APO HSM Macro", + "mounts": [ + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.53, + "model": "Sigma 150mm f/2.8 EX DG APO HSM Macro", + "mounts": [ + "Nikon F AF", + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.53, + "model": "Sigma 150mm f/2.8 EX DG APO HSM Macro extender + 1.4x TC", + "mounts": [ + "Nikon F AF", + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.613, + "model": "Sigma 15mm f/2.8 EX DG Diagonal Fisheye", + "mounts": [ + "Canon EF", + "Sigma SA", + "Nikon F", + "Sony Alpha", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.534, + "model": "Sigma 16-300mm F3.5-6.7 DC OS | C", + "mounts": [ + "Fujifilm X", + "Canon RF", + "Sony E", + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 2.0, + "model": "Sigma 16mm f/1.4 DC DN C", + "mounts": [ + "Micro 4/3 System", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.534, + "model": "Sigma 16mm f/1.4 DC DN Contemporary", + "mounts": [ + "Micro 4/3 System", + "Sony E", + "Fujifilm X", + "Leica L", + "Canon EF-M", + "Canon RF", + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.53, + "model": "Sigma 17-35mm f/2.8-4 EX DG", + "mounts": [ + "Sigma SA", + "Canon EF", + "Minolta AF", + "Nikon F AF", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 17-35mm F2.8-4 EX DG Aspherical HSM", + "mounts": [ + "Nikon F AF", + "Sigma SA", + "Canon EF", + "Minolta AF", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.6, + "model": "Sigma 17-40mm F1.8 DC | Art 025", + "mounts": [ + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 17-50mm f/2.8 EX DC HSM", + "mounts": [ + "Pentax KAF3" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.523, + "model": "Sigma 17-50mm f/2.8 EX DC OS HSM", + "mounts": [ + "Sigma SA", + "Nikon F AF", + "Canon EF", + "Pentax KAF2", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.53, + "model": "Sigma 17-70mm f/2.8-4 DC Macro OS HSM | C", + "mounts": [ + "Nikon F AF", + "Sigma SA", + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.523, + "model": "Sigma 17-70mm f/2.8-4 DC Macro OS HSM | Contemporary 013", + "mounts": [ + "Nikon F AF", + "Sigma SA", + "Canon EF", + "Sony Alpha", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.611, + "model": "Sigma 17-70mm f/2.8-4.5 DC Macro", + "mounts": [ + "Sigma SA", + "Canon EF", + "Minolta AF", + "Nikon F AF", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.53, + "model": "Sigma 18-125mm f/3.5-5.6 DC", + "mounts": [ + "Sigma SA", + "Canon EF", + "Nikon F AF", + "Pentax KAF", + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.53, + "model": "Sigma 18-200mm f/3.5-6.3 DC", + "mounts": [ + "Sigma SA", + "Nikon F AF", + "Canon EF", + "Pentax KAF2", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.523, + "model": "Sigma 18-200mm f/3.5-6.3 DC Macro OS HSM", + "mounts": [ + "Sigma SA", + "Nikon F AF", + "Canon EF-S", + "Pentax KAF", + "Minolta AF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.53, + "model": "Sigma 18-200mm f/3.5-6.3 II DC OS HSM", + "mounts": [ + "Sigma", + "Canon EF", + "Nikon F AF", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.523, + "model": "Sigma 18-250mm f/3.5-6.3 DC OS Macro HSM", + "mounts": [ + "Canon EF", + "Sigma SA", + "Nikon F AF", + "Sony Alpha", + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.613, + "model": "Sigma 18-300mm f/3.5-6.3 DC Macro HSM", + "mounts": [ + "Sigma SA", + "Canon EF", + "Nikon F AF", + "Sony Alpha", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.523, + "model": "Sigma 18-35mm f/1.8 DC HSM [A]", + "mounts": [ + "Canon EF", + "Sigma SA", + "Nikon F AF", + "Sony Alpha", + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.53, + "model": "Sigma 18-50mm f/2.8 EX DC", + "mounts": [ + "Sigma SA", + "Nikon F AF", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.611, + "model": "Sigma 18-50mm f/2.8 EX DC", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.611, + "model": "Sigma 18-50mm f/3.5-5.6 DC", + "mounts": [ + "Sigma SA", + "Canon EF", + "Nikon F AF", + "Pentax KAF", + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.534, + "model": "Sigma 18-50mm F2.8 DC DN | Contemporary 021", + "mounts": [ + "Sony E", + "Leica L", + "Fujifilm X", + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 180mm f/2.8 EX DG OS HSM APO Macro", + "mounts": [ + "Canon EF", + "Sigma SA", + "Nikon F AF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.523, + "model": "Sigma 180mm f/5.6 APO Macro", + "mounts": [ + "Sony Alpha", + "Olympus OM", + "Canon FD", + "Pentax K", + "Nikon F" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.534, + "model": "Sigma 19mm f/2.8 DN", + "mounts": [ + "Sony E", + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 2.0, + "model": "Sigma 19mm f/2.8 EX DN", + "mounts": [ + "Sony E", + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 20mm f/1.4 DG HSM | A", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Sigma SA" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 20mm f/1.8 EX DG", + "mounts": [ + "Sigma SA", + "Canon EF", + "Minolta AF", + "Nikon F AF", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.005, + "model": "Sigma 24-105mm f/4.0 DG OS HSM [A]", + "mounts": [ + "Canon EF", + "Sigma SA", + "Nikon F AF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.605, + "model": "Sigma 24-35mm f/2 DG HSM | Art 015", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Sigma SA" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.53, + "model": "Sigma 24-60mm f/2.8 EX DG", + "mounts": [ + "Nikon F AF", + "Canon EF", + "Pentax KAF2", + "Sony Alpha", + "Sigma SA" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 24-60mm f/2.8 EX DG", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Pentax KAF", + "Sigma SA", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.611, + "model": "Sigma 24-70mm f/2.8 EX DG Macro", + "mounts": [ + "Sigma SA", + "Canon EF", + "Minolta AF", + "Nikon F AF", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.526, + "model": "Sigma 24-70mm f/2.8 IF EX DG HSM", + "mounts": [ + "Sigma SA", + "Canon EF", + "Minolta AF", + "Nikon F AF", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.005, + "model": "Sigma 24-70mm f/2.8 IF EX DG HSM", + "mounts": [ + "Sigma SA", + "Canon EF", + "Sony Alpha", + "Nikon F AF", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 24-70mm F2.8 DG OS HSM | Art 017", + "mounts": [ + "Sigma SA", + "Canon EF", + "Nikon F" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 24mm f/1.4 DG HSM | A", + "mounts": [ + "Nikon F AF", + "Sigma SA", + "Canon EF", + "Sony E", + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.523, + "model": "Sigma 24mm f/2.8 Super Wide II", + "mounts": [ + "Minolta AF", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.53, + "model": "Sigma 28-300mm f/3.5-6.3 Macro ASP IF", + "mounts": [ + "Sigma SA", + "Canon EF", + "Minolta AF", + "Nikon F AF", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 28-70mm f/2.8 AF", + "mounts": [ + "Minolta AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 28-70mm f/2.8 EX DG", + "mounts": [ + "Sigma SA", + "Canon EF", + "Nikon F AF", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.53, + "model": "Sigma 28mm f/1.8 EX DG", + "mounts": [ + "Sigma SA", + "Canon EF", + "Minolta AF", + "Nikon F AF", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.53, + "model": "Sigma 30mm f/1.4 EX DC HSM", + "mounts": [ + "Sigma SA", + "Canon EF", + "Minolta AF", + "Nikon F AF", + "Pentax KAF", + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.62, + "model": "Sigma 30mm f/1.4 EX DC HSM", + "mounts": [ + "Canon EF", + "Sigma SA", + "Nikon F AF", + "Sony Alpha", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.534, + "model": "Sigma 30mm f/2.8 EX DN", + "mounts": [ + "Sony E", + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.613, + "model": "Sigma 30mm F1.4 DC HSM | Art 013", + "mounts": [ + "Canon EF", + "Nikon F", + "Sigma SA", + "Sony Alpha", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 35mm f/1.4 DG HSM | A", + "mounts": [ + "Nikon F AF", + "Sigma SA", + "Canon EF", + "Sony Alpha", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 35\u201380mm f/4\u20135.6 DL-II AF", + "mounts": [ + "Sony Alpha", + "Canon EF", + "Nikon F", + "Pentak K", + "Minolta AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.534, + "model": "Sigma 4.5mm f/2.8 EX DC HSM circular fisheye", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Sony Alpha", + "Pentax KAF2", + "Sigma SA" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 40mm F1.4 DG HSM | Art", + "mounts": [ + "Canon EF", + "Leica L", + "Sony E", + "Nikon F AF", + "Sigma SA" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.534, + "model": "Sigma 50-100mm f/1.8 DC HSM Art", + "mounts": [ + "Canon EF", + "Nikon F", + "Sigma SA" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.523, + "model": "Sigma 50-150mm f/2.8 APO EX DC HSM II", + "mounts": [ + "Sigma SA", + "Nikon F AF", + "Sony Alpha", + "Pentax KAF2", + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.534, + "model": "Sigma 50-150mm f/2.8 APO EX DC OS HSM", + "mounts": [ + "Sigma SA", + "Nikon F AF", + "Sony Alpha", + "Pentax KAF2", + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.53, + "model": "Sigma 50-500mm f/4-6.3 EX DG HSM", + "mounts": [ + "Sigma SA", + "Canon EF", + "Minolta AF", + "Nikon F AF", + "Pentax KAF", + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 50-500mm f/4.5-6.3 APO DG OS HSM", + "mounts": [ + "Sigma SA", + "Canon EF", + "Nikon F AF", + "Pentax KAF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.005, + "model": "Sigma 50mm f/1.4 DG HSM [A]", + "mounts": [ + "Canon EF", + "Sigma SA", + "Nikon F AF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 50mm f/1.4 EX DG HSM", + "mounts": [ + "Sigma SA", + "Canon EF", + "Nikon F AF", + "Sony Alpha", + "Pentax KAF", + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.531, + "model": "Sigma 55-200mm f/4-5.6 DC", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Pentax KAF2", + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.534, + "model": "Sigma 56 mm F1.4 DC DN | C 018", + "mounts": [ + "Sony E", + "Fujifilm X", + "Leica L", + "Canon EF-M", + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 2.0, + "model": "Sigma 56mm F1.4 DC DN | C 018", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.605, + "model": "Sigma 60-600mm F4.5-6.3 DG OS HSM | Sports 018", + "mounts": [ + "Canon EF-S", + "Nikon F AF", + "Sigma SA" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.605, + "model": "Sigma 60-600mm F4.5-6.3 DG OS HSM | Sports 018 + 1.4\u00d7 ext.", + "mounts": [ + "Canon EF-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 2.0, + "model": "Sigma 60mm f/2.8 DN", + "mounts": [ + "Sony E", + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.61, + "model": "Sigma 70-200mm f/2.8 EX DG HSM", + "mounts": [ + "Canon EF", + "Sigma SA", + "Nikon F AF", + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.526, + "model": "Sigma 70-200mm f/2.8 EX DG Macro HSM II", + "mounts": [ + "4/3 System", + "Sigma SA", + "Nikon F AF", + "Sony Alpha", + "Pentax KAF2", + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.005, + "model": "Sigma 70-200mm f/2.8 EX DG OS HSM", + "mounts": [ + "Sigma SA", + "Nikon F AF", + "Sony Alpha", + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.534, + "model": "Sigma 70-200mm f/2.8 EX DG OS HSM", + "mounts": [ + "Sigma SA", + "Nikon F AF", + "Sony Alpha", + "Canon EF", + "Pentax KAF2", + "4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.611, + "model": "Sigma 70-300mm f/4-5.6 APO Macro Super II", + "mounts": [ + "Sigma SA", + "Canon EF", + "Minolta AF", + "Nikon F AF", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 70-300mm f/4-5.6 DG Macro", + "mounts": [ + "Sony Alpha", + "Sigma SA", + "Pentax KAF2", + "Canon EF", + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.53, + "model": "Sigma 70-300mm f/4-5.6 DG OS", + "mounts": [ + "Sigma SA", + "Canon EF", + "Minolta AF", + "Nikon F AF", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.53, + "model": "Sigma 70-300mm f/4-5.6 DL Macro", + "mounts": [ + "Sigma SA", + "Canon EF", + "Minolta AF", + "Nikon F AF", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.534, + "model": "Sigma 70mm f/2.8 EX DG Macro", + "mounts": [ + "Sigma SA", + "Canon EF", + "Nikon F AF", + "Sony Alpha", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.613, + "model": "Sigma 8-16mm f/4.5-5.6 DC HSM", + "mounts": [ + "Sigma SA", + "Canon EF", + "Nikon F AF", + "Pentax KAF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 80-400mm f/4.5-5.6 EX DG OS", + "mounts": [ + "Canon EF", + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.534, + "model": "Sigma 85mm f/1.4 EX DG HSM", + "mounts": [ + "Sigma SA", + "Canon EF", + "Nikon F AF", + "Sony Alpha", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.0, + "model": "Sigma 85mm f/1.4 EX DG HSM", + "mounts": [ + "Pentax KAF3", + "Nikon F AF", + "Sigma SA", + "Canon EF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.523, + "model": "Sigma 8mm f/3.5 EX DG circular fisheye", + "mounts": [ + "Nikon F AF", + "Sigma SA", + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sigma", + "crop_factor": 1.534, + "model": "Sigma 90mm f/2.8 Macro AF", + "mounts": [ + "Sony Alpha", + "Sigma SA", + "Nikon F AF", + "Canon EF-S", + "Pentax KAF", + "Minolta AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "SLR Magic", + "crop_factor": 2.0, + "model": "SLR Magic 8mm f/4", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Soligor", + "crop_factor": 1.531, + "model": "MC Soligor C/D Wide-Auto 1:2.8 f=24mm", + "mounts": [ + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "Carl Zeiss Distagon T* 24mm F2 ZA SSM (SAL24F20Z)", + "mounts": [ + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "Carl Zeiss Sonnar T* 135mm F1.8 ZA (SAL135F18Z)", + "mounts": [ + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.534, + "model": "E 10-18mm f/4 OSS", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.534, + "model": "E 11mm f/1.8", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.534, + "model": "E 16-50mm f/3.5-5.6 OSS PZ", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.534, + "model": "E 16-55mm f/2.8 G", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.534, + "model": "E 16-70mm f/4 ZA OSS", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.534, + "model": "E 16mm f/2.8", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.534, + "model": "E 18-135mm f/3.5-5.6 OSS", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.534, + "model": "E 18-200mm f/3.5-6.3 OSS", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.534, + "model": "E 18-200mm f/3.5-6.3 OSS LE", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.534, + "model": "E 18-55mm f/3.5-5.6 OSS", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.534, + "model": "E 20mm f/2.8", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.534, + "model": "E 24mm f/1.8 ZA", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.534, + "model": "E 30mm f/3.5 Macro", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.534, + "model": "E 35mm f/1.8 OSS", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.534, + "model": "E 50mm f/1.8 OSS", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.534, + "model": "E 55-210mm f/4.5-6.3 OSS", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.534, + "model": "E 70-350mm f/4.5-6.3 G OSS", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.534, + "model": "E PZ 18-105mm f/4 G OSS", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 100-400mm f/4.5-5.6 GM OSS", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 12-24mm f/4 G", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 14mm f/1.8 GM", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 16-35mm f/2.8 GM", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 16-35mm f/4 ZA OSS", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 16mm f/1.8 G", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 20-70mm f/4 G", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 200-600mm f/5.6-6.3 G OSS", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 20mm f/1.8 G", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 24-105mm f/4 G OSS", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 24-240mm f/3.5-6.3 OSS", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 24-70mm f/2.8 GM", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 24-70mm f/2.8 GM II", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.534, + "model": "FE 24-70mm f/4 ZA OSS", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 24mm f/1.4 GM", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 24mm f/2.8 G", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 28-60mm f/4-5.6", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 28-70mm f/3.5-5.6 OSS", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 28mm f/2", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 28mm f/2 + Sony SEL075 UWC", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 35mm f/1.4 GM (SEL35F14GM)", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 35mm f/1.4 ZA", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 35mm f/1.8", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 35mm f/2.8 ZA", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 40mm f/2.5 G", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 50mm f/1.2 GM", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 50mm f/1.8", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 50mm f/2.5 G", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 50mm f/2.8 Macro", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 55mm f/1.8 ZA", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 70-200mm f/2.8 GM OSS", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 70-200mm f/4 G OSS", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 70-300mm f/4.5-5.6 G OSS", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 85mm f/1.4 GM", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 85mm f/1.8", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "FE 90mm f/2.8 Macro G OSS", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 2.73, + "model": "fixed lens", + "mounts": [ + "sonyRX100" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 2.73, + "model": "fixed lens", + "mounts": [ + "sonyRX100II" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 2.73, + "model": "fixed lens", + "mounts": [ + "sonyRX100III" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 2.66, + "model": "fixed lens", + "mounts": [ + "sonyRX100VI" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 5.58, + "model": "fixed lens", + "mounts": [ + "sonyHX300" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 7.87, + "model": "fixed lens", + "mounts": [ + "sonyXperiaZ3" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 2.73, + "model": "fixed lens", + "mounts": [ + "sonyRX10" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 2.73, + "model": "fixed lens", + "mounts": [ + "sonyRX10II" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 2.73, + "model": "fixed lens", + "mounts": [ + "sonyRX10III" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 2.7, + "model": "fixed lens", + "mounts": [ + "sonyRX0M2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 2.7, + "model": "fixed lens", + "mounts": [ + "sonyZV1" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.527, + "model": "Minolta/Sony AF DT 18-70mm f/3.5-5.6 (D)", + "mounts": [ + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "Sony 28-75mm F2.8 SAM", + "mounts": [ + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "Sony 35mm f/1.4 G", + "mounts": [ + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.534, + "model": "Sony 50mm f/1.4", + "mounts": [ + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "Sony 70-300mm f/4.5-5.6 G SSM II", + "mounts": [ + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.5, + "model": "Sony 85mm F2.8 SAM (SAL85F28)", + "mounts": [ + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "Sony AF 100mm F2.8 Macro", + "mounts": [ + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "Sony AF 500mm F8 Reflex", + "mounts": [ + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.527, + "model": "Sony AF DT 16-105mm f/3.5-5.6", + "mounts": [ + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.523, + "model": "Sony AF DT 18-250mm f/3.5-6.3", + "mounts": [ + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.523, + "model": "Sony AF DT 30mm f/2.8 SAM Macro", + "mounts": [ + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.527, + "model": "Sony AF DT 55-200mm f/4-5.6 SAM", + "mounts": [ + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.527, + "model": "Sony DT 16-50mm f/2.8 SSM", + "mounts": [ + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.523, + "model": "Sony DT 18-135mm f/3.5-5.6 SAM", + "mounts": [ + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.527, + "model": "Sony DT 18-55mm f/3.5-5.6 SAM", + "mounts": [ + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.523, + "model": "Sony DT 35mm f/1.8 SAM", + "mounts": [ + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.523, + "model": "Sony DT 50mm f/1.8 SAM", + "mounts": [ + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.523, + "model": "Sony DT 55-300mm f/4.5-5.6 SAM", + "mounts": [ + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.534, + "model": "VCL-ECF1 fisheye converter", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.534, + "model": "VCL-ECU1 ultra wide converter", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "Zeiss Planar T* 50mm f/1.4 ZA SSM", + "mounts": [ + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "Zeiss Vario-Sonnar T* 16-35mm f/2.8 ZA SSM II", + "mounts": [ + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sony", + "crop_factor": 1.0, + "model": "Zeiss Vario-Sonnar T* 24-70mm f/2.8 ZA SSM II", + "mounts": [ + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Steinheil M\u00fcnchen", + "crop_factor": 1.0, + "model": "Auto-D-Quinaron 35mm f/2.8", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Steinheil M\u00fcnchen", + "crop_factor": 1.0, + "model": "Auto-D-Tele-Quinar 135mm f/2.8", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Steinheil M\u00fcnchen", + "crop_factor": 1.0, + "model": "Culminar 85mm f/2.8", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sun", + "crop_factor": 2.0, + "model": "Sun Wide YS-28 28mm f/2.8", + "mounts": [ + "Olympus OM", + "T2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Sun", + "crop_factor": 1.534, + "model": "Sun Wide Zoom Macro 24-40mm f/3.5", + "mounts": [ + "M42", + "Pentax K", + "Canon EF", + "Nikon F", + "Contax/Yashica", + "Olympus OM" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.528, + "model": "Tamron 10-24mm f/3.5-4.5 Di II VC HLD", + "mounts": [ + "Nikon F AF", + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron 100-400mm F/4.5-6.3 Di VC USD A035", + "mounts": [ + "Nikon F AF", + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.534, + "model": "Tamron 11-20mm f/2.8 Di III-A RXD (B060)", + "mounts": [ + "Sony E", + "Canon RF", + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 2.0, + "model": "Tamron 14-150mm f/3.5-5.8 Di III", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron 150-500mm F5-6.7 Di III VC VXD", + "mounts": [ + "Sony E", + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.613, + "model": "Tamron 16-300mm f/3.5-6.3 Di II VC PZD Macro B016", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.534, + "model": "Tamron 16-300mm f/3.5-6.3 Di II VC PZD Macro B016", + "mounts": [ + "Nikon F AF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron 17-35mm f/2.8-4 Di OSD (A037)", + "mounts": [ + "Canon EF", + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.534, + "model": "Tamron 17-70mm F/2.8 Di III-A VC RXD", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.558, + "model": "Tamron 18-200mm f/3.5-6.3 Di II VC", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.534, + "model": "Tamron 18-200mm f/3.5-6.3 Di III VC", + "mounts": [ + "Sony E", + "Canon EF-M" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.534, + "model": "Tamron 18-300mm F3.5-6.3 DiIII-A VC VXD B061X", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 2.0, + "model": "Tamron 200mm f/3.5 CT-200 BBAR", + "mounts": [ + "Tamron Adaptall" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron 20mm F2.8 Di III OSD M1:2", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.005, + "model": "Tamron 28-300mm f/3.5-6.3 Di VC PZD", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron 28-75mm F2.8 Di III VXD G2 (A063)", + "mounts": [ + "Sony E", + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron 35-100mm F2.8 Di III VXD", + "mounts": [ + "Nikon Z", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron 35-150mm F/2-2.8 Di III VXD", + "mounts": [ + "Nikon Z", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron 35-150mm f/2.8-4 Di VC OSD (A043)", + "mounts": [ + "Nikon F AF", + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.53, + "model": "Tamron 35-70mm f/3.5 CF Macro", + "mounts": [ + "Nikon F", + "Pentax K" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron 50-400 mm F4.5-6.3 Di III VC VXD (A067)", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.534, + "model": "Tamron 70-180mm F/2.8 Di III VC VXD G2", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron 70-180mm f/2.8 Di III VXD A056", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron 70-300mm F4.5-6.3 Di III RXD", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.53, + "model": "Tamron AF 17-50mm f/2.8 XR Di-II LD (Model A16)", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Pentax KAF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.53, + "model": "Tamron AF 18-200mm f/3.5-6.3 XR Di II LD Aspherical (IF) Macro", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Pentax KAF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.53, + "model": "Tamron AF 18-250mm f/3.5-6.3 Di II LD Aspherical (IF) Macro", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Pentax KAF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.534, + "model": "Tamron AF 18-270mm F/3.5-6.3 Di II VC LD Aspherical (IF) Macro", + "mounts": [ + "Canon EF", + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.613, + "model": "Tamron AF 18-270mm f/3.5-6.3 Di II VC PZD", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.53, + "model": "Tamron AF 18-400mm f/3.5-6.3 Di II VC HLD (B028)", + "mounts": [ + "Canon EF", + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.611, + "model": "Tamron AF 19-35mm f/3.5-4.5", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.53, + "model": "Tamron AF 28-300mm f/3.5-6.3 XR Di LD Aspherical (IF)", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Pentax KAF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron AF 28-300mm f/3.5-6.3 XR Di VC LD Aspherical (IF) Macro", + "mounts": [ + "Nikon F AF", + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron AF 70-300mm f/4-5.6 Di LD Tele-Macro (1:2)", + "mounts": [ + "Pentax KAF2", + "Canon EF", + "Nikon F AF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.53, + "model": "Tamron AF 70-300mm f/4-5.6 LD Macro 1:2", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Pentax KAF2", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron AF 80-210mm f/4.5-5.6 280D", + "mounts": [ + "Nikon F AF", + "Canon EF", + "Sony Alpha", + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron E 17-28mm F2.8-2.8", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.534, + "model": "Tamron E 18-300mm F3.5-6.3 B061", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.5, + "model": "Tamron E 24mm F2.8", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron E 28-200mm F2.8-5.6 A071", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron E 28-75mm F2.8-2.8", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron E 35mm F2.8 F053", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron SP 15-30mm f/2.8 Di VC USD", + "mounts": [ + "Nikon F AF", + "Canon EF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron SP 15-30mm f/2.8 Di VC USD G2 (A041)", + "mounts": [ + "Canon EF", + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.534, + "model": "Tamron SP 150-600mm f/5-6.3 Di VC USD", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron SP 24-70mm f/2.8 Di VC USD", + "mounts": [ + "Canon EF", + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron SP 24-70mm F/2.8 Di VC USD G2 (A032)", + "mounts": [ + "Canon EF", + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron SP 35mm f/1.4 Di USD", + "mounts": [ + "Nikon F AF", + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron SP 35mm f/1.8 Di VC USD F012", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron SP 45mm F/1.8 Di VC USD", + "mounts": [ + "Nikon F AF", + "Canon EF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.005, + "model": "Tamron SP 70-200mm f/2.8 Di VC USD", + "mounts": [ + "Nikon F AF", + "Canon EF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron SP 70-200mm F/2.8 Di VC USD G2", + "mounts": [ + "Canon EF", + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.534, + "model": "Tamron SP 70-300mm f/4-5.6 Di USD", + "mounts": [ + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron SP 70-300mm f/4-5.6 Di VC USD (A005)", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.005, + "model": "Tamron SP 85mm f/1.8 Di VC USD F016", + "mounts": [ + "Nikon F AF", + "Canon EF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron SP 90mm f/2.8 Di VC USD Macro 1:1", + "mounts": [ + "Canon EF", + "Sony Alpha", + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.53, + "model": "Tamron SP AF 10-24mm f/3.5-4.5 Di II LD Aspherical (IF)", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Pentax KAF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.62, + "model": "Tamron SP AF 11-18mm f/4.5-5.6 Di-II LD Aspherical (IF)", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Sony Alpha", + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron SP AF 150-600mm F/5-6.3 Di VC USD G2 (A022)", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron SP AF 17-35mm f/2.8-4 Di LD Aspherical (IF)", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.53, + "model": "Tamron SP AF 17-50mm f/2.8 XR Di II LD Aspherical (IF)", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Pentax KAF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.613, + "model": "Tamron SP AF 17-50mm f/2.8 XR Di II VC LD Aspherical (IF)", + "mounts": [ + "Canon EF", + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.611, + "model": "Tamron SP AF 24-135mm f/3.5-5.6 AD Aspherical (IF) Macro", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron SP AF 24-135mm F/3.5-5.6 AD Aspherical (IF) Macro", + "mounts": [ + "Nikon F AF", + "Canon EF", + "Sony Alpha", + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron SP AF 28-105mm f/2.8 LD Aspherical IF", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron SP AF 28-75mm f/2.8 XR Di LD Aspherical (IF) Macro", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Pentax KAF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.523, + "model": "Tamron SP AF 60mm f/2 Di II LD (IF) Macro", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron SP AF 70-200mm f/2.8 Di LD (IF) Macro", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Sony Alpha", + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.0, + "model": "Tamron SP AF 90mm f/2.8 Di Macro 172E", + "mounts": [ + "Nikon F AF", + "Canon EF", + "Pentax KAF2", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tamron", + "crop_factor": 1.53, + "model": "Tamron SP AF 90mm f/2.8 Di Macro 1:1", + "mounts": [ + "Nikon F AF", + "Canon EF", + "Pentax KAF2", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 1.0, + "model": "E 20mm f/2", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 2.0, + "model": "RMC Tokina 28mm f/2.8", + "mounts": [ + "4/3 System", + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 1.0, + "model": "Tokina 17mm f/3.5 AT-X 17 AF Pro", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 1.0, + "model": "Tokina 17mm f/3.5 RMC II", + "mounts": [ + "Nikon F AI" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 1.0, + "model": "Tokina 20-35mm f/3.5-4.5 AF-235 II", + "mounts": [ + "Canon EF", + "Sony Alpha", + "Nikon F AF", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 1.611, + "model": "Tokina 28-70mm f/2.8 AT-X Pro SV", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 1.53, + "model": "Tokina 500mm f/8 RMC Mirror Lens", + "mounts": [ + "Pentax K", + "Canon FD", + "Minolta M", + "Olympus OM", + "Nikon F AI" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 1.53, + "model": "Tokina 80-200mm f/4.5-5.6 SZ-X", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Pentax KAF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 1.0, + "model": "Tokina AF 100mm f/2.8 AT-X Pro D M100 Macro", + "mounts": [ + "Canon EF", + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 1.534, + "model": "Tokina AF 100mm f/2.8 AT-X Pro D Macro", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 1.0, + "model": "Tokina AF 11-16mm f/2.8 AT-X Pro DX", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 1.534, + "model": "Tokina AF 11-20mm f/2.8 AT-X Pro DX", + "mounts": [ + "Nikon F AF", + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 1.53, + "model": "Tokina AF 12-24mm f/4 AT-X Pro DX", + "mounts": [ + "Canon EF", + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 1.534, + "model": "Tokina AF 12-28mm f/4 AT-X Pro DX", + "mounts": [ + "Canon EF", + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 1.0, + "model": "Tokina AF 16-28mm f/2.8 AT-X Pro SD FX", + "mounts": [ + "Canon EF", + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 1.53, + "model": "Tokina AF 17mm f/3.5 AT-X Pro", + "mounts": [ + "Canon EF", + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 1.611, + "model": "Tokina AF 19-35mm f/3.5-4.5", + "mounts": [ + "Canon EF", + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 1.0, + "model": "Tokina AF 28-80mm f/2.8 AT-X 280 Pro", + "mounts": [ + "Pentax KAF", + "Canon EF", + "Sony Alpha", + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 1.0, + "model": "Tokina AF 80-200mm f/2.8 AT-X 828 Pro", + "mounts": [ + "Pentax KAF", + "Canon EF", + "Sony Alpha", + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 1.61, + "model": "Tokina AT-X 11-20 F2.8 PRO DX", + "mounts": [ + "Canon EF", + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 1.53, + "model": "Tokina AT-X 116 PRO DX II (11-16mm f/2.8)", + "mounts": [ + "Canon EF", + "Nikon F AF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 1.523, + "model": "Tokina AT-X 14-20 F2 PRO DX", + "mounts": [ + "Nikon F AF", + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 1.0, + "model": "Tokina AT-X 24-70mm f/2.8 PRO FX", + "mounts": [ + "Canon EF", + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 1.0, + "model": "Tokina AT-X AF SD 80-400mm f/4.5-5.6", + "mounts": [ + "Pentax KAF", + "Canon EF", + "Nikon F AF", + "Sony Alpha" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 1.534, + "model": "Tokina AT-X M35 PRO DX (AF 35mm f/2.8 Macro)", + "mounts": [ + "Nikon F AF", + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 1.523, + "model": "Tokina atx-i 11-16mm F2.8 CF", + "mounts": [ + "Nikon F AF", + "Canon EF-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 1.523, + "model": "Tokina ATX-i 11-20mm F2.8 CF", + "mounts": [ + "Nikon F AF", + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Tokina", + "crop_factor": 1.534, + "model": "Tokina TELE-AUTO 135mm f/2.8", + "mounts": [ + "M42", + "4/3 System", + "Minolta MD" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Toshiba", + "crop_factor": 2.0, + "model": "Tosner MC 28mm f/2.8", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "TTArtisan", + "crop_factor": 1.0, + "model": "50mm F1.4 Tilt", + "mounts": [ + "Sony E", + "Fujifilm X", + "Canon RF", + "Nikon Z", + "Micro 4/3 System", + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "TTArtisan", + "crop_factor": 1.534, + "model": "TTArtisan 35mm f/1.8", + "mounts": [ + "Sony E", + "Fujifilm X", + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "TTArtisan", + "crop_factor": 2.0, + "model": "TTArtisan 7.5mm f/2 Fisheye", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "TTArtisan", + "crop_factor": 1.534, + "model": "TTArtisan AF 23mm F1.8", + "mounts": [ + "Sony E", + "Fujifilm X", + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "TTArtisan", + "crop_factor": 1.534, + "model": "TTArtisan AF 27mm F2.8", + "mounts": [ + "Fujifilm X", + "Sony E", + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "TTArtisan", + "crop_factor": 1.0, + "model": "TTArtisan AF 40mm F2", + "mounts": [ + "Nikon Z", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "TTArtisan", + "crop_factor": 1.534, + "model": "TTArtisan APS-C 23mm F1.4", + "mounts": [ + "Sony E", + "Fujifilm X", + "Canon EF-M", + "Canon RF", + "Nikon Z", + "Micro 4/3 System", + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "TTArtisan", + "crop_factor": 1.534, + "model": "TTArtisan APS-C 25mm f/2.0", + "mounts": [ + "Sony E", + "Fujifilm X", + "Canon EF-M", + "Canon RF", + "Nikon Z", + "Micro 4/3 System", + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Venus", + "crop_factor": 1.0, + "model": "Laowa 10mm f/2.8 Zero-D FF", + "mounts": [ + "Sony E", + "Nikon Z", + "Leica L", + "Canon RF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Venus", + "crop_factor": 1.0, + "model": "Laowa 12mm f/2.8 Zero-D", + "mounts": [ + "Canon EF", + "Nikon F", + "Pentax KAF3", + "Sony Alpha", + "Sony E", + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Venus", + "crop_factor": 1.0, + "model": "Laowa 15mm f/2.0 Zero-D", + "mounts": [ + "Canon RF", + "Leica L", + "Nikon Z", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Venus", + "crop_factor": 1.0, + "model": "Laowa 15mm F/4 Wide Angle Macro", + "mounts": [ + "Nikon F AF", + "Canon EF", + "Sony E", + "Sony Alpha", + "Pentax KAF4", + "M42", + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Venus", + "crop_factor": 2.0, + "model": "Laowa 17mm f/1.8 C-Dreamer", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Venus", + "crop_factor": 1.0, + "model": "Laowa 60mm f/2.8 2X Ultra-Macro", + "mounts": [ + "Canon EF", + "Nikon F", + "Pentax K", + "Sony Alpha", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Venus", + "crop_factor": 2.0, + "model": "Laowa 7.5mm f/2.0", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Venus", + "crop_factor": 1.0, + "model": "Laowa 85mm f/5.6 2X Ultra Macro APO", + "mounts": [ + "Sony E", + "Canon RF", + "Leica M", + "Leica L", + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Venus", + "crop_factor": 1.529, + "model": "Laowa 9mm f/2.8 Zero-D", + "mounts": [ + "Fujifilm X", + "Sony E", + "Canon EF-M", + "Micro 4/3 System", + "Nikon Z", + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Venus", + "crop_factor": 1.529, + "model": "Laowa 9mm f/5.6 FF RL", + "mounts": [ + "Nikon Z", + "Sony E", + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Venus", + "crop_factor": 2.0, + "model": "Laowa C&D-Dreamer MFT 10mm F2.0", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Viltrox", + "crop_factor": 1.53, + "model": "Viltrox 23mm F1.4 E", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Viltrox", + "crop_factor": 1.534, + "model": "Viltrox 25mm F1.7 E", + "mounts": [ + "Sony E", + "Fujifilm X", + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Viltrox", + "crop_factor": 1.534, + "model": "Viltrox 35mm F1.7 E", + "mounts": [ + "Sony E", + "Fujifilm X", + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Viltrox", + "crop_factor": 1.529, + "model": "Viltrox AF 13mm F1.4", + "mounts": [ + "Fujifilm X", + "Sony E", + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Viltrox", + "crop_factor": 1.534, + "model": "Viltrox AF 15mm F1.7 Air", + "mounts": [ + "Sony E", + "Fujifilm X", + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Viltrox", + "crop_factor": 1.0, + "model": "Viltrox AF 16mm F1.8 FE/L/Z", + "mounts": [ + "Sony E", + "Leica L", + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Viltrox", + "crop_factor": 1.0, + "model": "Viltrox AF 20mm F2.8 Z", + "mounts": [ + "Nikon Z", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Viltrox", + "crop_factor": 1.53, + "model": "Viltrox AF 23mm F1.4 XF/Z/L", + "mounts": [ + "Fujifilm X", + "Nikon Z", + "Leica L" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Viltrox", + "crop_factor": 1.0, + "model": "Viltrox AF 24mm f/1.8 Z", + "mounts": [ + "Nikon Z", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Viltrox", + "crop_factor": 1.534, + "model": "Viltrox AF 27mm F1.2 PRO", + "mounts": [ + "Fujifilm X", + "Sony E", + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Viltrox", + "crop_factor": 1.534, + "model": "Viltrox AF 33mm f/1.4 XF", + "mounts": [ + "Fujifilm X", + "Sony E", + "Nikon Z", + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Viltrox", + "crop_factor": 1.0, + "model": "Viltrox AF 35mm F1.8 Z", + "mounts": [ + "Nikon Z", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Viltrox", + "crop_factor": 1.0, + "model": "Viltrox AF 50mm f/1.8 Z", + "mounts": [ + "Nikon Z", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Viltrox", + "crop_factor": 1.534, + "model": "Viltrox AF 56mm f/1.2 Pro", + "mounts": [ + "Sony E", + "Nikon Z", + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Viltrox", + "crop_factor": 1.534, + "model": "Viltrox AF 56mm f/1.4 XF", + "mounts": [ + "Fujifilm X", + "Nikon Z", + "Sony E", + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Viltrox", + "crop_factor": 1.0, + "model": "Viltrox AF 85mm f/1.8 Z", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Viltrox", + "crop_factor": 1.534, + "model": "Viltrox AF 9mm f/2.8 Z/E/XF", + "mounts": [ + "Nikon Z", + "Sony E", + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Viltrox", + "crop_factor": 1.0, + "model": "Viltrox PFU RBMH 20mm f/1.8 ASPH", + "mounts": [ + "Sony E", + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Vivitar", + "crop_factor": 1.523, + "model": "Vivitar 100mm f/3.5 AF Macro", + "mounts": [ + "Canon EF", + "Sony Alpha", + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Vivitar", + "crop_factor": 1.534, + "model": "Vivitar Series 1 70-210mm 1:3.5 SN 22\u2026", + "mounts": [ + "Nikon F", + "Pentax K", + "Canon FD", + "Canon FL", + "Olympus OM", + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Voigtl\u00e4nder", + "crop_factor": 1.0, + "model": "15mm F4.5 Super Wide Heliar Aspherical III", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Voigtl\u00e4nder", + "crop_factor": 1.0, + "model": "APO-Lanthar 35mm F2 Aspherical II", + "mounts": [ + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Voigtl\u00e4nder", + "crop_factor": 1.0, + "model": "APO-Lanthar 50mm F2 Aspherical", + "mounts": [ + "Sony E", + "Nikon Z" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Voigtl\u00e4nder", + "crop_factor": 1.0, + "model": "Color Skopar 20mm F3.5 SLII Aspherical", + "mounts": [ + "Pentax KAF4", + "Canon EF", + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Voigtl\u00e4nder", + "crop_factor": 1.529, + "model": "Color-Skopar X 1:2.8/50", + "mounts": [ + "DKL" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Voigtl\u00e4nder", + "crop_factor": 1.0, + "model": "Color-Ultron 50mm f/1.8", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Voigtl\u00e4nder", + "crop_factor": 1.0, + "model": "Heliar-Hyper Wide 10mm F5.6", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Voigtl\u00e4nder", + "crop_factor": 2.0, + "model": "Nokton 25mm f/0.95 Type II", + "mounts": [ + "Micro 4/3 System" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Voigtl\u00e4nder", + "crop_factor": 1.0, + "model": "Nokton 28mm F1.5 Aspherical", + "mounts": [ + "Sony E", + "Nikon Z", + "Leica M" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Voigtl\u00e4nder", + "crop_factor": 1.0, + "model": "Nokton 58mm F1.4 SLII", + "mounts": [ + "Nikon F AF", + "Pentax KAF4" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Voigtl\u00e4nder", + "crop_factor": 1.529, + "model": "Skoparex 1:3.4/35", + "mounts": [ + "DKL" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Voigtl\u00e4nder", + "crop_factor": 1.0, + "model": "Ultron 40mm f/2 SL-II Aspherical", + "mounts": [ + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Yashica", + "crop_factor": 1.0, + "model": "Yashica DSB 55mm f/2", + "mounts": [ + "Contax/Yashica" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Yashica", + "crop_factor": 1.0, + "model": "Yashica ML 50mm f/1.7", + "mounts": [ + "Contax/Yashica" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Yashica", + "crop_factor": 1.0, + "model": "Yashica ML 50mm f/2", + "mounts": [ + "Contax/Yashica" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Yashica", + "crop_factor": 1.0, + "model": "Yashica ML 55mm F/4 Macro", + "mounts": [ + "Contax/Yashica" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Yongnuo", + "crop_factor": 1.534, + "model": "YN11mm F/1.8S DA DSM WL", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Yongnuo", + "crop_factor": 2.0, + "model": "Yongnuo 25mm f/1.7 II", + "mounts": [ + "Micro 4/3" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Yongnuo", + "crop_factor": 1.534, + "model": "Yongnuo YN 33mm F/1.4S DA DSM WL Pro", + "mounts": [ + "Sony E", + "Nikon Z", + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Yongnuo", + "crop_factor": 1.62, + "model": "Yongnuo YN 35mm f/2", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Yongnuo", + "crop_factor": 1.0, + "model": "Yongnuo YN 35mm f/2", + "mounts": [ + "Canon EF", + "Nikon F" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Yongnuo", + "crop_factor": 1.0, + "model": "Yongnuo YN 50mm f/1.8", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Yongnuo", + "crop_factor": 1.0, + "model": "Yongnuo YN 50mm f/1.8 II", + "mounts": [ + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.0, + "model": "Batis 18mm f/2.8", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.0, + "model": "Batis 25mm f/2", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.0, + "model": "Batis 85mm f/1.8", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.0, + "model": "Carl Zeiss Distagon T* 2.8/21 ZF.2", + "mounts": [ + "Nikon F AI-S", + "Canon EF", + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.0, + "model": "Carl Zeiss Distagon T* 2/35 ZF.2", + "mounts": [ + "Nikon F AI-S", + "Canon EF", + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.0, + "model": "Carl Zeiss Distagon T* 3.5/18 ZF.2", + "mounts": [ + "Nikon F AF", + "Canon EF", + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.538, + "model": "Carl Zeiss Jena 1Q Biotar 1:2 f=58mm T", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.0, + "model": "Carl Zeiss Jena Biotar 58mm f/2", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.0, + "model": "Carl Zeiss Jena Flektogon 20mm f/4", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.0, + "model": "Carl Zeiss Jena Flektogon 35mm f/2.4", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.0, + "model": "Carl Zeiss Jena Pancolar 50mm f/1.8", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.0, + "model": "Carl Zeiss Jena Sonnar 135mm f/3.5", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.0, + "model": "Carl Zeiss Jena Tessar 50mm f/2.8", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.0, + "model": "Carl Zeiss Jena Triotar-v2 135mm f/4", + "mounts": [ + "M42" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.523, + "model": "Carl Zeiss Planar T* 1.4/50 ZF.2", + "mounts": [ + "Nikon F AF", + "Canon EF", + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.0, + "model": "Carl Zeiss Planar T* 1.4/50 ZF.2", + "mounts": [ + "Nikon F AF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.0, + "model": "Carl Zeiss Sonnar T* 180mm f/2.8 MMJ", + "mounts": [ + "Contax/Yashica" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.0, + "model": "Distagon 18mm f/4", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.0, + "model": "Distagon 28mm f/2.8 MMJ", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 3.93, + "model": "fixed lens", + "mounts": [ + "lumia1020" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 6.02, + "model": "fixed lens", + "mounts": [ + "lumia950" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.0, + "model": "Loxia 21mm f/2.8", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.0, + "model": "Loxia 50mm f/2 Planar T*", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.0, + "model": "Makro-Planar T* 2/100", + "mounts": [ + "Nikon F AF", + "Canon EF", + "Pentax KAF4" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.0, + "model": "Planar 50mm f/1.7 AEJ", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.0, + "model": "Sonnar 85mm f/2.8 AEJ", + "mounts": [ + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 6.26, + "model": "Standard", + "mounts": [ + "lumia1520" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.53, + "model": "Touit 2.8/12", + "mounts": [ + "Fujifilm X", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.529, + "model": "Touit 2.8/50M", + "mounts": [ + "Fujifilm X" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.534, + "model": "Touit 32mm f/1.8", + "mounts": [ + "Fujifilm X", + "Sony E" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.0, + "model": "Zeiss Distagon T* 25mm f/2.8 ZF.2", + "mounts": [ + "Nikon F AI-S", + "Pentax KAF2" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.0, + "model": "Zeiss Milvus 1.4/50", + "mounts": [ + "Canon EF", + "Nikon F AI-S" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zeiss", + "crop_factor": 1.0, + "model": "Zeiss Otus 85mm f/1.4", + "mounts": [ + "Nikon F AF", + "Canon EF" + ], + "source": [ + "lensfun" + ] + }, + { + "brand": "Zenit", + "crop_factor": 1.529, + "model": "Zenitar MC 16mm f/2.8", + "mounts": [ + "M42", + "Nikon F", + "Canon EF", + "Pentax K" + ], + "source": [ + "lensfun" + ] + } + ], + "updated_at": "2026-05-11", + "version": 1 +} diff --git a/compress.rs b/compress.rs index cf4aa3f7..d59c62ca 100644 --- a/compress.rs +++ b/compress.rs @@ -18,7 +18,7 @@ fn main() { walkdir::WalkDir::new(&pwd).into_iter().for_each(|e| { if let Ok(entry) = e { let f_name = entry.path().to_string_lossy().replace('\\', "/"); - if f_name.ends_with(".json") || f_name.ends_with(".gyroflow") { + if (f_name.ends_with(".json") && !f_name.ends_with("/camera_database.json")) || f_name.ends_with(".gyroflow") { if let Ok(data) = std::fs::read_to_string(&f_name) { let parsed = serde_json::from_str::(&data).unwrap(); let pos = f_name.find(&pwd).unwrap(); From 809617910e1f1f2e3cbf39468b05c30b98f9fa1a Mon Sep 17 00:00:00 2001 From: pickaxe <54486432+ProspectOre@users.noreply.github.com> Date: Mon, 11 May 2026 00:21:40 -0700 Subject: [PATCH 2/3] Normalize profile camera metadata --- ...EK7000pro_170__4k_16by9_3840x2160-30.00fps.json | 2 +- ...SO_v50 elite___4k_16by9_3840x2160-60.00fps.json | 2 +- ...tock_smoothing_4k_16by9_3840x2160-30.00fps.json | 2 +- ..._v50 pro_wide__4k_16by9_3840x2160-30.00fps.json | 2 +- ...AKASO_v50x___2.7k_16by9_2716x1524-30.00fps.json | 2 +- ...ization Off_1080p_16by9_1920x1080-60.00fps.json | 2 +- ...ite_Factory__2.7k_16by9_2719x1520-30.00fps.json | 2 +- .../Akaso_V50 X___4k_16by9_3840x2160-30.01fps.json | 2 +- ..._v50 elite__30_4k_16by9_3840x2160-30.00fps.json | 4 ++-- ...owa 12mm_4.6k_C4k_16by9_4096x2304-25.00fps.json | 2 +- ...a Prime 24mm__C4k_16by9_4096x2304-25.00fps.json | 2 +- ... LF_Xeen 35mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ... LF_Xeen 85mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...0 mm Cooke S4__4k_16by9_3840x2160-25.00fps.json | 2 +- ...Cooke s4 (02)__4k_16by9_3840x2160-25.00fps.json | 2 +- ...27mm Cooke S4__4k_16by9_3840x2160-25.00fps.json | 4 ++-- ...2mm_2.8k RAW_2.7k_16by9_2880x1620-25.00fps.json | 4 ++-- ...e 6mm T2.1__1080p_16by9_1920x1080-24.00fps.json | 2 +- ...Cine 6mm T2.1__4k_16by9_3840x2160-24.00fps.json | 2 +- ...m f2.8-4.5_8_1_4k_16by9_3840x2160-25.00fps.json | 2 +- ...40 mm f2.8__C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ... F4_BRAW8_1_C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ...m 2.8 olympus__4k_16by9_3840x2160-60.00fps.json | 2 +- ..._ProRes 422_1080p_16by9_1920x1080-60.00fps.json | 2 +- ...15mm Lumix__C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ...oRes 422 4k_C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...ra 4k_15mm__1080p_16by9_1920x1080-60.00fps.json | 2 +- ...I_C4k_1.90by1_4096x2160-25.00fps - Shikijo.json | 2 +- ...wa Cine_DCI_C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...ike MFT_DCI_C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...era 4k_7.5__C4k_1.90by1_4096x2160-27.28fps.json | 2 +- ...m fish eye__C4k_1.90by1_4096x2160-60.00fps.json | 2 +- ...s 7.5mm_DCI_C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...isans 35mm__C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ..._ProRes 422_1080p_16by9_1920x1080-60.00fps.json | 2 +- ... 24mm F2.8__C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ...10-18mm_DCI_C4k_1.90by1_4096x2160-24.00fps.json | 2 +- ...0mm 1.8_DCI_C4k_1.90by1_4096x2160-24.00fps.json | 2 +- ...s Turbo II__C4k_1.90by1_4096x2160-30.00fps.json | 2 +- ...I Speedbooster_4k_16by9_3840x2160-30.00fps.json | 2 +- ...peedbooster_C4k_1.90by1_4096x2160-30.00fps.json | 2 +- ...s 24-105mm EF__4k_16by9_3840x2160-60.00fps.json | 2 +- ..._DJI 15mm 1.7__4k_16by9_3840x2160-25.00fps.json | 2 +- ...mm F1.7_DCI_C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...PH_DCI f1.7_C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ...mm_60fs prores_4k_16by9_3840x2160-60.00fps.json | 2 +- ...ktar2 25mm__C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ... 4k_H-X015__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...-2 58mm f2_8_1_4k_16by9_3840x2160-25.00fps.json | 2 +- ...k_IAOWA 7.5mm__4k_16by9_3840x2160-50.00fps.json | 2 +- ...eedbooster__C4k_1.90by1_4096x2160-60.00fps.json | 2 +- ...mm cine_DCI_C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...LAOWA 6mm_2_C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ..._LAOWA 6mm__C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ..._LAOWA 7.5__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...OWA 7.5mm 2.0__4k_16by9_3840x2160-25.00fps.json | 2 +- ...PRORES422HQ_C4k_1.90by1_4096x2160-23.98fps.json | 2 +- ...ated at 8_1_C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ...ores 4k HQ_C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...d at 12_1_1080p_1.90by1_1920x1012-50.00fps.json | 2 +- ...AOWA 9mm_HQ_C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ..._LAOWA_F6.2_C4k_1.90by1_4096x2160-60.00fps.json | 2 +- ...mera 4k_LAOWA__4k_16by9_3840x2160-60.00fps.json | 2 +- ...wa 10mm f8__C4k_1.90by1_4096x2160-30.00fps.json | 2 +- ...Laowa 10mm__1080p_16by9_1920x1080-24.00fps.json | 2 +- ...a 10mm__C4k_1.90by1_4096x2160-24.00fps - 2.json | 2 +- ...a 10mm__C4k_1.90by1_4096x2160-24.00fps - 4.json | 2 +- ...Laowa 10mm__C4k_1.90by1_4096x2160-24.00fps.json | 2 +- ...owa 17mm T1.9__4k_16by9_3840x2160-60.00fps.json | 2 +- ...owa 17mm f1.8__4k_16by9_3840x2160-24.00fps.json | 2 +- ...mm 2.1__1080p_16by9_1920x1080-50.00fps - 2.json | 2 +- ...I Prores LT_C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ... DCI 4096 x_C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ... DCI 4096 x_C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ... DCI 4096 x_C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...DCI 4096 x_C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ....5 mm f2.0__1080p_16by9_1920x1080-24.00fps.json | 2 +- ...7.5 mm f2.0__C4k_1.90by1_4096x2160-0.00fps.json | 2 +- ...k_16by9_3840x2160-25.00fps - Matteo AREA39.json | 2 +- ...mm_uhd raw 8_1_4k_16by9_3840x2160-25.00fps.json | 2 +- ....0_BRAW DCI_C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ...m F2.0_BRAW_C4k_1.90by1_4096x2160-60.00fps.json | 2 +- ...mm F2.0_DCI_C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ... ProRes 422_C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ..._f2 - 30fps_C4k_1.90by1_4096x2160-30.00fps.json | 2 +- ...6x 8_1 BRAW_C4k_1.90by1_4096x2160-60.00fps.json | 2 +- ...wa 7.5mm f2.0__4k_16by9_3840x2160-24.00fps.json | 2 +- ...__C4k_1.90by1_4096x2160-25.00fps - DiWhite.json | 2 +- ...es 2048x1080_2k_1.90by1_2048x1080-50.00fps.json | 2 +- ...5mm f2_BRAW_C4k_1.90by1_4096x2160-23.98fps.json | 2 +- ...wa 7.5mm_50FPS_4k_16by9_3840x2160-50.00fps.json | 2 +- ...mm_BRAW 8.1_C4k_2.38by1_4096x1720-24.00fps.json | 2 +- ...e at 12_1_1080p_1.90by1_1920x1012-50.00fps.json | 2 +- ...5mm_ProRes 422_4k_16by9_3840x2160-25.00fps.json | 2 +- ....5mm_ProRes_C4k_1.90by1_4096x2160-24.00fps.json | 2 +- ...aowa 7.5mm__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...k_Laowa 7.5mm__4k_16by9_3840x2160-24.00fps.json | 2 +- ...k_Laowa 7.5mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...k_Laowa 7.5mm__4k_16by9_3840x2160-60.00fps.json | 2 +- ...aowa 7.5mm__C4k_1.90by1_4096x2160-60.00fps.json | 2 +- ... Prores HQ_C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ...a 9mm 2.8_BRAW_4k_16by9_3840x2160-60.00fps.json | 2 +- ...8_ProRes LT_C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ...Laowa 9mm MFT__4k_16by9_3840x2160-50.00fps.json | 2 +- ...m ZeroD_DCI_C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ... 9mm f 2.8__C4k_1.90by1_4096x2160-23.98fps.json | 2 +- ...a 9mm f2.8_3_1_4k_16by9_3840x2160-50.00fps.json | 2 +- ...mm f2.8_DCI_C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...aowa 9mm f2.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...owa 9mm_DCI_C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ..._Laowa 9mm__1080p_16by9_1920x1080-23.98fps.json | 2 +- ...ne 7.5mm T2.1__4k_16by9_3840x2160-50.00fps.json | 2 +- ... FF14mm F4__C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ...wa FF14mm_C_C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...8_Lens at 35mm_4k_16by9_3840x2160-50.00fps.json | 2 +- ... f2.2_Proxy_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...ix 12-35_12_C4k_1.90by1_4096x2160-60.00fps.json | 2 +- ...s Proxy 420_C4k_1.90by1_4096x2160-60.00fps.json | 2 +- ...c_4k DCI 24_C4k_1.90by1_4096x2160-24.00fps.json | 2 +- ...lende f3,8_C4k_1.90by1_4096x2160-30.00fps.json | 2 +- ...es LT Ultra HD_4k_16by9_3840x2160-50.00fps.json | 2 +- ...ICRO CINE_C_C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...0_4k ProRes_C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ...ike 12mm T2.2__4k_16by9_3840x2160-24.90fps.json | 2 +- ...mm f2.2_16_9_2.5k_16by9_2688x1512-25.00fps.json | 2 +- ...T2.9_DCI 4k_C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...4 35mm_BRAW_C4k_1.90by1_4096x2160-24.00fps.json | 2 +- ...tar 6mm_PRORES_4k_16by9_3840x2160-50.00fps.json | 2 +- ...,8_4k 59fps_C4k_1.90by1_4096x2160-59.94fps.json | 2 +- ...-40 f2,8_4k_C4k_1.90by1_4096x2160-59.94fps.json | 2 +- ...mpus 12mm 2.0__4k_16by9_3840x2160-25.00fps.json | 2 +- ...mm F2.0_DCI_C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ...mm f1.8_DCI_C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ...mpus 45mm 1.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...45mm_4k DCI_C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ...e Body Cap__C4k_1.90by1_4096x2160-59.94fps.json | 2 +- ... crop factor)__4k_16by9_3840x2160-29.97fps.json | 2 +- ...nic 15mm_60FPS_4k_16by9_3840x2160-60.00fps.json | 2 +- ...lens at 9mm_C4k_1.90by1_4096x2160-23.98fps.json | 2 +- ...-60mmF2.8-4.0__4k_16by9_3840x2160-30.00fps.json | 2 +- ...nic H-X015__C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ...es HQ Ultra HD_4k_16by9_3840x2160-30.00fps.json | 2 +- ...nsor Window_1080p_16by9_1920x1080-50.00fps.json | 2 +- ....I.S._@12mm_C4k_2.38by1_4096x1720-30.00fps.json | 2 +- ... 12-35mm f2.8__4k_16by9_3840x2160-50.00fps.json | 2 +- ...ores Proxy8_C4k_1.90by1_4096x2160-23.98fps.json | 2 +- ... MAGIC 8mm__C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ...ide Angle MFT__4k_16by9_3840x2160-29.33fps.json | 2 +- ...c 8mm f4.0__C4k_1.90by1_4096x2160-60.00fps.json | 2 +- ...ic 8mm F4_C_C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ...k ProRes HQ_C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...myang 16mm__C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ..._Samyang 24mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ..._Samyang 35mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ..._Samyang 85mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...t_DCI 2.4_1_C4k_2.38by1_4096x1720-60.00fps.json | 2 +- ...8_DCI 2.4_1_C4k_2.38by1_4096x1720-24.00fps.json | 2 +- ...Sigma 16mm__C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...ROX @ 35mm__C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...x Speedbooster_4k_16by9_3840x2160-29.97fps.json | 2 +- ... 18-35_18mm_C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...ster)_1100 1.8_4k_16by9_3840x2160-50.00fps.json | 2 +- ...m f2.8-4.5_8_1_4k_16by9_3840x2160-25.00fps.json | 2 +- ...m_Prores Proxy_4k_16by9_3840x2160-25.00fps.json | 2 +- ...edbooster_24mm_4k_16by9_3840x2160-50.00fps.json | 2 +- ... f3.5_@10mm_C4k_1.90by1_4096x2160-60.00fps.json | 2 +- ...amorphic 24mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...amorphic 50mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...amorphic 75mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ..._90 deg DCI_C4k_1.90by1_4096x2160-24.00fps.json | 2 +- ...rphic_90deg_C4k_1.90by1_4096x2160-24.00fps.json | 2 +- ...Shutter_ 45_C4k_1.90by1_4096x2160-60.00fps.json | 2 +- ...M2 II 0.71x_C4k_1.90by1_4096x2160-59.94fps.json | 2 +- ... f2.8 @14mm_C4k_1.90by1_4096x2160-59.94fps.json | 2 +- ...owa 12mm F2.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...5 Viltrox .71__4k_16by9_3840x2160-50.00fps.json | 2 +- ...anon ef 18-55__4k_16by9_3840x2160-25.00fps.json | 2 +- ...mm f2.8_DCI_C4k_1.90by1_4096x2160-29.97fps.json | 2 +- ...owa6mmt2.1__C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...a 4k_laowa7.5__4k_16by9_3840x2160-30.00fps.json | 2 +- ...a 4k_laowa7.5__4k_16by9_3840x2160-50.00fps.json | 2 +- ...a7.5__C4k_1.90by1_4096x2160-30.00fps - 001.json | 2 +- ...k_laowa7.5__C4k_1.90by1_4096x2160-30.00fps.json | 2 +- ...k_laowa7.5__C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ...a 4k_laowa__C4k_1.90by1_4096x2160-27.58fps.json | 2 +- ...mix7-14_7mm_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...mpus 12mm_C_C4k_1.90by1_4096x2160-23.98fps.json | 2 +- ...ng 14mm 0.64x__4k_16by9_3840x2160-50.00fps.json | 2 +- ...7.5_DCI 422_C4k_1.90by1_4096x2160-60.00fps.json | 2 +- ...ILTROX_17mm_C4k_1.90by1_4096x2160-24.00fps.json | 2 +- ...makro 50mm f2__4k_16by9_3840x2160-50.00fps.json | 2 +- ...f1.4_4k DCI_C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...r 50mm f1.4_6K_6k_16by9_6144x3456-25.00fps.json | 2 +- ..._Samyang 12mm__6k_16by9_6144x3456-24.00fps.json | 2 +- ... ED AS UMC CS__6k_16by9_6144x3456-50.00fps.json | 2 +- ...1.90by1_4096x2160-24.00fps - Tobias Thorne.json | 2 +- ...mm Rokinon_100_6k_16by9_6144x3456-50.00fps.json | 2 +- ..._Pro Res LT_C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ...m f2.8_@24mm_6k_1.94by1_6144x3160-24.00fps.json | 2 +- ...mm Zero D_BRAW_6k_16by9_6144x3456-30.00fps.json | 2 +- ...mm T3.1_100_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...gma 18-35_18mm_4k_16by9_3840x2160-30.00fps.json | 2 +- ...gma 18-35_BRAW_4k_16by9_3840x2160-30.00fps.json | 2 +- ...-35 @20mm_f5.0_6k_16by9_6144x3456-25.00fps.json | 2 +- ...5mm @18mm_f5.0_6k_16by9_6144x3456-25.00fps.json | 2 +- ...m T2.9 Sony E__6k_16by9_6144x3456-30.00fps.json | 2 +- ... 35mm_12_1_C4k_1.90by1_4096x2160-30.00fps.json | 2 +- ...18 5.6_10mm_C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...m 4.5-5.6_10mm_6k_16by9_6144x3456-50.00fps.json | 2 +- ...6 IS STM_6k_720p_1.89by1_1432x756-50.00fps.json | 2 +- ...18mm_ProRes_C4k_1.90by1_4096x2160-59.94fps.json | 2 +- ...5 2.8f II_16mm_6k_16by9_6144x3456-23.98fps.json | 2 +- ... Series_ProRes_4k_16by9_3840x2160-23.98fps.json | 2 +- ....4 L USM_@16mm_6k_16by9_6144x3456-50.00fps.json | 2 +- ...on 24-70 f2.8__4k_16by9_3840x2160-23.98fps.json | 2 +- ....8k 120fps_2.7k_1.89by1_2864x1512-60.00fps.json | 2 +- ...S II_2.8K30_1080p_16by9_1920x1080-30.00fps.json | 2 +- ...24-105_Pro Res_4k_16by9_3840x2160-50.00fps.json | 2 +- ...10-18mm_ProRes_4k_16by9_3840x2160-24.00fps.json | 2 +- ...E 21mm_12_1_C4k_1.90by1_4096x2160-30.00fps.json | 2 +- ... T2.1_12_1 RAW_6k_16by9_6144x3456-50.00fps.json | 2 +- ...ILM 21mm T2.1__6k_16by9_6144x3456-50.00fps.json | 2 +- ... T2.1_RAW 12_1_6k_16by9_6144x3456-50.00fps.json | 2 +- ... T2.1_RAW 12_1_6k_16by9_6144x3456-50.00fps.json | 2 +- ...K 36mm_12_1_C4k_1.90by1_4096x2160-30.00fps.json | 2 +- ...S 10-18mm_10mm_4k_16by9_3840x2160-24.00fps.json | 2 +- ...5mm T2.1_6K_C4k_1.90by1_4096x2160-30.00fps.json | 2 +- ...@_35mm_Full 6K_6k_16by9_6144x3456-25.00fps.json | 2 +- ...T on E_6K BRAW_6k_16by9_6144x3456-50.00fps.json | 2 +- ...ted in 12_1_1080p_16by9_1920x1080-50.00fps.json | 2 +- ..._ProRes 422_C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ...4mm RF_BRAW 6K_6k_12by5_6144x2560-50.00fps.json | 2 +- ...mm Anamorphic__6k_16by9_6144x3456-50.00fps.json | 2 +- ...Laowa 9mm 2.8__6k_16by9_6144x3456-50.00fps.json | 2 +- ...9mm RF_T2.9 & _6k_16by9_6144x3456-50.00fps.json | 2 +- ...m f2.8 Zero-D__6k_12by5_6144x2560-50.00fps.json | 2 +- ..._5744x3024-25.00fps - Giovanni Strondl - 2.json | 2 +- ...mm_BRAW 5.7k_5k_1.90by1_5744x3024-25.00fps.json | 2 +- ...Laowa 9mm_BRAW_6k_16by9_6144x3456-25.00fps.json | 2 +- ...FF 11mm_DCI_C4k_1.90by1_4096x2160-30.00fps.json | 2 +- ...r_Sony E mount_6k_16by9_6144x3456-50.00fps.json | 2 +- ...ke s35 35mm_6K_6k_16by9_6144x3456-24.00fps.json | 2 +- ... T1.9_6K 2.4_1_6k_12by5_6144x2560-29.97fps.json | 2 +- ...ang 12mm F2.0__4k_16by9_3840x2160-29.97fps.json | 2 +- ...ony E-Mount_1080p_16by9_1920x1080-23.98fps.json | 2 +- ...m_Sony E-Mount_6k_16by9_6144x3456-23.98fps.json | 2 +- ...6mm_Full Frame_4k_16by9_3840x2160-50.00fps.json | 2 +- ...Samyang_6K RAW_6k_16by9_6144x3456-50.00fps.json | 2 +- ...-35 2.8-4_17mm_4k_16by9_3840x2160-24.00fps.json | 2 +- ...2470 f2.8_150s_4k_16by9_3840x2160-25.00fps.json | 2 +- ...p_16by9_1920x1080-50.00fps - Benjamin YUNG.json | 2 +- ...50-100_BRAW_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...m 1_1.8_6K Raw_4k_16by9_3840x2160-25.00fps.json | 2 +- ...m f1.4 Sony E__6k_16by9_6144x3456-25.00fps.json | 2 +- ...ron 15-35mm_6k_480p_16by9_960x540-25.00fps.json | 2 +- ...1-16 F2.8_BRAW_6k_16by9_6144x3456-50.00fps.json | 2 +- ..._6144x3456-50.00fps - Georgios Vamvounakis.json | 2 +- ..._2864x1512-60.00fps - Georgios Vamvounakis.json | 2 +- ...a 11-16_6K DCI_6k_16by9_6144x3456-25.00fps.json | 2 +- ...0mm EF_6K BRAW_6k_16by9_6144x3456-50.00fps.json | 2 +- ..._laowa 12mm_50_4k_16by9_3840x2160-50.00fps.json | 2 +- ...14mm_ProRes_C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ...a 10mm f.4__C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ... 18 35 1 8__C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...ine 35mm t1.4__6k_16by9_6144x3456-25.00fps.json | 2 +- ...8 (IF) DX_11mm_4k_16by9_3840x2160-30.00fps.json | 2 +- ... 12-28mm F4_4K_4k_16by9_3840x2160-50.00fps.json | 2 +- ...mm_Prores 422_C4k_16by9_4096x2304-23.98fps.json | 2 +- ...0-55_4k DCI_C4k_1.90by1_4096x2160-29.97fps.json | 2 +- ...s_1.8mm_Medium_4k_16by9_3840x2160-30.00fps.json | 2 +- ...Loris_1.8mm__2.7k_16by9_2704x1520-60.00fps.json | 2 +- ..._Loris_4K_2K_2.7k_16by9_2704x1520-60.00fps.json | 2 +- ...addx_Loris___2.7k_16by9_2704x1520-60.00fps.json | 2 +- ...ano_2.1mm f2.1__480p_4by3_960x720-60.00fps.json | 2 +- ...a pro micro___720p_16by9_1280x720-60.00fps.json | 2 +- ... OFF LDC OFF_2.7k_16by9_2704x1520-60.05fps.json | 2 +- ...x_Orca_Wide__1080p_16by9_1920x1080-0.00fps.json | 2 +- ...C OFF EIS OFF_2.7k_16by9_2704x1520-0.00fps.json | 2 +- ..._Orca__60 fps_1080p_4by3_1920x1440-0.00fps.json | 2 +- ..._Orca__EIS off_4k_16by9_3840x2160-29.98fps.json | 2 +- ..._Orca__Jaune_720p_16by9_1280x720-119.94fps.json | 2 +- ...x_Orca__Sergey_4k_16by9_3840x2160-24.98fps.json | 2 +- ...addx_Orca___1080p_16by9_1920x1080-49.96fps.json | 2 +- ...addx_Orca___1080p_16by9_1920x1080-59.24fps.json | 2 +- ...Caddx_Orca___1080p_4by3_1920x1440-50.57fps.json | 2 +- ...Caddx_Orca___2.7k_16by9_2704x1520-59.96fps.json | 2 +- .../Caddx_Orca___4k_16by9_3840x2160-24.98fps.json | 2 +- .../Caddx_Orca___4k_16by9_3840x2160-29.98fps.json | 2 +- .../Caddx_Orca___4k_16by9_3840x2160-29.99fps.json | 2 +- ...x_Orca__no eis_4k_16by9_3840x2160-29.97fps.json | 2 +- ...er V2_TARSIER__4k_16by9_3840x2160-25.01fps.json | 2 +- ...rsier V2_V2__1080p_4by3_1920x1440-50.10fps.json | 2 +- ..._Tarsier v2___2.7k_16by9_2704x1520-0.00fps.json | 2 +- ...e v2_GoPro__1080p_16by9_1920x1080-60.00fps.json | 2 +- ..._nebula pro___720p_16by9_1280x720-60.00fps.json | 2 +- ...v2 lens_v1cam_1080p_4by3_1920x1440-0.00fps.json | 2 +- ... wide__4k_16by9_3840x2160-59.94fps - Spark.json | 4 ++-- ...59.94fps wide__4k_16by9_3840x2160-59.94fps.json | 4 ++-- ...anon_200d___1080p_16by9_1920x1080-25.00fps.json | 2 +- ... 14bit RAW_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...L 2. 14bit RAW_2k_16by9_2240x1260-25.00fps.json | 2 +- ....8 STM_ML 3.5k_2k_16by9_2240x1260-25.00fps.json | 2 +- ... 2.0_1080p_16by9_1920x1080-25.00fps - huso.json | 2 +- ..., 23.9, FHD_1080p_16by9_1920x1080-23.98fps.json | 2 +- ...-200 L USM__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...4-70 2.8_HD_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...it lenses2__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...k II_24-70__1080p_16by9_1920x1080-23.98fps.json | 2 +- ...canon 50mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...8 l ii usm_HD_720p_16by9_1280x720-50.00fps.json | 2 +- ...on_6d_28mm__1080p_16by9_1920x1080-29.97fps.json | 2 +- ...on_6d_50mm__1080p_16by9_1920x1080-29.97fps.json | 2 +- ...i_50mm 1.8__1080p_16by9_1920x1080-29.97fps.json | 2 +- ...s 55-250mm__1080p_16by9_1920x1080-29.97fps.json | 2 +- ..._18-200_125_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...70d_18-200__1080p_16by9_1920x1080-25.00fps.json | 2 +- ....8_125 1.8_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...0d_50mm1.8__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...0mm_125 1.8_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...0d_50mm_125_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...oom 55-250__1080p_16by9_1920x1080-29.97fps.json | 2 +- ...tter - 1000_1080p_16by9_1920x1080-25.00fps.json | 2 +- ... 17-50 2.8__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...9_C4k_2.20by1_4992x2268-23.98fps - jules.p.json | 2 +- ...S 2000d_ef-s__720p_16by9_1280x720-59.94fps.json | 2 +- ..._efs 18-55__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...anon 16-35__C4k_1.90by1_4096x2160-29.97fps.json | 2 +- ... 28mm f2.8__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...n 50mm 1.4__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...Lens IS off_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...p_16by9_1920x1080-59.94fps - Luca Roverati.json | 2 +- ... f4_24mm Clog3_4k_16by9_3840x2160-50.00fps.json | 2 +- ...5c_Canon 50mm__4k_16by9_3840x2160-50.00fps.json | 2 +- ... FF_8K RAW LT_6k_16by9_7680x4320-59.94fps.json | 2 +- ...a 12-24mm_12mm_4k_16by9_3840x2160-50.00fps.json | 2 +- ...2,0 Zero-D_24p_4k_16by9_3840x2160-59.94fps.json | 2 +- ...a 14mm F4.0_8K_6k_16by9_7680x4320-25.00fps.json | 2 +- ...a 14mm F4.0_8K_6k_16by9_7680x4320-29.97fps.json | 2 +- ...h265 420 10bit_6k_16by9_7680x4320-25.00fps.json | 2 +- ...5 f4_@105mm_C4k_1.90by1_4096x2160-59.94fps.json | 2 +- ...RF16 2.8_RAW_8k_1.90by1_8192x4320-29.97fps.json | 2 +- ...2.8_S35 crop_5k_1.90by1_5951x3140-29.97fps.json | 2 +- ....8_S35 crop_C4k_1.90by1_4096x2160-29.97fps.json | 2 +- ...6 2.8_xfavc_C4k_1.90by1_4096x2160-59.94fps.json | 2 +- ...05 f4_@50mm_C4k_1.90by1_4096x2160-59.94fps.json | 2 +- ...f24 105F4L_uhd_4k_16by9_3840x2160-59.94fps.json | 2 +- ... 18-55mm_HD_1080p_16by9_1920x1080-29.97fps.json | 2 +- ...50 mm f1.8__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...gma 18-35 @35__4k_16by9_3840x2160-59.94fps.json | 2 +- ....5k_7by3_2520x1080-23.98fps - Michael Voit.json | 2 +- ...n_EOS m_C35mm__2k_16by9_2192x1234-25.00fps.json | 2 +- ...f-s 24mm 2.8__720p_16by9_1736x976-24.01fps.json | 2 +- ...TM_24mm_1080p_16by9_1920x1080-59.94fps - 2.json | 2 +- ...05 f4__4k_16by9_3840x2160-59.94fps - xm li.json | 2 +- ...k_16by9_3840x2160-29.97fps - Navid Atrvash.json | 2 +- ...on_EOS rp___1080p_16by9_1920x1080-25.00fps.json | 2 +- ...70d_13-55_m_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...Profile Neutro_4k_16by9_3840x2160-25.00fps.json | 2 +- ..._R5c_16F2.8__8k_1.90by1_8192x4320-25.00fps.json | 2 +- ...non_R5c_24-70__4k_16by9_3840x2160-50.00fps.json | 2 +- ...lektogon_60fps_4k_16by9_3840x2160-23.98fps.json | 2 +- ...24-70F2.8_50mm_4k_16by9_3840x2160-50.00fps.json | 2 +- ...Mark II_16 MM__4k_16by9_3840x2160-50.00fps.json | 2 +- ...k II_24105__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...II_2470RF24mm__4k_16by9_3840x2160-50.00fps.json | 2 +- ... F2.8 II 16mm__4k_16by9_3840x2160-59.94fps.json | 2 +- ...05mm F4 105mm__4k_16by9_3840x2160-59.94fps.json | 2 +- ...105mm F4 50mm__4k_16by9_3840x2160-59.94fps.json | 2 +- ...Standard (IPB)_4k_16by9_3840x2160-23.98fps.json | 2 +- ...Standard (IPB)_4k_16by9_3840x2160-23.98fps.json | 2 +- ...rk II__24mm_1080p_16by9_1920x1080-29.97fps.json | 2 +- ...n_R6 Mark II___4k_16by9_3840x2160-59.94fps.json | 2 +- ...ard(IPB) C-log_4k_16by9_3840x2160-23.98fps.json | 2 +- ...4-105 f4_59.94_4k_16by9_3840x2160-59.94fps.json | 2 +- ...00 F11 1125_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...24-70 mm_CP_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...f2 STM_22mm_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...IS STM_11mm_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...Canon_m50___1080p_16by9_1920x1080-59.94fps.json | 2 +- ..._r5_ef16-35_24_4k_16by9_3840x2160-25.00fps.json | 2 +- ...Canon_r5c_35__720p_16by9_1280x720-30.00fps.json | 2 +- Canon/Canon_r5c_35___9by16_336x640-24.00fps.json | 2 +- ..._Canon_16mm_C4k_1.90by1_4096x2160-23.98fps.json | 2 +- ...rf 24-70mm__C4k_1.90by1_4096x2160-24.00fps.json | 2 +- ...non_r6_24-105__4k_16by9_3840x2160-25.00fps.json | 2 +- ...6_50mm stm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...igma 24-70__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...off stabilizer_4k_16by9_3840x2160-29.97fps.json | 2 +- ..._r7_7Artisans__4k_16by9_3840x2160-29.97fps.json | 2 +- ...ef24-70f2.8_is_4k_16by9_3840x2160-29.97fps.json | 2 +- ...l t7_18-55__1080p_16by9_1920x1080-29.97fps.json | 2 +- ... is stm_fhd_1080p_16by9_1920x1080-29.97fps.json | 2 +- ...rttical 10__1080p_16by9_1920x1080-23.98fps.json | 2 +- DJI/DJI_AIR 2S___4k_16by9_3840x2160-29.97fps.json | 2 +- ... Unit_14.66__1080p_16by9_1920x1080-0.00fps.json | 2 +- ...m, f2.1_Wide_1080p_16by9_1920x1080-0.00fps.json | 2 +- ...or calm flying_720p_4by3_1440x1080-0.00fps.json | 2 +- ...t___480p_4by3_960x720-60.00fps - Leo Barua.json | 2 +- DJI/DJI_Air Unit___480p_4by3_960x720-60.00fps.json | 2 +- ...JI_Air Unit___720p_16by9_1280x720-60.00fps.json | 2 +- ...JI_Air Unit___720p_4by3_1440x1080-60.00fps.json | 2 +- DJI/DJI_Air2___4k_16by9_3840x2160-29.97fps.json | 2 +- ...JI_Air2s___4k_16by9_3840x2160-29.97fps (2).json | 2 +- ...es per sec._1080p_16by9_1920x1080-29.97fps.json | 2 +- ... Air 2__2.7k_2.5k_16by9_2688x1512-25.00fps.json | 2 +- ...FOV_ 83_2K 25f_4k_16by9_3840x2160-25.00fps.json | 2 +- ...V_ 83_2K 60f_2.7k_16by9_2720x1530-59.94fps.json | 2 +- ...s gimbal 4K_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...Single Shot_1080p_16by9_1920x1080-59.94fps.json | 2 +- DJI/DJI_Mini 2___4k_16by9_3840x2160-29.97fps.json | 2 +- ...3_CMOS 11.3__2.7k_16by9_2720x1530-59.94fps.json | 2 +- ...I_action 3__50_4k_16by9_3840x2160-25.00fps.json | 2 +- ...it___480p_4by3_960x720-60.00fps - PraewVee.json | 4 ++-- ...70FOV_60 fps_1080p_16by9_1920x1080-0.00fps.json | 2 +- ...Box 2_Default__4k_16by9_3840x2160-29.97fps.json | 2 +- ..._Box 2_Wide__1080p_4by3_1920x1440-59.94fps.json | 2 +- ..._Box 2_Wide__2.5k_16by9_2560x1440-50.00fps.json | 2 +- ...record videos_2.5k_16by9_2560x1440-0.00fps.json | 2 +- ...ox 2_stock__1080p_16by9_1920x1080-59.93fps.json | 2 +- ..._Box2_stock__1080p_4by3_1920x1440-59.94fps.json | 2 +- ...box_v1_25 fps_2.7k_4by3_2704x2028-25.00fps.json | 2 +- ..._KIT 15-45__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...lan 50mm f1.1__4k_16by9_3840x2160-50.00fps.json | 2 +- ...18__4k_16by9_3840x2160-59.94fps - cm q - 2.json | 2 +- ...film_X-H2s_18__4k_16by9_3840x2160-59.94fps.json | 2 +- ..._35mm f1.4__1080p_16by9_1920x1080-30.00fps.json | 2 +- ...H2s_75mm f1.2__4k_16by9_3840x2160-59.94fps.json | 2 +- ...L USM_Open Gate_6k_3by2_6240x4160-29.97fps.json | 2 +- ... Speedbooster__4k_16by9_3840x2160-25.00fps.json | 2 +- ...s Speedbooster__6k_3by2_6240x4160-25.00fps.json | 2 +- ...eedbooster__C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ... Speedbooster__4k_16by9_3840x2160-25.00fps.json | 2 +- ...s Speedbooster__6k_3by2_6240x4160-25.00fps.json | 2 +- ...eedbooster__C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ... Speedbooster__4k_16by9_3840x2160-25.00fps.json | 2 +- ...s Speedbooster__6k_3by2_6240x4160-25.00fps.json | 2 +- ...eedbooster__C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...XF 16-80F4__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...40x2160-59.94fps - ACH Digital Photography.json | 2 +- ...log2 All-I H265_6k_3by2_6240x4160-24.00fps.json | 2 +- ...-50 (18mm)__1080p_16by9_1920x1080-24.00fps.json | 2 +- ...2s_Sigma18-50__4k_16by9_3840x2160-29.97fps.json | 2 +- ..._17mm 60ss f2.8_6k_3by2_6240x4160-29.97fps.json | 2 +- ...s_XF35mm F1.4__4k_16by9_3840x2160-59.94fps.json | 2 +- ...s_sigma 18-50__4k_16by9_3840x2160-59.94fps.json | 2 +- ...x 23mm f1.4_48_4k_16by9_3840x2160-24.00fps.json | 2 +- ...h2S_DZ50mm__C4k_1.90by1_4096x2160-24.00fps.json | 2 +- ..._TTArtisan_6.2k_6k_3by2_6240x4160-25.00fps.json | 2 +- ...X-h2S_dz35__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...h2S_xf 56 1.2__4k_16by9_3840x2160-24.00fps.json | 2 +- ...s_18mm__4k_16by9_3840x2160-50.00fps - tree.json | 2 +- ...00mmF4__4k_16by9_3840x2160-50.00fps - tree.json | 2 +- ...13mm Viltrox_F8_6k_3by2_6240x4160-24.00fps.json | 2 +- ...5 2.8_23.97_C4k_1.90by1_4096x2160-24.00fps.json | 2 +- ...75mm Viltrox_F8_6k_3by2_6240x4160-24.00fps.json | 2 +- ..._1080p_16by9_1920x1080-24.00fps - Yang - 2.json | 2 +- ...-45__1080p_16by9_1920x1080-24.00fps - Yang.json | 2 +- ..._x-T2_50mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ..._samyang 12mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...4_laowa 24mm_c_4k_16by9_3840x2160-59.94fps.json | 2 +- ...f2.8_manual_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...8-55_manual_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...m_xh2_18-35_18_4k_16by9_3840x2160-29.97fps.json | 2 +- ...m_xh2_1835__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...it12 2.8_59.94_4k_16by9_3840x2160-59.94fps.json | 2 +- ...s 27 1.2_4k_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...8-200 f4 18mm__4k_16by9_3840x2160-59.94fps.json | 2 +- ...fujinon 18-55__4k_16by9_3840x2160-59.94fps.json | 4 ++-- ...m_xt3_16-55__2k_1.90by1_2048x1080-59.94fps.json | 2 +- ...ilm_xt3_16-55__4k_16by9_3840x2160-59.94fps.json | 2 +- ...iltrox 13f1.4__4k_16by9_3840x2160-50.00fps.json | 2 +- ...trox 85mm 1.8__4k_16by9_3840x2160-29.97fps.json | 2 +- ..._xt3_xc35mm_25_4k_16by9_3840x2160-25.00fps.json | 2 +- ...16-55 (16)__C4k_1.90by1_4096x2160-29.97fps.json | 2 +- ..._xc 50 203__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...21x_NO-EIS_2.7k_2.16by1_3277x1520-50.00fps.json | 2 +- ...2121x_NO-EIS_6k_2.15by1_6438x2988-50.00fps.json | 2 +- ...121x_NO-EIS_C4k_2.15by1_4654x2160-50.00fps.json | 2 +- ...1.212_NO-EIS_2k_2.15by1_2327x1080-50.00fps.json | 2 +- ...ns_5.3K Wide_5k_16by9_5312x2988-59.94fps.json | 2 +- ...s_5.3K Linear_5k_16by9_5312x2988-59.94fps.json | 2 +- ...ic Lens_Linear_5k_16by9_5312x2988-29.97fps.json | 2 +- ...orphic Lens_C4k_2.15by1_4650x2160-50.00fps.json | 2 +- GoPro/GoPro_HERO10 Black_Linear_16by9.json | 2 +- GoPro/GoPro_HERO10 Black_Linear_4by3.json | 2 +- ...namorphic 1.33_5k_16by9_5320x3000-50.00fps.json | 2 +- ...amorphic 1.21x_4k_16by9_3840x2160-50.00fps.json | 2 +- ...namorhpic 1.21x_4k_3by2_3840x2616-50.00fps.json | 2 +- ..._HERO10 Black_Max Wide_HS Boost_2.7k_16by9.json | 2 +- ...Black_Max Wide_HS EIS_2.7k_16by9-239.76fps.json | 2 +- ...ro_HERO10 Black_Max Wide_HS EIS_2.7k_16by9.json | 2 +- ...Pro_HERO10 Black_Max Wide_HS EIS_2.7k_4by3.json | 2 +- ...Black_Max Wide_NO-EIS_2.7k_16by9-239.76fps.json | 2 +- ...ro_HERO10 Black_Max Wide_NO-EIS_2.7k_16by9.json | 2 +- ... Wide_NO-EIS_2.7k_16by9_2704x1520-59.94fps.json | 2 +- ...Pro_HERO10 Black_Max Wide_NO-EIS_2.7k_4by3.json | 2 +- ...x Wide_NO-EIS_2.7k_4by3_2704x2028-59.94fps.json | 2 +- .../GoPro_HERO10 Black_Max_HS EIS_2.7k_16by9.json | 2 +- GoPro/GoPro_HERO10 Black_Max_HS EIS_2.7k_4by3.json | 2 +- .../GoPro_HERO10 Black_Max_NO-EIS_2.7k_16by9.json | 2 +- GoPro/GoPro_HERO10 Black_Max_NO-EIS_2.7k_4by3.json | 2 +- .../GoPro_HERO10 Black_Narrow_HS Boost_16by9.json | 2 +- GoPro/GoPro_HERO10 Black_Narrow_HS Boost_4by3.json | 2 +- GoPro/GoPro_HERO10 Black_Narrow_NO-EIS_16by9.json | 2 +- GoPro/GoPro_HERO10 Black_Narrow_NO-EIS_4by3.json | 2 +- GoPro/GoPro_HERO10 Black_Wide_16by9.json | 2 +- GoPro/GoPro_HERO10 Black_Wide_4by3.json | 2 +- ...namorphic wide_5k_16by9_5332x3000-50.00fps.json | 2 +- ...anamorph_NO-EIS_4k_4by3_4000x3000-50.00fps.json | 2 +- GoPro/GoPro_HERO11 Black_Linear_16by9.json | 2 +- GoPro/GoPro_HERO11 Black_Linear_4by3.json | 2 +- ...x Wide_HS EIS_2.7k_4by3_2704x2028-59.94fps.json | 2 +- ...arrow_HS Boost_5k_16by9_5312x2988-50.00fps.json | 2 +- ...5.3k 8_7 10-bit_6k_3by2_7065x4648-23.98fps.json | 2 +- GoPro/GoPro_HERO11 Black_Wide_16by9.json | 2 +- GoPro/GoPro_HERO11 Black_Wide_4by3.json | 2 +- GoPro/GoPro_HERO11 Black_Wide_8by7.json | 2 +- ...k_Wide_HS EIS_720p_8by7_1280x1120-29.97fps.json | 2 +- ..._Wide_NO-EIS_1440p_4by3_1920x1440-59.94fps.json | 2 +- ...ack_Wide_NO-EIS_2k_8by7_2464x2156-29.98fps.json | 2 +- ...ck__27041524_2.7k_16by9_2704x1524-29.97fps.json | 2 +- ...ssion___1080p_16by9_1920x1080-59.94fps (2).json | 2 +- ...oPro_Hero3___1080p_4by3_1920x1440-47.95fps.json | 2 +- ...ro_Hero3___2.7k_1.88by1_2704x1440-23.98fps.json | 2 +- ..._Hero4 Black___2.7k_4by3_2704x2028-0.00fps.json | 2 +- ..._Wide_60 fps_1080p_16by9_1920x1080-0.00fps.json | 2 +- ...o3 Silver___1080p_16by9_1920x1080-29.97fps.json | 2 +- ...refly_Xlite2 ___4k_4by3_3840x2880-25.00fps.json | 2 +- ...irefly 6s___1080p_16by9_1920x1080-30.00fps.json | 2 +- ...ly 8se__1440_1440p_4by3_1920x1440-59.94fps.json | 2 +- ...ite_150_Wide_2.7k_16by9_2704x1520-59.94fps.json | 2 +- ... X Lite_Sony__2.7k_4by3_2704x2028-59.94fps.json | 2 +- ...a Wide_50 fps_2.7k_16by9_2704x1520-0.00fps.json | 2 +- ...Ultra Wide__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...ite_Ultra Wide__4k_16by9_3840x2160-0.00fps.json | 2 +- ...e_Wide_50 fps_2.5k_16by9_2560x1440-0.00fps.json | 2 +- ...ite_Wide_50 fps_4k_16by9_3840x2160-0.00fps.json | 2 +- ... 60fps 16by9_2.7k_16by9_2752x1548-59.94fps.json | 2 +- ... X Lite__60 fps_4k_16by9_3840x2160-0.00fps.json | 2 +- ...fly X Lite___1080p_4by3_1920x1440-59.94fps.json | 2 +- ...fly X Lite___2.5k_16by9_2560x1440-59.94fps.json | 2 +- ... X Lite___2.7k_4by3_2704x2028-59.94fps - 2.json | 2 +- ...efly X Lite___2.7k_4by3_2704x2028-59.94fps.json | 2 +- ...irefly X Lite___4k_4by3_4000x3000-29.97fps.json | 2 +- ...eglage final_2.5k_16by9_2560x1440-29.97fps.json | 2 +- ...y Split_170'_0_4k_16by9_3840x2160-30.00fps.json | 2 +- ...inch_Ultrawide_4k_16by9_3840x2160-59.94fps.json | 2 +- ...trawide_30 fps_2.7k_4by3_3072x2304-0.00fps.json | 2 +- ...0_oneR_1inch__2.7k_16by9_3072x1728-0.00fps.json | 2 +- ...31mm_4k DCI_C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...-105(24mm)__C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...Main Cam_60 Hz_4k_16by9_3840x2160-60.03fps.json | 2 +- ...am_FHD 60Hz_1080p_16by9_1920x1080-59.86fps.json | 2 +- ...e_Sony IMX766__4k_16by9_3840x2160-29.01fps.json | 2 +- ... max__dji Mimo_4k_16by9_3840x2160-59.99fps.json | 2 +- ...ensHD 1080__1080p_16by9_1920x1080-29.97fps.json | 2 +- ... Pro Max_0.5X__4k_16by9_3840x2160-59.93fps.json | 2 +- ....5x_HD - 30_1080p_16by9_1920x1080-29.99fps.json | 2 +- ...12 Pro Max_1x__4k_16by9_3840x2160-30.00fps.json | 2 +- ...ax_Wide lense__4k_16by9_3840x2160-30.00fps.json | 2 +- ...e 12 Pro Max___4k_16by9_3840x2160-30.04fps.json | 2 +- ... 12 Pro Max___720p_16by9_1280x720-29.98fps.json | 2 +- ...e 12 mini___1080p_16by9_1920x1080-29.98fps.json | 2 +- ..._12_P 50FPS_1080p_16by9_1920x1080-29.98fps.json | 2 +- ...3 pro max___1080p_16by9_1920x1080-59.94fps.json | 2 +- ...ne 13 pro___1080p_16by9_1920x1080-29.99fps.json | 2 +- ..._1x_60 FPS_4k_16by9_3840x2160-57.76fps - D.json | 2 +- ...max_24 mm_HEVC_4k_16by9_3840x2160-24.00fps.json | 2 +- ...main cam_24 mm_4k_16by9_3840x2160-59.99fps.json | 2 +- ... fps vertical__4k_16by9_3840x2160-58.32fps.json | 2 +- ...o Max_24mm__1080p_16by9_1920x1080-30.01fps.json | 2 +- ... Pro Max_24mm__4k_16by9_3840x2160-59.92fps.json | 2 +- ...ax_Ultra-Wide__4k_16by9_3840x2160-30.01fps.json | 2 +- ...e 15 Pro Max___4k_16by9_3840x2160-30.00fps.json | 2 +- ...5 Pro max___1080p_16by9_1920x1080-59.96fps.json | 2 +- ...ro Max_Apple__720p_16by9_1280x720-30.00fps.json | 2 +- ...6by9_3840x2160-30.00fps - Imperial Imaging.json | 2 +- ...e 15 pro max___4k_16by9_3840x2160-59.88fps.json | 2 +- ..._4k_16by9_3840x2160-24.00fps - Leon Pearce.json | 2 +- ... 15 pro_13__1080p_16by9_1920x1080-59.92fps.json | 2 +- ...y9_3840x2160-59.96fps - Alejandro Aguilart.json | 2 +- ...Phone 15 pro___4k_16by9_3840x2160-30.00fps.json | 2 +- ...Phone 7 plus___4k_16by9_3840x2160-29.70fps.json | 2 +- ...one Xr_25frame_4k_16by9_3840x2160-24.00fps.json | 2 +- ... Xs Max_12 MP__4k_16by9_3840x2160-60.02fps.json | 2 +- ...one xs max__30_480p_16by9_960x544-29.46fps.json | 2 +- ...s max__4k 60p_720p_16by9_1280x720-30.00fps.json | 2 +- ...e 14 pro max___4k_16by9_3840x2160-26.39fps.json | 2 +- ...e 14 Pro_24mm__4k_16by9_3840x2160-59.92fps.json | 4 ++-- ...soni f16 48mp__4k_16by9_3840x2160-29.13fps.json | 2 +- ...el 8 Pro_13mm__4k_16by9_3840x2176-30.00fps.json | 2 +- ...el 4a_28mm__1080p_16by9_1936x1092-24.00fps.json | 2 +- ...Pixel 4a_28mm__4k_16by9_3840x2160-24.00fps.json | 2 +- ..._Pixel 4a___1080p_16by9_1920x1080-30.02fps.json | 2 +- ...gle_Pixel 4a___4k_16by9_3840x2160-28.68fps.json | 2 +- ...Pixel 4a___4k_16by9_3840x2160-30.06fps (2).json | 2 +- ...gle_Pixel 4a___4k_16by9_3840x2160-30.06fps.json | 2 +- ...dine RAW video_4k_16by9_3840x2160-29.90fps.json | 2 +- ...Pixel 7a_53mm__4k_16by9_3840x2176-30.00fps.json | 2 +- ...Lens_60 fps_1080p_16by9_1920x1080-59.76fps.json | 2 +- ...Motioncam RAW_C4k_16by9_4624x2608-24.04fps.json | 2 +- ...elephoto_30fps_4k_16by9_3840x2176-30.00fps.json | 2 +- ...el 8 pro_1x_1x_4k_16by9_3840x2160-30.00fps.json | 2 +- ..._Pixel 8 pro___4k_16by9_3840x2160-30.00fps.json | 2 +- ...pixel 7a_26mm__4k_16by9_3840x2176-82.61fps.json | 2 +- ...080 x 2296 raw_4k_16by9_3840x2160-24.00fps.json | 2 +- ...el 6_24mm_auto_4k_16by9_3840x2160-59.97fps.json | 2 +- ...el 8 pro_tele__4k_16by9_3840x2160-30.00fps.json | 4 ++-- ...MATEPAD11___1080p_16by9_1920x1080-29.86fps.json | 2 +- ..._Wide Lens__1080p_16by9_1920x1080-30.51fps.json | 2 +- ..._f1.6_f1.6__1080p_16by9_1920x1080-60.36fps.json | 2 +- ...uawei_P50pro___4k_16by9_3840x2160-59.99fps.json | 2 +- ...o__19_9 30 bps_4k_16by9_3840x2160-29.94fps.json | 2 +- ...0 pro_Laica_jp_4k_16by9_3840x2160-60.43fps.json | 2 +- ...huawei_P9___1080p_16by9_1920x1080-60.08fps.json | 2 +- ...i_P9_leica__1080p_16by9_1920x1080-60.08fps.json | 2 +- ...6mm 1.9_24fps_2.7k_1by1_3492x3492-24.14fps.json | 2 +- ...26mm 1.5_24fps_C4k_4by3_4032x3024-24.01fps.json | 2 +- ...50mm 2.4_24fps_C4k_4by3_4032x3024-24.07fps.json | 2 +- ...6_Motioncam Pro_2k_4by3_2328x1746-30.19fps.json | 2 +- ..._Motioncam Pro_C4k_4by3_4656x3492-24.00fps.json | 2 +- ...9_Motioncam Pro_2k_4by3_2328x1746-30.19fps.json | 2 +- ..._Motioncam Pro_C4k_4by3_4656x3492-24.00fps.json | 2 +- ...9_Quality 0.237_2k_4by3_2328x1746-24.00fps.json | 2 +- .../LG_v60_26mm__4k_16by9_3840x2176-23.96fps.json | 2 +- .../LG_v60_58mm__4k_16by9_3840x2176-24.00fps.json | 2 +- .../LG_v60_58mm__4k_16by9_3840x2176-24.01fps.json | 2 +- .../Meizu_Note9___4k_16by9_4000x2250-25.00fps.json | 2 +- ...era principal__4k_16by9_3840x2160-30.01fps.json | 2 +- ...ipal_motioncam_4k_16by9_4000x2256-24.00fps.json | 2 +- ...rola_g7 plus___4k_16by9_3840x2160-29.95fps.json | 2 +- ...LUS_IZI__60fps_4k_16by9_3840x2160-30.00fps.json | 2 +- ...US_IZI___60fps_5k_16by9_5120x2880-30.00fps.json | 2 +- ...mm Main camera__4k_4by3_4000x3008-24.00fps.json | 2 +- ...m_MotionCam App_4k_4by3_4000x3000-60.03fps.json | 2 +- ...o_81 mm Tele__2.7k_4by3_3264x2448-23.98fps.json | 2 +- ...o_Main Lens__2.7k_16by9_3228x1824-30.03fps.json | 2 +- ...Pro_Main Lens__4k_16by9_4000x2256-30.04fps.json | 2 +- ... Pro_Medium_60_4k_16by9_3840x2160-59.89fps.json | 2 +- ...9 Pro_Primary__4k_16by9_3840x2160-29.98fps.json | 2 +- ...lus_9 Pro___1080p_16by9_1920x1080-59.22fps.json | 2 +- ...us_8 Pro_13mm__4k_16by9_3840x2160-24.00fps.json | 2 +- ...a Sensors___1080p_16by9_1920x1080-29.91fps.json | 2 +- ...plus_ace3___1080p_16by9_1920x1080-60.01fps.json | 2 +- .../Oppo_A15___720p_16by9_1280x720-29.57fps.json | 2 +- .../Oppo_A16___1080p_16by9_1920x1080-29.61fps.json | 2 +- ...o_Motioncam_1080p_16by9_1920x1088-34.94fps.json | 2 +- ... X 6 Pro_24mm__4k_16by9_3852x2184-24.04fps.json | 2 +- ...nd X5 pro___1080p_16by9_1920x1080-60.01fps.json | 2 +- .../Oppo_K9X___480p_9by16_720x1280-29.00fps.json | 2 +- ...eno 4 Pro___1080p_16by9_1920x1080-29.99fps.json | 2 +- ...po_Reno 4___1080p_16by9_1920x1080-30.01fps.json | 2 +- ...G_Main lens__2k_2.33by1_2400x1028-29.60fps.json | 2 +- .../Poco_F1___4k_16by9_3840x2160-59.99fps.json | 4 ++-- ...o_F3_Vertical__4k_16by9_3840x2160-29.95fps.json | 2 +- ...pe orientation_4k_16by9_3840x2160-25.92fps.json | 4 ++-- ...ra_24 mm_30 fps_4k_4by3_4000x3000-30.01fps.json | 2 +- ...off,_4k_16by9_3840x2160-30.01fps - Jackmin.json | 2 +- ...Note 10 plus___C4k_4by3_4032x3024-30.00fps.json | 2 +- ...ain rear lens__4k_16by9_3840x2160-29.98fps.json | 2 +- ...24mm_MotionCam_4k_16by9_3840x2160-25.02fps.json | 2 +- ...22 Ultra_24mm__4k_16by9_3840x2176-30.00fps.json | 2 +- ...S22 Ultra_24mm__4k_4by3_4000x3000-30.00fps.json | 2 +- ...2 Ultra_70mm__2.7k_4by3_3648x2736-30.01fps.json | 2 +- ... ultra_108 mp__4k_16by9_3840x2160-59.84fps.json | 2 +- ...ltra 24mm_24mm_4k_16by9_3840x2160-24.03fps.json | 2 +- ...tter, , 50 iso_4k_16by9_3840x2160-24.03fps.json | 2 +- ...58mm_Tele lens_4k_16by9_3840x2160-24.03fps.json | 2 +- ...msung_a73___1080p_16by9_1920x1080-30.01fps.json | 2 +- ...tra_230mm_4k_2.7k_16by9_3648x2048-29.99fps.json | 2 +- ...Samsung_s10e___4k_16by9_3840x2160-59.95fps.json | 2 +- ...43_1080p_16by9_1920x1080-30.00fps - zo - 2.json | 2 +- ..._full hd 43_1080p_16by9_1920x1080-30.00fps.json | 2 +- ...ria 1 iii_25mm__2k_3by2_2016x1344-23.98fps.json | 2 +- ...ria 1 iii_74mm__2k_3by2_2016x1344-24.00fps.json | 2 +- ...0mm_MotionCam_C4k_16by9_4288x2432-23.78fps.json | 2 +- ...o CinemaDNG_C4k_2.38by1_4032x1692-29.97fps.json | 2 +- ...ization off_1080p_16by9_1920x1080-29.98fps.json | 4 ++-- ...OO 9_26MM_AUTO_4k_16by9_3840x2176-30.00fps.json | 2 +- ...VO_V23 5G___1080p_16by9_1920x1080-29.86fps.json | 2 +- ...m_1980x1020_1080p_16by9_1920x1088-24.00fps.json | 2 +- ..._x90 Pro+_1x__4k_16by9_3840x2160-119.88fps.json | 2 +- ...IVO_x90 Pro+___4k_16by9_3840x2160-29.98fps.json | 2 +- ..._x100pro_24mm__4k_16by9_3840x2176-30.00fps.json | 2 +- ...ra_mcpro24fps_2.7k_4by3_3264x2448-29.94fps.json | 2 +- ...90pro+_imx989__4k_16by9_3840x2160-60.06fps.json | 2 +- ...UW 16mm_3.2K_2.7k_16by9_3280x1840-24.00fps.json | 2 +- ... 16mm_3.2K_2.7k_2.38by1_3280x1376-24.00fps.json | 2 +- ...or Width 16_9_C4k_16by9_4080x2292-24.00fps.json | 2 +- ... Width 2.37_C4k_2.37by1_4080x1724-24.00fps.json | 2 +- ...__64mp+8mp+2mp_480p_16by9_960x544-30.00fps.json | 2 +- ... wide 15mm__1080p_16by9_1920x1080-30.03fps.json | 2 +- ...24mm_30 fps_1080p_16by9_1920x1080-29.30fps.json | 2 +- ...3_wide 24mm__720p_16by9_1280x720-120.38fps.json | 2 +- ...l 90 degree_1080p_16by9_1920x1080-29.80fps.json | 2 +- .../Xiaomi_10s___4k_16by9_3840x2160-60.06fps.json | 2 +- ...l_1080p_16by9_1920x1080-60.03fps - Charles.json | 2 +- ...ltra_normal_1080p_16by9_1920x1080-60.03fps.json | 2 +- ...aomi_12T pro___4k_16by9_3840x2160-30.00fps.json | 2 +- ...al full sensor_C4k_4by3_4096x3072-30.01fps.json | 2 +- ...3 ultra_62mm__2.7k_4by3_3072x2304-58.23fps.json | 2 +- ...13 ultra_62mm__C4k_4by3_4096x3072-25.16fps.json | 2 +- ...ltra_main_23mm_C4k_2by1_4096x2048-30.01fps.json | 2 +- .../Xiaomi_13u___4k_16by9_3840x2176-30.01fps.json | 2 +- ...trawide -3840__4k_16by9_3840x2160-24.00fps.json | 2 +- ...1080p Main__1080p_16by9_1926x1084-24.02fps.json | 2 +- ..._MotionCam Pro_4k_16by9_3840x2160-60.01fps.json | 2 +- ...correction OFF_4k_16by9_3840x2160-30.00fps.json | 2 +- ...i 9T Pro_Wide__4k_16by9_3840x2160-59.18fps.json | 2 +- ...a 4k_16_9__1080p_16by9_1920x1080-100.00fps.json | 2 +- ...a 4k_9_16__1080p_16by9_1920x1080-100.00fps.json | 2 +- ...ote 8 Pro___1080p_16by9_1920x1080-29.61fps.json | 2 +- ...ote 8 Pro___1080p_16by9_1920x1080-30.00fps.json | 2 +- ...i Note 8 Pro___4k_16by9_3840x2160-30.00fps.json | 2 +- ...__1080p_16by9_1920x1080-30.00fps - U0 A320.json | 2 +- ... 7_Main lens__720p_16by9_1280x720-30.01fps.json | 2 +- ... note 9 Pro___480p_3by4_1080x1440-30.15fps.json | 2 +- ..._motioncam raw_4k_16by9_3840x2160-24.02fps.json | 2 +- ...omi_mi 10t_uw__4k_16by9_3840x2160-30.03fps.json | 2 +- ...50 ultra_35mm__C4k_4by3_4640x3488-23.99fps.json | 2 +- ...S 212.8_P60_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...i_14-30mm_14mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...ltrox f1.8__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...zan 12mm T2.9__4k_16by9_3840x2160-25.00fps.json | 2 +- ... 24-70 f4_P_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...0mm 1.8_man_1080p_16by9_1920x1080-23.98fps.json | 2 +- ..._1.4-5.6GED_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...d3200_nikkor__720p_16by9_1280x720-50.00fps.json | 2 +- ...af-s 18-55__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...r 18-55 mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ....5-5.6G VR__1080p_16by9_1920x1080-23.98fps.json | 2 +- ...f1.8_manual_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...80p_16by9_1920x1080-59.94fps - Ollie Wells.json | 2 +- ..._vr 18-105__1080p_16by9_1920x1080-23.98fps.json | 2 +- ...50mm f1.8D__1080p_16by9_1920x1080-29.97fps.json | 2 +- ...4E @ 24mm_16mm_4k_16by9_3840x2160-23.98fps.json | 2 +- ...1.8 @ 18mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ..._24-702.8G__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...d810_24-70__1080p_16by9_1920x1080-50.00fps.json | 2 +- ..._24-70f2.8__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...4-70s 2.8_24mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ..._z 50_z 16-50__4k_16by9_3840x2160-29.97fps.json | 2 +- ...kon 35 mm_crop_4k_16by9_3840x2160-59.94fps.json | 2 +- ...ikon50-250__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...on_z5_24-70f4__4k_16by9_3840x2160-29.97fps.json | 2 +- ... 24-70 f4s__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...2.8 @ 24mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...200f4-6.3__1080p_16by9_1920x1080-119.88fps.json | 2 +- ...z62_24200__1080p_16by9_1920x1080-119.88fps.json | 2 +- ...62_501.8s_2140_4k_16by9_3840x2160-29.97fps.json | 2 +- ...n_z62_z501.8s__4k_16by9_3840x2160-29.97fps.json | 2 +- ...n_z6_28.mm__1080p_16by9_1920x1080-59.93fps.json | 2 +- ...on_z6_28mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...m 2.8D_24mm_1080p_16by9_1920x1080-59.94fps.json | 2 +- ..._z254-120__1080p_16by9_1920x1080-119.88fps.json | 2 +- ...n_z7_24-70__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...kon_z8_70-200__6k_16by9_7680x4320-29.97fps.json | 2 +- ...z8_sirui 50mm__4k_16by9_3840x2160-50.00fps.json | 2 +- ..._z9_14-30_16mm_4k_16by9_3840x2160-50.00fps.json | 2 +- ...z 24-120 f4.0__4k_16by9_3840x2160-59.94fps.json | 2 +- ... 14-42 IIR__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...8_P A 25FPS_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...Leica 9mm__4k_16by9_3840x2160-25.00fps - 4.json | 2 +- ...mix Leica 9mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...mpus_TG-6___1080p_16by9_1920x1080-29.97fps.json | 2 +- ..._HD_X65HD___1080p_16by9_1920x1080-60.00fps.json | 2 +- ...oau_CU SPC02___4k_16by9_3840x2160-30.00fps.json | 2 +- ...n_H9R___1080p_16by9_1920x1080-60.00fps (2).json | 2 +- ...ken_h9__720__720p_16by9_1280x720-120.00fps.json | 4 ++-- .../Eken_h9___1080p_16by9_1920x1080-60.00fps.json | 4 ++-- ...n_h9_original__4k_16by9_3840x2160-25.00fps.json | 4 ++-- ..._Pocket3___4k_16by9_3840x2160-60.00fps - 3.json | 2 +- ...Tech_Pocket3___4k_16by9_3840x2160-60.00fps.json | 2 +- ...i_x8 mini v2___4k_16by9_3840x2160-29.69fps.json | 2 +- ...P_90 degree__2.5k_16by9_2560x1440-30.00fps.json | 2 +- .../IQOO 9_26MM___4k_16by9_3840x2176-30.00fps.json | 2 +- ... ASPH_35 mm_C4k_1.90by1_4096x2160-24.00fps.json | 2 +- ...ectra_wide__1080p_16by9_1920x1080-30.00fps.json | 2 +- ...max_X9.2__2,_2.7k_16by9_2704x1520-60.00fps.json | 2 +- ...2-s_dulens 58__4k_16by9_3840x2160-29.97fps.json | 2 +- ...2-s_dulens 58__4k_16by9_3840x2160-59.94fps.json | 2 +- ...lens58+1.5x__6k_2.85by1_6192x2176-59.94fps.json | 2 +- ...ica 501.4+1.5x__5k_8by3_5760x2160-29.97fps.json | 2 +- ...ca m50+1.5__1080p_16by9_1920x1080-29.97fps.json | 2 +- ...-s_m50+1.5x__6k_2.84by1_6144x2160-29.97fps.json | 2 +- ...s_m50+1.5x__C4k_1.90by1_4096x2160-29.97fps.json | 2 +- ...30PRO1X_1X__1080p_16by9_1920x1080-30.05fps.json | 2 +- Other/Mi_12SU_4K__4k_16by9_3840x2160-58.41fps.json | 2 +- ...ron 18-250__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...0_30mm_30mm_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...o_G10+_--_--_720p_9by16_1440x2560-30.00fps.json | 2 +- ..._1080p_16by9_1920x1080-60.00fps - Evan - 2.json | 2 +- ...argo_G10+___1080p_16by9_1920x1080-60.00fps.json | 2 +- ...__2.5k_16by9_2560x1440-30.00fps - Evan - 2.json | 2 +- ...Sargo_G10+___2.5k_16by9_2560x1440-30.00fps.json | 2 +- ...ANG_GA420___1080p_16by9_1920x1080-60.00fps.json | 2 +- ...0p_16by9_1920x1080-30.00fps - masahiro - 2.json | 2 +- ...GA420_wide__1080p_16by9_1920x1080-30.00fps.json | 2 +- ...7k_16by9_2704x1520-30.00fps - masahiro - 2.json | 2 +- ..._GA420_wide__2.7k_16by9_2704x1520-30.00fps.json | 2 +- ...20_Ultra wide__4k_16by9_3840x2160-30.00fps.json | 2 +- ...t xl pro___1080p_16by9_1920x1080-119.88fps.json | 4 ++-- ...st xl pro___1080p_16by9_1920x1080-29.97fps.json | 4 ++-- ...l pro___1080p_16by9_1920x1080-59.94fps (2).json | 4 ++-- ...ost xl pro___2.5k_16by9_2688x1520-59.94fps.json | 4 ++-- ...0_23mm 1_1200s_4k_16by9_3840x2160-59.99fps.json | 2 +- ...70_full hd,_1080p_16by9_1920x1080-59.99fps.json | 4 ++-- ...urfola_530___2.7k_16by9_2704x1520-60.00fps.json | 2 +- ...olfang_ga400___4k_16by9_3840x2160-30.00fps.json | 2 +- ...H5s_12-60__4k_16by9_3840x2160-59.94fps - 2.json | 2 +- ..._1.90by1_4096x2160-25.00fps - Shao Mingxin.json | 2 +- ...14-140_1160_C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...nic_GH5s_15mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...5mm laowa_C_C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...OWA 7.5MM_C_C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ...wa 7.5mm f2.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...a 7.5mm_10 bit_4k_16by9_3840x2160-29.97fps.json | 2 +- ...a 7.5mm_10b it_4k_16by9_3840x2160-23.98fps.json | 2 +- ...wa 7.5mm_8 bit_4k_16by9_3840x2160-59.94fps.json | 2 +- ..._Laowa 7.5mm_C_4k_16by9_3840x2160-25.00fps.json | 2 +- ...rox reducer_C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ...6x9 V-log-l_C4k_1.90by1_4096x2160-59.94fps.json | 2 +- ...umix 12-35__C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...0mm DC DN__1080p_16by9_1920x1080-100.00fps.json | 2 +- ...x G9_14-140_60_4k_16by9_3840x2160-59.94fps.json | 2 +- ...0mm T1.4 APSC__4k_16by9_3840x2160-50.00fps.json | 2 +- ...mm f3,5 SS1000_4k_16by9_3840x2160-59.94fps.json | 2 +- ...al 17 mm f1.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...4_f1,4 SS 1000_4k_16by9_3840x2160-59.94fps.json | 2 +- ...S_11-16 MM__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...5S_12-100_16_9_4k_16by9_3840x2160-25.00fps.json | 2 +- ...S_12-100__2.7k_4by3_3328x2496-50.00fps - 3.json | 2 +- ... GH5S_12-100__2.7k_4by3_3328x2496-50.00fps.json | 2 +- ...mix 12-25_12mm_4k_16by9_3840x2160-50.00fps.json | 2 +- ...mix 12-35_18mm_4k_16by9_3840x2160-50.00fps.json | 2 +- ...pus 12-100__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...__dcinelike_C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ...0-25f1.7_-8bit_4k_16by9_3840x2160-50.00fps.json | 2 +- ...10-25f1.7_10mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...x GH6_10-25__5k_1.89by1_5728x3024-25.00fps.json | 2 +- ...x GH6_9MMF1.7__4k_16by9_3840x2160-59.94fps.json | 2 +- ...GH6_Laowa 7.5__4k_16by9_3840x2160-59.94fps.json | 2 +- ...lux 9mm 1.7__5k_1.89by1_5727x3024-23.98fps.json | 2 +- ... 35mm 1.8_C_C4k_1.90by1_4096x2160-29.97fps.json | 2 +- ... dc-s5_24-105__4k_16by9_3840x2160-29.97fps.json | 2 +- ...4_xiaoyi 42.5__4k_16by9_3840x2160-29.97fps.json | 2 +- ...gma 28-70_35mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ... Full Frame_C4k_1.90by1_4096x2160-23.98fps.json | 2 +- ... @ 20mm_all-off_5k_3by2_5952x3968-29.97fps.json | 2 +- ... @ 35mm_all-off_5k_3by2_5952x3968-29.97fps.json | 2 +- ...260-12__1080p_16by9_1920x1080-25.00fps - 2.json | 2 +- ...260-12__1080p_16by9_1920x1080-25.00fps - 3.json | 2 +- ...260-12__1080p_16by9_1920x1080-25.00fps - 4.json | 2 +- ...00_1260-12__1080p_16by9_1920x1080-25.00fps.json | 2 +- ..._g100_1260-12__4k_16by9_3840x2160-29.97fps.json | 2 +- ..._g7_40-150__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...gma 18-35_18mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ...12-60mm_no ois_4k_16by9_3840x2160-50.00fps.json | 2 +- ..._FHD 120FPS_1080p_16by9_1920x1080-24.00fps.json | 2 +- ...pro 2.8_c4k_C4k_1.90by1_4096x2160-24.00fps.json | 2 +- ...m 1.8 + pixco__4k_16by9_3840x2160-25.00fps.json | 2 +- ...ns_cine like D_4k_16by9_3840x2160-25.00fps.json | 2 +- ...100_Leica_24mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ...ic_s5_14-28_30_4k_16by9_3840x2160-29.97fps.json | 2 +- ...s5_24-105_24mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ...s5_24mm-105mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ... l mount_aps c_4k_16by9_3840x2160-59.94fps.json | 2 +- ..._irix 15mm_mp4_4k_16by9_3840x2160-25.00fps.json | 2 +- ...x 50 1.8_4k_C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...mm_4k_16by9_3840x2160-59.94fps - jvc-1 - 2.json | 2 +- ...rio 20 60_20mm_4k_16by9_3840x2160-59.94fps.json | 2 +- ...x_sigma 24-70__4k_16by9_3840x2160-23.98fps.json | 2 +- ...24-70 f2.8__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...s5m2_s-s35__C4k_1.90by1_4096x2160-59.94fps.json | 2 +- ...nic_s5m2_s-s85__5k_3by2_5952x3968-29.97fps.json | 2 +- ...0mm @ 20mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...4-70 F2.8__1080p_16by9_1920x1080-119.88fps.json | 2 +- ...7_Laowa 7.5mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...8bitlongGOP_1080p_16by9_1920x1080-23.98fps.json | 2 +- ...H5_Laowa_7.5mm_4k_16by9_3840x2160-50.00fps.json | 2 +- ... 24mm_prores_2k_1.90by1_2048x1080-25.00fps.json | 2 +- ... 6k_9mm_24 144_4k_16by9_3840x2160-24.00fps.json | 2 +- ...ull 6K 17_9_8k_3.79by1_12288x3240-23.98fps.json | 2 +- ...010)_6K 17_9_6k_1.90by1_6144x3240-25.00fps.json | 2 +- ...n RF14-35_14mm_5k_16by9_5760x3240-29.97fps.json | 2 +- ...m f4_ProRes_C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...wa 14mm_17_9_6k_1.90by1_6144x3240-25.00fps.json | 2 +- ...35mm_6K 17_9_8k_2.84by1_9216x3240-23.98fps.json | 2 +- ..._4k 17 by 9_C4k_1.90by1_4096x2160-60.00fps.json | 2 +- ...daptor 0.71x_6k_1.90by1_6144x3240-24.00fps.json | 2 +- ...ter_6K 17_9_C4k_1.90by1_4096x2160-30.00fps.json | 2 +- ..._Full Sensor_6k_1.90by1_6144x3240-25.00fps.json | 2 +- ...3 18 mmT2.9__6k_1.90by1_6144x3240-24.00fps.json | 2 +- ..._kipon 75mm__6k_1.90by1_6144x3240-23.98fps.json | 2 +- ...40FPS 45deg_C4k_1.90by1_4095x2160-24.00fps.json | 2 +- ...reamer_2.4_1_6k_2.37by1_6144x2592-50.00fps.json | 2 +- ... FF_6K 17_9_C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...x Epic 50mm_6k_4k_16by9_3840x2160-24.00fps.json | 2 +- ...amorphic 1.33x_4k_16by9_3840x2160-24.00fps.json | 2 +- ...0mm L f2.8__C4k_2.13by1_4608x2160-25.00fps.json | 2 +- ...4mm L f2.8__C4k_2.13by1_4608x2160-25.00fps.json | 2 +- ...4mm L f1.4__C4k_2.13by1_4608x2160-25.00fps.json | 2 +- ...0mm L f1.2__C4k_2.13by1_4608x2160-25.00fps.json | 2 +- ...m STM f2.8__C4k_2.13by1_4608x2160-25.00fps.json | 2 +- ....6 at 10mm__C4k_2.13by1_4608x2160-25.00fps.json | 2 +- ....6 at 14mm__C4k_2.13by1_4608x2160-25.00fps.json | 2 +- ....6 at 18mm__C4k_2.13by1_4608x2160-25.00fps.json | 2 +- ...r 17mm f14__C4k_2.13by1_4608x2160-25.00fps.json | 2 +- ... 10mm T3.1__C4k_2.13by1_4608x2160-25.00fps.json | 2 +- ...r 300mm f4__C4k_2.13by1_4608x2160-25.00fps.json | 2 +- ...135mm f2.5__C4k_2.13by1_4608x2160-25.00fps.json | 2 +- ...r 200mm f4__C4k_2.13by1_4608x2160-25.00fps.json | 2 +- ...ar 35mm f2__C4k_2.13by1_4608x2160-25.00fps.json | 2 +- ... 24mm f3.5__C4k_2.13by1_4608x2160-25.00fps.json | 2 +- ... 2.4_1 360_C4k_1.90by1_4096x2160-47.95fps.json | 2 +- ...Raptor_12mm__8k_1.90by1_8192x4320-23.98fps.json | 2 +- ...Ultra Prime_8K_6k_16by9_7680x4320-25.00fps.json | 2 +- ...11mm F3.5_8K_8k_1.90by1_8192x4320-23.98fps.json | 2 +- ...T2.9_17_9 8K_8k_1.90by1_8192x4320-23.98fps.json | 2 +- ...8 M_8K 17_9_C4k_1.90by1_4096x2160-23.98fps.json | 2 +- ...t-R 19mm_8K_C4k_1.90by1_4096x2160-24.00fps.json | 2 +- ...omodo_11mm__C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...m_6k prores_1080p_16by9_1920x1080-25.00fps.json | 4 ++-- ...nCam_2 4k_Wide__4k_16by9_3840x2160-0.00fps.json | 2 +- ...unCam_2 4k___2.7k_16by9_2704x1520-60.00fps.json | 2 +- ...ro Micro V2___720p_16by9_1280x720-59.94fps.json | 2 +- ..._30602K 120_1080p_16by9_1920x1080-30.00fps.json | 2 +- ...MP)_30602K 120_4k_16by9_3840x2160-29.95fps.json | 2 +- ...mbPro_RC18G__2.7k_16by9_2704x1520-60.00fps.json | 2 +- ...Pro_rc19g_wide_4k_16by9_3840x2160-30.00fps.json | 2 +- ...phoenix__Link_720p_16by9_1280x720-25.00fps.json | 2 +- ...o_2.1 ratel_xv_4k_16by9_3840x2160-25.00fps.json | 2 +- ..._1080p_16by9_1920x1080-60.00fps-1704791268.json | 2 +- ...__1440p_4by3_1920x1440-60.00fps-1704791175.json | 2 +- ...__2.7k_16by9_2704x1520-30.00fps-1704790633.json | 2 +- ...__2.7k_16by9_2704x1520-60.00fps-1704791122.json | 2 +- ...de__4k_16by9_3840x2160-30.00fps-1704787078.json | 2 +- RunCam/Runcam_Thumb2_16by9.json | 2 +- RunCam/Runcam_Thumb2_4by3.json | 2 +- RunCam/Runcam_ThumbPW_wide_1080p60_16by9.json | 2 +- RunCam/Runcam_ThumbPW_wide_1440p60_4by3.json | 2 +- RunCam/Runcam_ThumbPW_wide_2.7k60_16by9.json | 2 +- RunCam/Runcam_ThumbPW_wide_4k30_16by9.json | 2 +- .../Runcam_ThumbPW_wide_4k30_16by9_vertical.json | 2 +- ...bPW_wide__720p_3by4_1440x1920-60.00fps - 2.json | 2 +- ...bPW_wide__720p_3by4_1440x1920-60.00fps - 3.json | 2 +- RunCam/Runcam_ThumbPW_xv_4k30.json | 2 +- ...ThumbPW_xv_90'_2k_9by16_2160x3840-30.00fps.json | 2 +- ...m 1-2.7 sensor_4k_16by9_3840x2160-30.00fps.json | 2 +- ...18G_Lens Mod_2.7k_16by9_2704x1520-60.00fps.json | 2 +- ..._16by9_3840x2160-30.00fps - Erik Mackensen.json | 2 +- ...mbPro_stock_30_4k_16by9_3840x2160-30.00fps.json | 2 +- RunCam/Runcam_Thumb_Pro_xv_4k.json | 2 +- SJCAM/SJCAM_11___4k_16by9_3840x2160-30.00fps.json | 2 +- ...CAM_200pro___2.5k_16by9_2560x1440-30.00fps.json | 2 +- ...4000 AIR_Wide__4k_16by9_3840x2160-30.01fps.json | 2 +- ...AM_4000air___2.5k_16by9_2688x1520-30.04fps.json | 2 +- ...error 1.392)_2.7k_16by9_2720x1520-29.97fps.json | 2 +- ..._Standart_stab_4k_16by9_3840x2160-29.97fps.json | 2 +- ...ONY IMX335__1080p_16by9_1920x1080-60.00fps.json | 2 +- .... Super View_2.5k_4by3_2560x1920-30.00fps.json | 2 +- ... anti distor_2.5k_16by9_2560x1440-60.00fps.json | 2 +- ...CAM_C300__2K_2.5k_16by9_2560x1440-60.00fps.json | 2 +- ...2.5k_16by9_2560x1440-60.00fps - RH Yap - 2.json | 2 +- ...CAM_C300__P_1080p_16by9_1920x1080-60.00fps.json | 2 +- ...SJCAM_C300___2.5k_16by9_2560x1440-60.00fps.json | 2 +- .../SJCAM_C300___480p_16by9_960x544-30.00fps.json | 2 +- ...JCAM_C_300P__2.5k_16by9_2560x1440-60.00fps.json | 2 +- ...JCAM_C_300R__2.5k_16by9_2560x1440-60.00fps.json | 2 +- ...SJCAM_C_300__2.5k_16by9_2560x1440-60.00fps.json | 2 +- ...AM_Legend 6___720p_4by3_1440x1080-30.00fps.json | 2 +- ..._M10+__Wide_1080p_16by9_1920x1080-60.00fps.json | 2 +- ... Correction_1080p_16by9_1920x1080-60.00fps.json | 2 +- ...STAR_Wide_V1_2.5k_16by9_2560x1440-59.94fps.json | 2 +- ...en correction__4k_16by9_3840x2160-29.97fps.json | 2 +- ...ndart_stab off_4k_16by9_3840x2160-29.97fps.json | 2 +- ..._SJ20_Dual__1080p_16by9_1920x1080-30.00fps.json | 2 +- ...SJ4000 Air___2.5k_16by9_2688x1520-30.02fps.json | 2 +- ...J4000___1080p_16by9_1920x1080-30.00fps (2).json | 2 +- ...1080p_16by9_1920x1080-30.00fps - Yavor - 2.json | 2 +- ...AM_SJ4000___1080p_16by9_1920x1080-30.00fps.json | 2 +- ...ult_default_1080p_16by9_1920x1080-60.00fps.json | 2 +- ...AM_SJ5000___1080p_16by9_1920x1080-60.00fps.json | 2 +- ...M_SJ5000x___1080p_16by9_1920x1080-60.00fps.json | 4 ++-- ...SJ6 Legend___2.5k_16by9_2560x1440-30.00fps.json | 2 +- ...J6 legend___1080p_16by9_1920x1080-60.00fps.json | 4 ++-- ...SJCAM_SJ6PRO___4k_16by9_3840x2160-60.00fps.json | 2 +- ...JCAM_SJ7__Wide_4k_16by9_3840x2160-29.97fps.json | 2 +- .../SJCAM_SJ7___2.7k_4by3_2880x2160-25.00fps.json | 2 +- ...S_90 Lens_WIDE_4k_16by9_3840x2160-30.00fps.json | 2 +- ...en Correction__4k_16by9_3840x2160-50.00fps.json | 2 +- ...en correction__4k_16by9_3840x2160-59.94fps.json | 2 +- ...eccin de lente_4k_16by9_3840x2160-59.94fps.json | 2 +- ...M_SJ8 PRO_int__4k_16by9_3840x2160-50.00fps.json | 2 +- ...CAM_SJ8 Plus___4k_16by9_3840x2160-30.00fps.json | 4 ++-- ...en Correction__4k_16by9_3840x2160-29.97fps.json | 4 ++-- ...JCAM_SJ8 Pro___4k_16by9_3840x2160-59.94fps.json | 4 ++-- ...AM_SJ8PRO__@_2.7k_16by9_2720x1520-59.94fps.json | 2 +- SJCAM/SJCAM_SJ8___4k_16by9_3840x2160-59.94fps.json | 2 +- ...Horizontal___480p_9by16_1088x1920-30.00fps.json | 2 +- ... Vertical___1080p_16by9_1920x1080-60.00fps.json | 2 +- ...4k Horizontal_2.7k_4by3_2880x2160-30.00fps.json | 2 +- ...CAM_c100+___1080p_16by9_1920x1080-60.00fps.json | 2 +- ...JCAM_c100+___2.5k_16by9_2560x1440-30.00fps.json | 2 +- ...SJCAM_c100+___2.7k_4by3_2880x2160-30.00fps.json | 2 +- ...c200pro__NA_1080p_16by9_1920x1080-60.00fps.json | 2 +- ...CAM_c300_PR__2.5k_16by9_2560x1440-60.00fps.json | 4 ++-- ...c300__2.5k sv_2.5k_4by3_2560x1920-30.00fps.json | 4 ++-- ...JCAM_sj10pro___4k_16by9_3840x2160-29.97fps.json | 2 +- ...j4000___1080p_16by9_1920x1080-30.00fps (3).json | 4 ++-- ..._sj6 legend___2.7k_4by3_2880x2160-24.00fps.json | 4 ++-- ...legend__max_1080p_16by9_1920x1080-60.00fps.json | 4 ++-- ...sj6legend___1080p_16by9_1920x1080-60.00fps.json | 2 +- ...JCAM_sj8 pro___4k_16by9_3840x2160-29.97fps.json | 4 ++-- ...LIOS 44M 58MM__4k_16by9_3840x2160-29.97fps.json | 2 +- ...FP_Helios 44m__4k_16by9_3840x2160-29.97fps.json | 2 +- ... AIS_MOV all-I_4k_16by9_3840x2160-25.00fps.json | 2 +- ... 35mm 1.2f__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...nder 21mm 1.4__4k_16by9_3840x2160-23.98fps.json | 2 +- ... 45mm F2.8__1080p_16by9_1920x1080-24.00fps.json | 2 +- ...ANG 12MM T3.1__4k_16by9_3840x2160-25.00fps.json | 4 ++-- ...ma 14-24mm__1080p_16by9_1920x1080-23.98fps.json | 2 +- ...mm ISO100 160_720p_4by3_1440x1080-25.00fps.json | 2 +- ...f1.8_3_2 150_4k_16by9_3840x2160-25.00fps.json | 2 +- ...ss Loxia 35mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...I_35mm F1.8_4k_2k_9by16_2160x3840-23.98fps.json | 2 +- ...I_Helios 44-6__4k_16by9_3840x2160-25.00fps.json | 2 +- ...35mm F1.8_9_16_4k_16by9_3840x2160-23.98fps.json | 2 +- ...I_Tamron202.8__4k_16by9_3840x2160-23.98fps.json | 2 +- ... 28-70 55__1080p_16by9_1920x1080-100.00fps.json | 2 +- ...II_28-70mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...FE 1.850mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...mm Di III VXD__4k_16by9_3840x2160-25.00fps.json | 2 +- ...1.4 S.S.C_120_4k_16by9_3840x2160-100.00fps.json | 2 +- ...4m f1.8 GM__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...X0M2_9fab2ee1__4k_16by9_3840x2160-23.98fps.json | 2 +- ...2_dd4199c6__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...y_DSC-RX0___1080p_16by9_1920x1080-50.00fps.json | 2 +- ...SC-RX10M4___1080p_16by9_1920x1080-50.00fps.json | 2 +- ...E-FX3_14.00mm__4k_16by9_3840x2160-50.00fps.json | 2 +- ...0mm_XAVC HS 4K_4k_16by9_3840x2160-50.00fps.json | 2 +- ...35 50mm_OCXM XT_6k_3by2_6040x4032-23.98fps.json | 2 +- Sony/Sony_ZV-E10II_Laowa 9mm.json | 2 +- ...RON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json | 2 +- ...RON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json | 2 +- ...RON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json | 2 +- ..._16-35 GM_16mm_6k_16by9_7680x4320-23.98fps.json | 2 +- ...E_Flim, Manual_4k_16by9_3840x2160-59.94fps.json | 2 +- ....8)_full frame_4k_16by9_3840x2160-25.00fps.json | 2 +- ...ON 35-1502-2.8_4k_16by9_3840x2160-50.00fps.json | 2 +- ...SLOG3 CINETONE_6k_16by9_7680x4320-25.00fps.json | 2 +- ...RON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json | 2 +- ...RON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json | 2 +- ...RON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json | 2 +- ...har 35.00mm_8k_6k_16by9_7680x4320-23.98fps.json | 2 +- ...Batis 25.00mm__4k_16by9_3840x2160-59.94fps.json | 2 +- ...Batis 40.00mm__4k_16by9_3840x2160-59.94fps.json | 2 +- ...4mm f4 Zero-D__6k_16by9_7680x4320-25.00fps.json | 2 +- ...35mm_8K 1200s_6k_16by9_7680x4320-23.98fps.json | 2 +- ...Nokton 40mm_8k_6k_16by9_7680x4320-23.98fps.json | 2 +- ...4-24mm_14mm_1080p_16by9_1920x1080-23.98fps.json | 2 +- ...0 f2.8_8K 180_6k_16by9_7680x4320-25.00fps.json | 2 +- ... 28-70_8k 180_6k_16by9_7680x4320-25.00fps.json | 2 +- ... 14.00mm 1.8f__4k_16by9_3840x2160-25.00fps.json | 2 +- ... 85mm F1.4_C8K_6k_16by9_7680x4320-29.97fps.json | 2 +- ...8 at 16mm_16MM_4k_16by9_3840x2160-59.94fps.json | 2 +- ...28@17mm_NO-EIS_6k_16by9_7680x4320-29.97fps.json | 2 +- ...28@28mm_NO-EIS_6k_16by9_7680x4320-29.97fps.json | 2 +- ...75mm Nokton_8k_6k_16by9_7680x4320-23.98fps.json | 2 +- ...mm f3.6 180_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...5100_16-50_16_720p_4by3_1440x1080-25.00fps.json | 2 +- ...al distance_1080p_16by9_1920x1080-29.97fps.json | 2 +- ... 1.8_P 60Hz_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...utter speed_1080p_16by9_1920x1080-29.97fps.json | 2 +- ...f.14_xavc-s_1080p_16by9_1920x1080-23.98fps.json | 2 +- ...6-50 F8 GM__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...6-50 at 16mm__720p_4by3_1440x1080-25.00fps.json | 2 +- ....5-5.6_16mm_1080p_16by9_1920x1080-59.94fps.json | 2 +- ..._a6000_16-50__720p_4by3_1440x1080-25.00fps.json | 2 +- ...50 3.5-5.6__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...16mm 1_1.4__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...16nm 1_1.4__1080p_16by9_1920x1080-50.00fps.json | 2 +- ..._18-55 kit__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...y kit lens__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...6000_50 f2__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...a6000_50mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...a6000_55-210__720p_4by3_1440x1080-25.00fps.json | 2 +- ..._Helios-33__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...2.8 Zero-D__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...1650_16MM_720p_4by3_1440x1080-25.00fps - 2.json | 2 +- ...1650_16MM_720p_4by3_1440x1080-25.00fps - 3.json | 2 +- ...1650_16MM_720p_4by3_1440x1080-25.00fps - 4.json | 2 +- ...SELP1650_16MM_720p_4by3_1440x1080-25.00fps.json | 2 +- ..._1920x1080-50.00fps - Massimo Bravetti - 2.json | 2 +- ...t1.5 VDSLR__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...6-50mm_16mm_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...6.9 full hd_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...2.8 Iso1000_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...c surfaces__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...y_a6000_Sony__720p_4by3_1440x1080-29.97fps.json | 2 +- ...00 2.8-5.6__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...16mm - 50mm_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...unt f4_16.9_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...ny 50m_16.9_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...ony 55-210__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...klens@16mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...80p_1.98by1_1920x968-50.00fps - dikapc - 2.json | 2 +- ...50mm f1.2__1080p_1.98by1_1920x968-50.00fps.json | 2 +- ...6100_16-50__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...16by9_3840x2160-29.97fps - FENGKAI LIU - 2.json | 2 +- ...6100_16-50s_24_4k_16by9_3840x2160-29.97fps.json | 2 +- ...m F4 G_18mm_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...100_30mmmacro__4k_16by9_3840x2160-29.97fps.json | 2 +- ...00_39mm macro__4k_16by9_3840x2160-29.97fps.json | 2 +- ...R _ RE=0.52_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...m de 16-50 mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...on 60mm macro__4k_16by9_3840x2160-29.97fps.json | 2 +- ...5.616mm_steady_4k_16by9_3840x2160-25.00fps.json | 2 +- ...5.650mm_steady_4k_16by9_3840x2160-25.00fps.json | 2 +- ....3210mm_steady_4k_16by9_3840x2160-25.00fps.json | 2 +- ... f2 AF Sony e__4k_16by9_3840x2160-25.00fps.json | 2 +- ...-50 2.8 DC DN__4k_16by9_3840x2160-25.00fps.json | 2 +- ... 18-50 2.8__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...gma 18-50 2.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...ony 18-55 Kit__4k_16by9_3840x2160-25.00fps.json | 2 +- ...y 85mm 1.8 FE__4k_16by9_3840x2160-25.00fps.json | 2 +- ...y 55-210mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...05 F4_16mm 25_4k_16by9_3840x2160-25.00fps.json | 2 +- ...m F4_manual_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...ndard Kit_16mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ...00_16-50.16mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...00_16-50_16_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...00_16-50_60_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...y_a6300_16-50__4k_16by9_3840x2160-29.97fps.json | 2 +- ...VC S HD 50M_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...00_16-50mm__1080p_16by9_1920x1080-29.97fps.json | 2 +- ...0_1650__1080p_16by9_1920x1080-50.00fps - 2.json | 2 +- ...0_1650__1080p_16by9_1920x1080-50.00fps - 4.json | 2 +- ...a6300_1650__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...300_18-135__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...kit lens 16mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...y_a6300_18__1080p_16by9_1920x1080-50.00fps.json | 2 +- ..._3.5-5.616-50__4k_16by9_3840x2160-23.98fps.json | 2 +- ...a6300_30 f1.4__4k_16by9_3840x2160-25.00fps.json | 2 +- ..._50mm 1.8 OSS__4k_16by9_3840x2160-25.00fps.json | 2 +- ...50mm F1.8_1100_4k_16by9_3840x2160-25.00fps.json | 2 +- ...6300_55210__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...00_7.52.8fish__4k_16by9_3840x2160-29.97fps.json | 2 +- ...4_@70mm, 29.97_4k_16by9_3840x2160-29.97fps.json | 2 +- ...Artisans 25mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...S-C_35mm APS-C_4k_16by9_3840x2160-23.98fps.json | 2 +- ...ns 7.5mm F2.8__4k_16by9_3840x2160-29.97fps.json | 2 +- ...tisans 12mm 2__4k_16by9_3840x2160-29.97fps.json | 2 +- ...on 24-105_24mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...er 35mm 100mbs_4k_16by9_3840x2160-23.98fps.json | 2 +- ...aowa 9mm f2.8__4k_16by9_3840x2160-23.98fps.json | 2 +- ...AVC S 4K_25FPS_4k_16by9_3840x2160-25.00fps.json | 2 +- ...Fisheye_XAVC S_4k_16by9_3840x2160-25.00fps.json | 2 +- ...Fisheye_XAVC S_4k_16by9_3840x2160-29.97fps.json | 2 +- ...a6300_Rokinon__4k_16by9_3840x2160-23.98fps.json | 2 +- ...L 70-200mm F4__4k_16by9_3840x2160-29.97fps.json | 2 +- ...U1_@12mm,29.97_4k_16by9_3840x2160-29.97fps.json | 2 +- ...SEL16F28_29.97_4k_16by9_3840x2160-29.97fps.json | 2 +- ...70_XAVCS HD_1080p_16by9_1920x1080-29.97fps.json | 2 +- ...1.4 DC DN_16mm_4k_16by9_3840x2160-23.98fps.json | 2 +- ...12mm f2.0_12mm_4k_16by9_3840x2160-23.98fps.json | 2 +- ... 12mm f2.0_60M_4k_16by9_3840x2160-23.98fps.json | 2 +- ...g 12mm__4k_16by9_3840x2160-29.97fps - Leon.json | 2 +- ..._Samyang 12mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...ang 21mm f1.4__4k_16by9_3840x2160-29.97fps.json | 2 +- ...amyang12mm f2__4k_16by9_3840x2160-29.97fps.json | 2 +- ...a 16mm 1.4__1080p_16by9_1920x1080-23.98fps.json | 2 +- ...gma 16mm F1.4__4k_16by9_3840x2160-23.98fps.json | 2 +- ... 16mm f1.4 DN__4k_16by9_3840x2160-25.00fps.json | 2 +- ...16mm f1.4_XAVC_4k_16by9_3840x2160-23.98fps.json | 2 +- ...16mm f1.4__4k_16by9_3840x2160-23.98fps (2).json | 2 +- ...00_Sigma 16mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...mm 2.8_18mm_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...2.8 DC DN__4k_16by9_3840x2160-25.00fps - 2.json | 2 +- ...2.8 DC DN__4k_16by9_3840x2160-25.00fps - 4.json | 2 +- ...mm F2.8 DC DN__4k_16by9_3840x2160-25.00fps.json | 2 +- ...0F1.4_x1920_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...m 1.4_XAVCS_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...Sigma 30mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...00_Sigma 30mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...00_Sigma 30mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ..._16mm_f1.4_1080p_16by9_1920x1080-100.00fps.json | 2 +- ...mm f4_10mm_1080p_16by9_1920x1080-100.00fps.json | 2 +- ...0-18mm f4_10mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ... 16-50@50__1080p_16by9_1920x1080-100.00fps.json | 2 +- ...-105mm F4_18mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...ony 20mm f2.8__4k_16by9_3840x2160-23.98fps.json | 2 +- ...5-5,616-50_25p_4k_16by9_3840x2160-23.98fps.json | 2 +- ...00_Sony18-105__4k_16by9_3840x2160-25.00fps.json | 2 +- ...AMRON18-300mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...n 17-70_HD_1080p_16by9_1920x1080-119.88fps.json | 2 +- ...on 28-200_28mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...mron 35-150_35_4k_16by9_3840x2160-23.98fps.json | 2 +- ...50 f1.8_28M_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...LAI 25mm F1.8__4k_16by9_3840x2160-29.97fps.json | 2 +- ..._a6300_e50__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...ony_a6300_ind__4k_16by9_3840x2160-29.97fps.json | 2 +- ...cs no super 35_4k_16by9_3840x2160-29.97fps.json | 2 +- ...16-50_16mm_1080p_16by9_1920x1080-100.00fps.json | 2 +- ...kstar 10MM F8__4k_16by9_3840x2160-29.97fps.json | 2 +- ...gem-501.4__1080p_16by9_1920x1080-100.00fps.json | 2 +- ...igem501.4__1080p_16by9_1920x1080-100.00fps.json | 2 +- ... f1.4_30mm_1080p_16by9_1920x1080-119.88fps.json | 2 +- ... 30mm F1.4__1080p_16by9_1920x1080-50.00fps.json | 2 +- ..._sony 35mm__1080p_16by9_1920x1080-23.98fps.json | 2 +- ...S PZ_super35mm_4k_16by9_3840x2160-23.98fps.json | 2 +- ..._tamron 17-70__4k_16by9_3840x2160-23.98fps.json | 2 +- ...m f1.8_1500_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...00_ 20mm F2.8__4k_16by9_3840x2160-29.97fps.json | 2 +- ...m F1.7_0.95793_4k_16by9_3840x2160-29.97fps.json | 2 +- ...0-20 F4 G_10mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ...0_11-20 11 4k__4k_16by9_3840x2160-29.97fps.json | 2 +- ...00_11-20 16mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ..._11-20 2.8__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...y_a6400_11-20__4k_16by9_3840x2160-25.00fps.json | 2 +- ...m__4k_16by9_3840x2160-29.97fps - admin - 2.json | 2 +- ...ny_a6400_11mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...GMaster(16mm)__4k_16by9_3840x2160-25.00fps.json | 2 +- ..._16-50_16mm_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...a6400_16-50_25_4k_16by9_3840x2160-25.00fps.json | 2 +- ...400_16-50__1080p_16by9_1920x1080-100.00fps.json | 2 +- ...400_16-50__1080p_16by9_1920x1080-119.88fps.json | 2 +- ...0_16-50mm__4k_16by9_3840x2160-25.00fps (2).json | 2 +- ...a6400_16-50mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...a6400_16-50mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...calibracion 10_4k_16by9_3840x2160-29.97fps.json | 2 +- ...y_a6400_16-70__4k_16by9_3840x2160-25.00fps.json | 2 +- ...17-70 17mm 4k__4k_16by9_3840x2160-25.00fps.json | 2 +- ..._17-70 2.8__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...6400_17-70 35__4k_16by9_3840x2160-29.97fps.json | 2 +- ...00_17-70 35mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...6400_17-70__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...1770 2.8 17_25_4k_16by9_3840x2160-23.98fps.json | 2 +- ....8 at 17_25fps_4k_16by9_3840x2160-23.98fps.json | 2 +- ...400_18-105 F4__4k_16by9_3840x2160-29.97fps.json | 2 +- ...5 g_super 35mm_4k_16by9_3840x2160-23.98fps.json | 2 +- ...6400_18-105mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...0 f1_2.8s__1080p_16by9_1920x1080-100.00fps.json | 2 +- ...p_16by9_1920x1080-50.00fps - Administrator.json | 2 +- ...400_23 1.4__1080p_16by9_1920x1080-50.00fps.json | 2 +- ..._a6400_23e1.4__4k_16by9_3840x2160-25.00fps.json | 2 +- ...6400_25 F 1.7__4k_16by9_3840x2160-25.00fps.json | 2 +- ...Sony_a6400_35__4k_16by9_3840x2160-25.00fps.json | 2 +- ...m F1.8 OSS__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...400_416-70__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...Sony_a6400_50__4k_16by9_3840x2160-25.00fps.json | 2 +- ...a6400_55-210__720p_16by9_1280x720-25.00fps.json | 2 +- ...400_56 1.4__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...y_a6400_56__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...6400_751.2__1080p_16by9_1920x1080-50.00fps.json | 2 +- ... 7.5mm Fisheye__4k_16by9_3840x2160-0.00fps.json | 2 +- ...ny E-Mount__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...ns 7.5mm f2.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...sans 7.5mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...6400_90mmf2.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...5.6 OSS_18F3.5_4k_16by9_3840x2160-25.00fps.json | 2 +- ...6pz 16-50 oss__4k_16by9_3840x2160-29.97fps.json | 2 +- ..._a6400_E16-50__4k_16by9_3840x2160-29.97fps.json | 2 +- ...4-70mm F2.8 GM__4k_16by9_3840x2160-0.00fps.json | 2 +- ...ny_a6400_FE50__4k_16by9_3840x2160-25.00fps.json | 2 +- ... Shutter Speed_4k_16by9_3840x2160-25.00fps.json | 2 +- ...2.8 Zero-D__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...35 7.5mm T2.9__4k_16by9_3840x2160-29.97fps.json | 2 +- ...Lens kit 16mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...onAF-24mm_1200_4k_16by9_3840x2160-29.97fps.json | 2 +- ...konAF-24mm__1080p_16by9_1920x1080-29.97fps.json | 2 +- ..._Rokinon 14mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...SEL1670z_16 mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...SEL1670z_35 mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...SEL18-200_18mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...00_SEL35mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...SELP1650 16mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...P18105F4G_18mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...4 DC DN_-100MP_4k_16by9_3840x2160-25.00fps.json | 2 +- ...DC DN_-50MP_1080p_16by9_1920x1080-50.00fps.json | 2 +- ... DN_P-100M_1080p_16by9_1920x1080-100.00fps.json | 2 +- ...MM F1.4 DC DN__4k_16by9_3840x2160-23.98fps.json | 2 +- ...SIGMA 56mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...400_SIGMA__1080p_16by9_1920x1080-100.00fps.json | 2 +- ...F1.8_P 50M_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...ONY SEL50F18F__4k_16by9_3840x2160-25.00fps.json | 2 +- ...g 12mm 2.0__1080p_16by9_1920x1080-23.98fps.json | 2 +- ...0_Sigma 10-20__4k_16by9_3840x2160-23.98fps.json | 2 +- ...emporane_25fps_4k_16by9_3840x2160-23.98fps.json | 2 +- ...C DN Sony E_px_4k_16by9_3840x2160-25.00fps.json | 2 +- ...emporane_Amplo_4k_16by9_3840x2160-29.97fps.json | 2 +- ...6mm F1.4_APS-C_4k_16by9_3840x2160-25.00fps.json | 2 +- ...gma 16mm F1.4__4k_16by9_3840x2160-25.00fps.json | 2 +- ...f1.4 ISO800_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...gma 16mm f1.4__4k_16by9_3840x2160-23.98fps.json | 2 +- ...gma 16mm f1.4__4k_16by9_3840x2160-29.97fps.json | 2 +- ... F1.4_50 Mb_1080p_16by9_1920x1080-29.97fps.json | 2 +- ...F1.4 DC DN__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...mm F1.4 DC DN__4k_16by9_3840x2160-23.98fps.json | 2 +- ...gma 30mm F1.4__4k_16by9_3840x2160-29.97fps.json | 2 +- ...1.4 dc dn_hlg2_4k_16by9_3840x2160-29.97fps.json | 2 +- ...6 1.4 art_100M_4k_16by9_3840x2160-23.98fps.json | 2 +- ...igma16 1.4__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...00_Sigma16mm__720p_16by9_1280x720-25.00fps.json | 2 +- ...0_Sigma30 1.4__4k_16by9_3840x2160-29.97fps.json | 2 +- ..._Sigma30mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ..._f1,4_DC_DN_px_4k_16by9_3840x2160-25.00fps.json | 2 +- ...ony 11mm f1.8__4k_16by9_3840x2160-23.98fps.json | 2 +- ...ony 11mm f1.8__4k_16by9_3840x2160-29.97fps.json | 2 +- ...Sony 16-50 mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...00_Sony 16-50__4k_16by9_3840x2160-25.00fps.json | 2 +- ... Montura E__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...5mm GM_at 16mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ... 18-135mm__1080p_16by9_1920x1080-119.88fps.json | 2 +- ...f1.8 SEL35F18__4k_16by9_3840x2160-25.00fps.json | 2 +- ...0_Sony 50_M_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...E 16-50mm_16mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...4k_16by9_3840x2160-23.98fps - Ement CZ - 2.json | 2 +- ... F3.5-5.6 OSS__4k_16by9_3840x2160-23.98fps.json | 2 +- ...f1.4 ISO800_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...0_Sony E1.811__4k_16by9_3840x2160-29.97fps.json | 2 +- ...FE 28MM F2__1080p_16by9_1920x1080-50.00fps.json | 2 +- ... FE 50mm F1.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...SEL18-200_18mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...6 16-50mm_16mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ...10-20G_10mm_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...-70mm F2.8__1080p_16by9_1920x1080-59.94fps.json | 2 +- ..._18-300_18mm_-_4k_16by9_3840x2160-25.00fps.json | 2 +- ...isans_35mm_1080p_16by9_1920x1080-119.88fps.json | 2 +- ...ron 11-20_11mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...17-70 2.8_17mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ...n 17-7017__4k_16by9_3840x2160-25.00fps - 3.json | 2 +- ...amron 17-7017__4k_16by9_3840x2160-25.00fps.json | 2 +- ...m @17mm F2.8_@_4k_16by9_3840x2160-23.98fps.json | 2 +- ...m F2.8 @17mm_@_4k_16by9_3840x2160-23.98fps.json | 2 +- ...teady Shot OFF_4k_16by9_3840x2160-23.98fps.json | 2 +- ...n 1770_17mm_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...0 2.8 35mm__1080p_16by9_1920x1080-29.97fps.json | 2 +- ...0MM f2.8_0.777_4k_16by9_3840x2160-29.97fps.json | 2 +- ... F2.8_1.05198_4k_16by9_3840x2160-29.97fps.json | 2 +- ...MM F2.8_0.8778_4k_16by9_3840x2160-29.97fps.json | 2 +- ...M F2.8_1.03735_4k_16by9_3840x2160-29.97fps.json | 2 +- ...ILTROX 27F1.2__4k_16by9_3840x2160-25.00fps.json | 2 +- ...TROX 27mmf1.2__4k_16by9_3840x2160-29.97fps.json | 2 +- ...TX56mm_0.57851_4k_16by9_3840x2160-29.97fps.json | 2 +- ...TX56mm_0.68737_4k_16by9_3840x2160-29.97fps.json | 2 +- ...x 56mm 1.4__1080p_16by9_1920x1080-59.94fps.json | 2 +- ....8S DA DSM__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...y_a6400__24 mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...ny_a6400___1080p_16by9_1920x1080-119.88fps.json | 2 +- Sony/Sony_a6400___4k_16by9_3840x2160-25.00fps.json | 2 +- ...ony_a6400_e24__4k_16by9_3840x2160-25.00fps.json | 2 +- ...shima 50_HD_1080p_16by9_1920x1080-50.00fps.json | 2 +- ..._4k_16by9_3840x2160-23.98fps - Inmedia - 2.json | 2 +- ...ma 18-50mm_60m_4k_16by9_3840x2160-25.00fps.json | 2 +- ...0 F1.4_0.56624_4k_16by9_3840x2160-29.97fps.json | 2 +- ...m F1.4_0.62659_4k_16by9_3840x2160-29.97fps.json | 2 +- ...sigma 30mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...ma 56 1.4 art__4k_16by9_3840x2160-23.98fps.json | 2 +- ...6 mm 1.4f_1.4f_4k_16by9_3840x2160-25.00fps.json | 2 +- ...AVC super 35mm_4k_16by9_3840x2160-23.98fps.json | 2 +- ...ma16-1.4_50_1080p_16by9_1920x1080-50.00fps.json | 2 +- ..._sigma16mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...00_sigma28-70__4k_16by9_3840x2160-29.97fps.json | 2 +- ...50mm_P 50M_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...ny 35mm f 1.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...sony 55-210mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...sony e 1.811__720p_16by9_1280x720-29.97fps.json | 2 +- ... e 11mm f1.8__720p_16by9_1280x720-29.97fps.json | 2 +- ...0_sony16mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...ron 11-20_11mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ...770 f2.8 17_25_4k_16by9_3840x2160-23.98fps.json | 2 +- ...glong11-20__1080p_16by9_1920x1080-50.00fps.json | 2 +- ..._viltrox 35mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...6mm F1.7_0.858_4k_16by9_3840x2160-29.97fps.json | 2 +- ...gyao35mmF0.95__4k_16by9_3840x2160-25.00fps.json | 2 +- ..._ynlens-50mm_-_4k_16by9_3840x2160-25.00fps.json | 2 +- ...f2_50fps150_1080p_16by9_1920x1080-25.00fps.json | 2 +- ... mm 1.4 sigma__4k_16by9_3840x2160-29.97fps.json | 2 +- ...18-50_cine4_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...5-5.6_50fps_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...MM 2.0_FHD_1080p_16by9_1920x1080-119.88fps.json | 2 +- ... mm 2,8 sigma__4k_16by9_3840x2160-29.97fps.json | 2 +- ...6 f1.7_100_1080p_16by9_1920x1080-100.00fps.json | 2 +- ... F3.5-5.6 OSS__4k_16by9_3840x2160-29.97fps.json | 2 +- ...non 12mm CINE__4k_16by9_3840x2160-25.00fps.json | 2 +- ...6F OSS_24mm_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...Sony a 6500_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...ma 18-50mm__1080p_16by9_1920x1080-29.97fps.json | 2 +- ...emporary_50_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...0-18mm F4_10mm_4k_16by9_3840x2160-23.98fps.json | 2 +- ...0-18mm F4_18mm_4k_16by9_3840x2160-23.98fps.json | 2 +- ...080p_16by9_1920x1080-119.88fps - Dejan - 3.json | 2 +- ...418-105mm__1080p_16by9_1920x1080-119.88fps.json | 2 +- ...0mm_Full HD_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...500_Sony 50mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ....6_@ 28mm f3.5_4k_16by9_3840x2160-25.00fps.json | 2 +- ..._SteadyShotON,_4k_16by9_3840x2160-25.00fps.json | 2 +- ... 13mm f.14__1080p_16by9_1920x1080-29.97fps.json | 2 +- ...rox 13mm f.14__4k_16by9_3840x2160-29.97fps.json | 2 +- ...ang 35 1.4 af__4k_16by9_3840x2160-23.98fps.json | 2 +- ...00_sigma 30mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...080p_16by9_1920x1080-119.88fps - Dejan - 2.json | 2 +- ...y 418-105__1080p_16by9_1920x1080-119.88fps.json | 2 +- ...rox fe20 f2.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...y_a6600_10-18__4k_16by9_3840x2160-23.98fps.json | 2 +- ...a6600_10-18mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...0_18-105mm f4__4k_16by9_3840x2160-25.00fps.json | 2 +- ...ny_a6600_24mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...35 OSS_18mm_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...18105G_18mm F4_4k_16by9_3840x2160-29.97fps.json | 2 +- ...8mm F2.8_@16mm_4k_16by9_3840x2160-23.98fps.json | 2 +- ... 56mm F1.4__1080p_16by9_1920x1080-29.97fps.json | 2 +- ...0_Sigma30 1.4__4k_16by9_3840x2160-25.00fps.json | 2 +- ...00_pz10-20__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...6 18-135_25 p_4k_16by9_3840x2160-25.00fps.json | 2 +- ....00mm_16-50 mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ...ON 17-70mm_1080p_16by9_1920x1080-100.00fps.json | 2 +- ...TAMRON 17-70mm_4k_16by9_3840x2160-50.00fps.json | 2 +- ...-105mm F4 OSS__4k_16by9_3840x2160-50.00fps.json | 2 +- ....00mm_60 10bit_4k_16by9_3840x2160-59.94fps.json | 2 +- ...m Focal Length_4k_16by9_3840x2160-23.98fps.json | 2 +- ....00mm-50.00mm__4k_16by9_3840x2160-50.00fps.json | 2 +- ... f2.8, iso 500_4k_16by9_3840x2160-23.98fps.json | 2 +- ...-50 f2.8 DC DN_4k_16by9_3840x2160-50.00fps.json | 2 +- ...6by9_3840x2160-59.94fps - Mehmet Kozal - 2.json | 2 +- ...840x2160@59940_4k_16by9_3840x2160-59.94fps.json | 2 +- ...a6700_1813518__4k_16by9_3840x2160-59.94fps.json | 2 +- ...mm_18-50mm18mm_4k_16by9_3840x2160-50.00fps.json | 2 +- ...mm_VILTROX PRO_4k_16by9_3840x2160-59.94fps.json | 2 +- ...gma 30 1.4_4k_16by9_3840x2160-29.97fps - 3.json | 2 +- ...m_sigma 30 1.4_4k_16by9_3840x2160-29.97fps.json | 2 +- ..._30.00mm_sigma_4k_16by9_3840x2160-29.97fps.json | 2 +- ...n 35mm F1.8_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...840x2160@59940_4k_16by9_3840x2160-59.94fps.json | 2 +- ...0mm_16-50.00mm_4k_16by9_3840x2160-59.94fps.json | 2 +- ...700_50mm 0.98__4k_16by9_3840x2160-59.94fps.json | 2 +- ...m_SIGMA 56f1.4_4k_16by9_3840x2160-59.94fps.json | 2 +- ...mm_sigma56F1.4_4k_16by9_3840x2160-59.94fps.json | 2 +- ...m_sigma56mmf14_4k_16by9_3840x2160-50.00fps.json | 2 +- ..._70.00mm_59fps_4k_16by9_3840x2160-59.94fps.json | 2 +- ...00mm_SEL70350G_4k_16by9_3840x2160-29.97fps.json | 2 +- ...ON 17-70mm_1080p_16by9_1920x1080-100.00fps.json | 2 +- ...TSTAR 12mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...6700_LAOWA_9mm_4k_16by9_3840x2160-50.00fps.json | 2 +- ...700_Laowa 9mm__4k_16by9_3840x2160-50.00fps.json | 2 +- ...4_1125 ISO 800_4k_16by9_3840x2160-59.94fps.json | 2 +- ... NCS Fish-eye__4k_16by9_3840x2160-59.94fps.json | 2 +- ...SELP1020G_10mm_4k_16by9_3840x2160-59.94fps.json | 2 +- ...SELP1020G_15mm_4k_16by9_3840x2160-59.94fps.json | 2 +- ...SELP1020G_20mm_4k_16by9_3840x2160-59.94fps.json | 2 +- ...8-50_2.8 DGDN__4k_16by9_3840x2160-29.97fps.json | 2 +- ...m F2.8 DC DN__4k_16by9_3840x2160-59.94fps.json | 2 +- ... DN_SONY A6700_4k_16by9_3840x2160-50.00fps.json | 2 +- ... 15.00mm F1.4__4k_16by9_3840x2160-50.00fps.json | 2 +- ...m F2 AF APS-C__4k_16by9_3840x2160-29.97fps.json | 2 +- ...12.00mm F2 AF__4k_16by9_3840x2160-29.97fps.json | 2 +- ...g24.00mm f1.8__4k_16by9_3840x2160-59.94fps.json | 2 +- ...m 18-50 2.8_50_4k_16by9_3840x2160-25.00fps.json | 2 +- ...m Focal Length_4k_16by9_3840x2160-23.98fps.json | 2 +- ...840x2160@23976_4k_16by9_3840x2160-23.98fps.json | 2 +- ...18-50 18.00mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...18-50 50.00mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ... DC DN_27.70mm_4k_16by9_3840x2160-59.94fps.json | 2 +- ... DC DN_34.80mm_4k_16by9_3840x2160-59.94fps.json | 2 +- ... DC DN_50.00mm_4k_16by9_3840x2160-59.94fps.json | 2 +- ... f2.8 36.30mm__4k_16by9_3840x2160-50.00fps.json | 2 +- ...16by9_3840x2160-29.97fps - Jack Grasso - 2.json | 2 +- ...16by9_3840x2160-29.97fps - Jack Grasso - 3.json | 2 +- ...16by9_3840x2160-29.97fps - Jack Grasso - 4.json | 2 +- ...16by9_3840x2160-29.97fps - Jack Grasso - 5.json | 2 +- ..._Sigma 18-50_@_4k_16by9_3840x2160-29.97fps.json | 2 +- ...m F2.8 24.0mm__4k_16by9_3840x2160-50.00fps.json | 2 +- ...m F2.8 35.0mm__4k_16by9_3840x2160-50.00fps.json | 2 +- ... DC DN_24.20mm_4k_16by9_3840x2160-59.94fps.json | 2 +- ...rt APS-C_a6700_4k_16by9_3840x2160-29.97fps.json | 2 +- ... 1.4_30mm f1.4_4k_16by9_3840x2160-23.98fps.json | 2 +- ...Sigma 56.00mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...Sigma 56.00mm__4k_16by9_3840x2160-59.94fps.json | 2 +- ...igma 56mm 1.4__4k_16by9_3840x2160-50.00fps.json | 2 +- ...gma 56mm f1.4__4k_16by9_3840x2160-29.97fps.json | 2 +- ...per 23mm F1.2__4k_16by9_3840x2160-29.97fps.json | 2 +- ..._Sony 15.00mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...f5.6 135.00mm__4k_16by9_3840x2160-59.94fps.json | 2 +- ...0-210.00mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...ony 50mm F1.8__4k_16by9_3840x2160-23.98fps.json | 2 +- ...ny 70-350_70mm_4k_16by9_3840x2160-59.94fps.json | 2 +- ...ON 18.00mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...17-70_17.00mm__4k_16by9_3840x2160-50.00fps.json | 2 +- ...ARMRON 18-300__4k_16by9_3840x2160-50.00fps.json | 2 +- ... 27mm f2.8__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...0mm @ 35mm__1080p_16by9_1920x1080-23.98fps.json | 2 +- ...n 17-70mm_17mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...300 (18.00mm)__4k_16by9_3840x2160-23.98fps.json | 2 +- ...Di III RXD_24p_4k_16by9_3840x2160-59.94fps.json | 2 +- ... 27.00mm_25fps_4k_16by9_3840x2160-25.00fps.json | 2 +- ..._Viltrox 27mm__4k_16by9_3840x2160-59.94fps.json | 2 +- ...2_1125 ISO 800_4k_16by9_3840x2160-59.94fps.json | 2 +- ...11mm F1.8S DA__4k_16by9_3840x2160-50.00fps.json | 2 +- ...ngnuo 16.00mm__4k_16by9_3840x2160-59.94fps.json | 2 +- ... f2.6_50fps_1080p_16by9_1920x1080-58.53fps.json | 2 +- ...9_3840x2160-50.00fps - Antonello Curci - 2.json | 2 +- ...nyang12mmF2.0__4k_16by9_3840x2160-59.94fps.json | 2 +- ...F2.8(16.00mm)__4k_16by9_3840x2160-50.00fps.json | 2 +- ...ma 18-50 24mm__4k_16by9_3840x2160-59.94fps.json | 2 +- ...ma 18-50 28mm__4k_16by9_3840x2160-59.94fps.json | 2 +- ...ma 18-50 35mm__4k_16by9_3840x2160-59.94fps.json | 2 +- ...18-50 50mm__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...ma 18-50 50mm__4k_16by9_3840x2160-59.94fps.json | 2 +- ... F2.8 18.00mm__4k_16by9_3840x2160-50.00fps.json | 2 +- ...18-50@18.00mm__4k_16by9_3840x2160-59.94fps.json | 2 +- ...sigma 18-50mm__4k_16by9_3840x2160-50.00fps.json | 2 +- ...igma 23.00 mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ... 23.00mm f1.4__4k_16by9_3840x2160-59.94fps.json | 2 +- ...30 F1.4 DC DN__4k_16by9_3840x2160-50.00fps.json | 2 +- ...a 30.00mm__4k_16by9_3840x2160-59.94fps - 3.json | 2 +- ...sigma 30.00mm__4k_16by9_3840x2160-59.94fps.json | 2 +- ...gma 30f1.4__1080p_16by9_1920x1080-25.00fps.json | 2 +- ... 56.00mm F1.4__4k_16by9_3840x2160-50.00fps.json | 2 +- ...8 50)-18mm__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...8 50)-35mm__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...18-50 18.00mm__4k_16by9_3840x2160-59.94fps.json | 2 +- ... F2.8 50.00mm__4k_16by9_3840x2160-50.00fps.json | 2 +- ...05mm F4 G_18mm_4k_16by9_3840x2160-50.00fps.json | 2 +- ...ron 17-70 2.8__4k_16by9_3840x2160-59.94fps.json | 2 +- ... 27.00 1.2pro__4k_16by9_3840x2160-59.94fps.json | 2 +- ...7.00 1.2promm__4k_16by9_3840x2160-59.94fps.json | 2 +- ... 11.00mm f1.8__4k_16by9_3840x2160-59.94fps.json | 2 +- ...ony_a77_16__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...2.00mm_A7C2_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...00mm samyang__4k_16by9_3840x2160-23.98fps.json | 2 +- ...I_16-28 2.8_24_4k_16by9_3840x2160-23.98fps.json | 2 +- ..._16-50 20MM_60_4k_16by9_3840x2160-59.94fps.json | 2 +- ..._16-50 apsc_60_4k_16by9_3840x2160-59.94fps.json | 2 +- ...8.00mm_SAMYANG_4k_16by9_3840x2160-29.97fps.json | 2 +- ...m_viltrox_20mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ..._a7CII_2875G2__4k_16by9_3840x2160-50.00fps.json | 2 +- ...I_2875g2_75mm__4k_16by9_3840x2160-50.00fps.json | 2 +- ...APSC Mode_100s_4k_16by9_3840x2160-25.00fps.json | 2 +- ...yongnuo50mm1.8_4k_16by9_3840x2160-29.97fps.json | 2 +- ...0.00mm_yongnuo_4k_16by9_3840x2160-29.97fps.json | 2 +- ... F1.8 SAMYANG__4k_16by9_3840x2160-29.97fps.json | 2 +- ...0mm_1640s 75mm_4k_16by9_3840x2160-50.00fps.json | 2 +- ...k_16by9_3840x2160-25.00fps - SmileDoge - 2.json | 2 +- ...FE 20-70g f4_@_4k_16by9_3840x2160-25.00fps.json | 2 +- ...@20mm F4 S1200_4k_16by9_3840x2160-29.97fps.json | 2 +- ...-70mm F4_@20mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ... 20-70mm_@20mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ...II_FE 24-105G__4k_16by9_3840x2160-29.97fps.json | 2 +- ...7CII_FE85F1.8__4k_16by9_3840x2160-29.97fps.json | 2 +- ...posal Lens__1080p_16by9_1920x1080-23.98fps.json | 2 +- ...__4k_16by9_3840x2160-23.98fps - Hoyeon - 2.json | 2 +- ...odak 30mm f10__4k_16by9_3840x2160-23.98fps.json | 2 +- ...0 F4G 20-70mm__4k_16by9_3840x2160-59.94fps.json | 2 +- ...0-70 F4G 20mm__4k_16by9_3840x2160-59.94fps.json | 2 +- ...myang 35.00mm__4k_16by9_3840x2160-50.00fps.json | 2 +- ...-AF T1.9 75mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...0F2.8_@70 APSC_4k_16by9_3840x2160-59.94fps.json | 2 +- ...g28-70f2.8_@50_4k_16by9_3840x2160-29.97fps.json | 2 +- ...g28-70f2.8_@70_4k_16by9_3840x2160-29.97fps.json | 2 +- ... DG DN Art II__4k_16by9_3840x2160-23.98fps.json | 2 +- ...5 f1.8_SS 1100_4k_16by9_3840x2160-25.00fps.json | 2 +- ...5 f1.8_SS 1100_4k_16by9_3840x2160-25.00fps.json | 2 +- ...L2875 75.00mm__4k_16by9_3840x2160-50.00fps.json | 2 +- ... 11mm F2.8__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...m17-28f2.8_@20_4k_16by9_3840x2160-29.97fps.json | 2 +- ...Tam20F2.8_APSC_4k_16by9_3840x2160-59.94fps.json | 2 +- ...CII_Tam20f2.8__4k_16by9_3840x2160-59.94fps.json | 2 +- ...a7CII_Tam20mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...0f4.5-6.3_@135_4k_16by9_3840x2160-29.97fps.json | 2 +- ...28mm f2.8_17mm_4k_16by9_3840x2160-23.98fps.json | 2 +- ...2.8 DiIII VXD__4k_16by9_3840x2160-29.97fps.json | 2 +- ... 24.00mm f2.8__4k_16by9_3840x2160-29.97fps.json | 2 +- ...ron 24mm f2.8__4k_16by9_3840x2160-29.97fps.json | 2 +- ...200 @ 28.00mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...00-28.00mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...8_@17 60p APSC_4k_16by9_3840x2160-29.97fps.json | 2 +- ...Firin 20.00mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...X 27.00mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...LTROX 16.00mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...30 fps SS 1100_4k_16by9_3840x2160-25.00fps.json | 2 +- ...0 f2.8_SS 1100_4k_16by9_3840x2160-25.00fps.json | 2 +- ...rox 20mm f2.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...m f2.8_cropped_4k_16by9_3840x2160-50.00fps.json | 2 +- ...rox 50mm F1.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...m F2.8 FE_APSC_4k_16by9_3840x2160-59.94fps.json | 2 +- ...1080p_16by9_1920x1080-50.00fps - YLTai - 2.json | 2 +- ...mm F2.8 FE__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...2.8 FE_XAVC HS_4k_16by9_3840x2160-23.98fps.json | 2 +- ...F2 Aspherical__4k_16by9_3840x2160-23.98fps.json | 2 +- ...N 85.00mm 1.8__4k_16by9_3840x2160-23.98fps.json | 2 +- ...1.8 DF DSM__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...ns-35mm-F2__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...6 28-70mm_28mm_4k_16by9_3840x2160-23.98fps.json | 2 +- ....00mm f2.8__1080p_16by9_1920x1080-59.94fps.json | 2 +- ....8 28.00mm__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...70 28.00mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...28-70=28.00mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...0 28.00mm_P_1080p_16by9_1920x1080-59.94fps.json | 2 +- ....00mm1.4_XAVCS_4k_16by9_3840x2160-25.00fps.json | 2 +- ...umyang75.00mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...00 @ 134.00mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...00 @ 158.00mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...200 @ 28.00mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...200 @ 35.00mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...200 @ 49.00mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...200 @ 69.00mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...200 @ 98.00mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...tartisan 10mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ....4 Aspherical__4k_16by9_3840x2160-59.94fps.json | 2 +- ...C_10-24_14_1080p_16by9_1920x1080-100.00fps.json | 2 +- Sony/Sony_a7C_10__4k_16by9_3840x2160-25.00fps.json | 2 +- ...Sony_a7C_10mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ..._a7C_11baea79__4k_16by9_3840x2160-25.00fps.json | 2 +- ...C_12mm (Apsc)__4k_16by9_3840x2160-23.98fps.json | 2 +- ..._16-35 f4 OSS__4k_16by9_3840x2160-25.00fps.json | 2 +- ...C_18a19563__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...C_19f7ecbf__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...-40 @ 20mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...C_20-70 G_70MM_4k_16by9_3840x2160-25.00fps.json | 2 +- ...C_20-70G@70MM__4k_16by9_3840x2160-29.97fps.json | 2 +- ..._a7C_20b5c305__4k_16by9_3840x2160-23.98fps.json | 2 +- ..._a7C_20d9ac3d__4k_16by9_3840x2160-25.00fps.json | 2 +- ...7252_25 50M_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...m 1.8_50fps_1080p_16by9_1920x1080-59.94fps.json | 2 +- ..._a7C_21a16994__4k_16by9_3840x2160-25.00fps.json | 2 +- ...ony_a7C_24 fe__4k_16by9_3840x2160-25.00fps.json | 2 +- ...a7C_24-105.24__4k_16by9_3840x2160-29.97fps.json | 2 +- ...080p_16by9_1920x1080-50.00fps - DragonChen.json | 2 +- ...-240 f3.5-6.3__4k_16by9_3840x2160-23.98fps.json | 2 +- ...C_24-240_60_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...4 G PZ a 16-35_4k_16by9_3840x2160-25.00fps.json | 2 +- ...C_24f78111__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...mmF2.8 Di III__4k_16by9_3840x2160-29.97fps.json | 2 +- ...Sony_a7C_24mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ..._a7C_27c49f08__4k_16by9_3840x2160-25.00fps.json | 2 +- ...m@60mm_100Mbps_4k_16by9_3840x2160-29.97fps.json | 2 +- ...c522b64f_25 60_4k_16by9_3840x2160-25.00fps.json | 2 +- ...8-75_50_1080p_16by9_1920x1080-50.00fps - 3.json | 2 +- ...7C_28-75_50_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...a7C_28-75__4k_16by9_3840x2160-25.00fps - 3.json | 2 +- ...ony_a7C_28-75__4k_16by9_3840x2160-25.00fps.json | 2 +- ..._2875G2_A7C_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...ny_a7C_2875_25_4k_16by9_3840x2160-25.00fps.json | 2 +- ...ony_a7C_351.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...d_24mm FE2.8 G_4k_16by9_3840x2160-25.00fps.json | 2 +- ..._a7C_50mm 1.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...mm f1,7 meike__4k_16by9_3840x2160-25.00fps.json | 2 +- ..._4k_16by9_3840x2160-25.00fps - U0 A533 - 2.json | 2 +- ...a7C_50mm f2.5__4k_16by9_3840x2160-25.00fps.json | 2 +- Sony/Sony_a7C_55__4k_16by9_3840x2160-25.00fps.json | 2 +- ...mm f1.8 zeiss__4k_16by9_3840x2160-25.00fps.json | 2 +- ...1.8__4k_16by9_3840x2160-25.00fps - ori - 2.json | 2 +- ...1.8__4k_16by9_3840x2160-25.00fps - ori - 3.json | 2 +- ...a7C_55mm f1.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...nt (APSC)_,_1080p_16by9_1920x1080-50.00fps.json | 2 +- ... Fisheye APSC__4k_16by9_3840x2160-23.98fps.json | 2 +- ...ny_a7C_70-180__4k_16by9_3840x2160-25.00fps.json | 2 +- ...ny_a7C_70-300__4k_16by9_3840x2160-25.00fps.json | 2 +- ....8 Fisheye ED__4k_16by9_3840x2160-25.00fps.json | 2 +- ...C_7abb6735__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...fisheye_no oss_4k_16by9_3840x2160-23.98fps.json | 2 +- ...s with mist nd_4k_16by9_3840x2160-23.98fps.json | 2 +- ...ny 14mm 1.8 GM_4k_16by9_3840x2160-23.98fps.json | 2 +- ....6 28-60 28mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...mm F1.4 FE__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...7C_AF851.8 II__4k_16by9_3840x2160-29.97fps.json | 2 +- ...Y-E Adapter_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...h CY-E Adapter_4k_16by9_3840x2160-25.00fps.json | 2 +- ... F2.8 GM_30 fps_4k_16by9_3840x2160-0.00fps.json | 2 +- ...-5.6_Lens 28mm_4k_16by9_3840x2160-23.98fps.json | 2 +- ...F4-5.6_Lens 35_4k_16by9_3840x2160-23.98fps.json | 2 +- ..._EF 35mm F1.8__4k_16by9_3840x2160-23.98fps.json | 2 +- ... 1.250 GM__1080p_16by9_1920x1080-100.00fps.json | 2 +- ...4k_16by9_3840x2160-25.00fps - xuyiyang - 2.json | 2 +- ...C_FE 1.850_XYY_4k_16by9_3840x2160-25.00fps.json | 2 +- ...F4 ZA OSS_P_1080p_16by9_1920x1080-50.00fps.json | 2 +- ... 28-60 @28__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...-5.628-60_28mm_4k_16by9_3840x2160-23.98fps.json | 2 +- ...FE 4-5.628-60__4k_16by9_3840x2160-25.00fps.json | 2 +- ...C_FE 420-70 G__4k_16by9_3840x2160-23.98fps.json | 2 +- ...424-105 G OSS__4k_16by9_3840x2160-29.97fps.json | 2 +- ..._a7C_FE1.820G__4k_16by9_3840x2160-29.97fps.json | 2 +- ...16-35F4za_16mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...24-70F4za_24mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...7C_FE2470F4za__4k_16by9_3840x2160-25.00fps.json | 2 +- ...y_a7C_FE551.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...lios 44-2_58mm_4k_16by9_3840x2160-23.98fps.json | 2 +- ...it 28-70mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...mm F.4 MACRO_-_4k_16by9_3840x2160-25.00fps.json | 2 +- ... f4 MAcro_HLG3_4k_16by9_3840x2160-25.00fps.json | 2 +- ...mm f5.6 FF RL__4k_16by9_3840x2160-25.00fps.json | 2 +- ...INolta55mm__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...kor 28mm f2.5__4k_16by9_3840x2160-25.00fps.json | 2 +- ..._Nisi 15mm f4__4k_16by9_3840x2160-25.00fps.json | 2 +- ...ame 30 No-IBIS_4k_16by9_3840x2160-29.97fps.json | 2 +- ... 60 No-IBIS_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...ame 30 No-IBIS_4k_16by9_3840x2160-29.97fps.json | 2 +- ...C_SEL1018_10mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ...1224GM_No IBIS_4k_16by9_3840x2160-29.97fps.json | 2 +- ...SEL2070G_@20MM_4k_16by9_3840x2160-29.97fps.json | 2 +- ...SEL2070G_@24MM_4k_16by9_3840x2160-29.97fps.json | 2 +- ...C_SEL2070G_@24_4k_16by9_3840x2160-29.97fps.json | 2 +- ...SEL2070G_@70MM_4k_16by9_3840x2160-29.97fps.json | 2 +- ...SEL20F18G__4k_16by9_3840x2160-29.97fps - 2.json | 2 +- ...EL24105G@24mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ..._SEL24105G__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...2_f2.8 24mm_1080p_16by9_1920x1080-59.94fps.json | 2 +- ..._a7C_SEL28F20__4k_16by9_3840x2160-25.00fps.json | 2 +- ...25G_11000 f2.5_4k_16by9_3840x2160-29.97fps.json | 2 +- ... DN _ Art__4k_16by9_3840x2160-29.97fps - 2.json | 2 +- ...8 dgdn_100mbps_4k_16by9_3840x2160-23.98fps.json | 2 +- ...gic 25mm f1.4__4k_16by9_3840x2160-23.98fps.json | 2 +- ...0-70 F4G 20mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ....0 CS E_XAVC-S_4k_16by9_3840x2160-25.00fps.json | 2 +- ..._16by9_3840x2160-29.97fps - moeforever - 2.json | 2 +- ...yang 18 2.8_30_4k_16by9_3840x2160-29.97fps.json | 2 +- ...ng 24 mm f1.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...myang 24-70mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...yang 24mm 2.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...ang 35mm f1.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...ang 50mm f1.2__4k_16by9_3840x2160-25.00fps.json | 2 +- ...50mm f1.4_1200_4k_16by9_3840x2160-23.98fps.json | 2 +- ...ang 75mm f1.8__4k_16by9_3840x2160-23.98fps.json | 2 +- ... 85mm f1.4 v1__4k_16by9_3840x2160-25.00fps.json | 2 +- ... 35mm F3.8 FE__4k_16by9_3840x2160-23.98fps.json | 2 +- ...y9_3840x2160-25.00fps - Rio A7C Yogyakarta.json | 2 +- ...18mm 2.8_400ss_4k_16by9_3840x2160-25.00fps.json | 2 +- ...g FE 35 2.8_30_4k_16by9_3840x2160-29.97fps.json | 2 +- ...y9_3840x2160-25.00fps - Rio A7C Yogyakarta.json | 2 +- ...35MM 1.8_400ss_4k_16by9_3840x2160-25.00fps.json | 2 +- ...DG DN_@16mm_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...8 DG DN_@20_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...DG DN_@20mm_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...DG DN_@24mm_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...DG DN_@28mm_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...igma 20 F2_160_4k_16by9_3840x2160-23.98fps.json | 2 +- ... mm 1.4_50M_1080p_16by9_1920x1080-23.98fps.json | 2 +- ...gma 24-70_24mm_4k_16by9_3840x2160-23.98fps.json | 2 +- ...8 DG DN _ Art__4k_16by9_3840x2160-29.97fps.json | 2 +- ...DN Art_24-70mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...Sigma 24-70mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...2.8 DG DN_35mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...2.8 DG DN_50mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...2.8 DG DN_70mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...-70 f2.8_Slog2_4k_16by9_3840x2160-23.98fps.json | 2 +- ...ma 28-70mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...C_Sigma 35 F2__4k_16by9_3840x2160-23.98fps.json | 2 +- ...16by9_3840x2160-25.00fps - Tim Ladewig - 2.json | 2 +- ...Sigma 35mm f2__4k_16by9_3840x2160-25.00fps.json | 2 +- ...2 DG DN 20_HLG_4k_16by9_3840x2160-23.98fps.json | 2 +- ...80p_16by9_1920x1080-50.00fps - Wiwid Aolia.json | 2 +- ...470_2022.09.27_4k_16by9_3840x2160-29.97fps.json | 2 +- ...-702.8__4k_16by9_3840x2160-23.98fps - Eric.json | 2 +- ...7C_Sigma28-70__4k_16by9_3840x2160-25.00fps.json | 2 +- ...mm_F2_DGDN_30p_4k_16by9_3840x2160-25.00fps.json | 2 +- ...33__4k_16by9_3840x2160-25.00fps - Leos - 2.json | 2 +- ...50mmF1.8 1.33__4k_16by9_3840x2160-25.00fps.json | 2 +- ...ter Speed 1100_4k_16by9_3840x2160-23.98fps.json | 2 +- ...mm 1.4 GM_100M_4k_16by9_3840x2160-25.00fps.json | 2 +- ...y 24mm F2.8 G__4k_16by9_3840x2160-25.00fps.json | 2 +- ...)_@28mm_4k_16by9_3840x2160-23.98fps - Eric.json | 2 +- ... 35mm F1.4 GM__4k_16by9_3840x2160-25.00fps.json | 2 +- ...y 50mm F2.5 G__4k_16by9_3840x2160-25.00fps.json | 2 +- ... 85mm F1.4 GM__4k_16by9_3840x2160-25.00fps.json | 2 +- ....6 28-60_28mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...8-60_50Mbit_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...85mm 1.8_400ss_4k_16by9_3840x2160-25.00fps.json | 2 +- ...EL11F18_XAVC-S_4k_16by9_3840x2160-25.00fps.json | 2 +- ...L20F18G_XAVC-S_4k_16by9_3840x2160-25.00fps.json | 2 +- ...SEL28F2_XAVC-S_4k_16by9_3840x2160-25.00fps.json | 2 +- ...E20_HD60fps_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...L35F18F_XAVC-S_4k_16by9_3840x2160-25.00fps.json | 2 +- ...m(APSC)_4k_16by9_3840x2160-23.98fps - Eric.json | 2 +- ...40x2140_30fps__4k_16by9_3840x2160-29.97fps.json | 2 +- ...ON 17-28@17MM__4k_16by9_3840x2160-25.00fps.json | 2 +- ...0-180 F2.8__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...ans 11mm f2.8__4k_16by9_3840x2160-23.98fps.json | 2 +- ...7-28 A046_17mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ...7-28 A046_IBIS_4k_16by9_3840x2160-29.97fps.json | 2 +- ....8 Di III RXD__4k_16by9_3840x2160-25.00fps.json | 2 +- ... III VXD 17mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ... III VXD 20mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ... III VXD 24mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ... III VXD 28mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...F4 Di III VXD__4k_16by9_3840x2160-29.97fps.json | 2 +- ...mron 1728_17mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ...-40 f2.8_20 mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...-40 f2.8_40 mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...on 20-40_20 mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...Tamron 20F2.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...0mm 2.8_23.976_4k_16by9_3840x2160-23.98fps.json | 2 +- ...28 Di III OSD__4k_16by9_3840x2160-25.00fps.json | 2 +- ... 28-200 @ 100__4k_16by9_3840x2160-25.00fps.json | 2 +- ... 28-200 @ 135__4k_16by9_3840x2160-25.00fps.json | 2 +- ... 28-200 @ 200__4k_16by9_3840x2160-25.00fps.json | 2 +- ...n 28-200 @ 28__4k_16by9_3840x2160-25.00fps.json | 2 +- ...n 28-200 @ 35__4k_16by9_3840x2160-25.00fps.json | 2 +- ...n 28-200 @ 50__4k_16by9_3840x2160-25.00fps.json | 2 +- ...n 28-200 @ 70__4k_16by9_3840x2160-25.00fps.json | 2 +- ...00mm f2.8-5.6__4k_16by9_3840x2160-29.97fps.json | 2 +- ...Di VXD G2_28mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...28-75 F2.8 G2__4k_16by9_3840x2160-29.97fps.json | 2 +- ...mron 28-75__1080p_16by9_1920x1080-25.00fps.json | 2 +- ....8 Di III OSD__4k_16by9_3840x2160-25.00fps.json | 2 +- ...2x 30fps_11000_4k_16by9_3840x2160-29.97fps.json | 2 +- ...40 @20mm_11000_4k_16by9_3840x2160-23.98fps.json | 2 +- ...-40 @20mm_1250_4k_16by9_3840x2160-23.98fps.json | 2 +- ...fps 1.2x_11000_4k_16by9_3840x2160-29.97fps.json | 2 +- ...28mm_1.2x Crop_4k_16by9_3840x2160-29.97fps.json | 2 +- ...40 @28mm_11000_4k_16by9_3840x2160-23.98fps.json | 2 +- ...-40 @28mm_1250_4k_16by9_3840x2160-23.98fps.json | 2 +- ...oom 1.5x_11000_4k_16by9_3840x2160-29.97fps.json | 2 +- ...oom 1.5x_11000_4k_16by9_3840x2160-23.98fps.json | 2 +- ...Zoom 1.5x_1250_4k_16by9_3840x2160-23.98fps.json | 2 +- ....5x Zoom_11000_4k_16by9_3840x2160-29.97fps.json | 2 +- ...fps 1.2x_11000_4k_16by9_3840x2160-29.97fps.json | 2 +- ... Zoom 1.5_1250_4k_16by9_3840x2160-23.98fps.json | 2 +- ...40mm_1.2x Crop_4k_16by9_3840x2160-29.97fps.json | 2 +- ...40 @40mm_11000_4k_16by9_3840x2160-23.98fps.json | 2 +- ...-40 @40mm_1250_4k_16by9_3840x2160-23.98fps.json | 2 +- ...840x2160-25.00fps - Rio A7C Yogyakarta - 2.json | 2 +- ...0 @100mm_400ss_4k_16by9_3840x2160-25.00fps.json | 2 +- ...00 @40mm_400ss_4k_16by9_3840x2160-25.00fps.json | 2 +- ...00mm 2.8_400ss_4k_16by9_3840x2160-25.00fps.json | 2 +- ...mron-28-75-2g__4k_16by9_3840x2160-29.97fps.json | 2 +- ...00_70mm_4k_16by9_3840x2160-23.98fps - Eric.json | 2 +- ...pcor 57mm_f2.8_4k_16by9_3840x2160-29.97fps.json | 2 +- ...ROX 16mm 1.8f__4k_16by9_3840x2160-29.97fps.json | 2 +- ...ox 20mm2.8 FE__4k_16by9_3840x2160-25.00fps.json | 2 +- ...trox 40mm f.5__4k_16by9_3840x2160-25.00fps.json | 2 +- ...M F1.8_85MM_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...iss Batis 225__4k_16by9_3840x2160-25.00fps.json | 2 +- ...m f2.8_IBIS on_4k_16by9_3840x2160-25.00fps.json | 2 +- ...35mm F1.8 lens_4k_16by9_3840x2160-25.00fps.json | 2 +- ...s-c 18mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...ps-c 35mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...etis 18mm 2.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...a7C_betis18mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...3f4a_SEL24F28G_4k_16by9_3840x2160-29.97fps.json | 2 +- ...x 85mm f1.8 II_4k_16by9_3840x2160-25.00fps.json | 2 +- ...0-70f4_20mm_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...eike 35mm 1.7__4k_16by9_3840x2160-25.00fps.json | 2 +- ...ang 18mm f2.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...amyang 24__1080p_16by9_1920x1080-100.00fps.json | 2 +- ...ng14mmt3.1__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...a7C_sel20f18g__4k_16by9_3840x2160-29.97fps.json | 2 +- ...m_3940x 23.976_4k_16by9_3840x2160-23.98fps.json | 2 +- ...0 @240mm_29.97_4k_16by9_3840x2160-29.97fps.json | 2 +- ...C_sel2860_28mm_4k_16by9_3840x2160-23.98fps.json | 2 +- ...24-70 24mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...-70 DG DN_28mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ..._30mm 1.4 dcdn_4k_16by9_3840x2160-29.97fps.json | 2 +- ...ony fe2870__1080p_16by9_1920x1080-29.97fps.json | 2 +- ...7C_sony20F1.8__4k_16by9_3840x2160-29.97fps.json | 2 +- ...di 3 f2.8_28mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ... 20.00mm f2.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ... 20.00mm f2.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ..._yongnuo50__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...s Batis 18__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...s Batis 40__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...s Batis 85__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...eiss batis 85__4k_16by9_3840x2160-25.00fps.json | 2 +- ...0-70mm f4_20mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...7III_16-35 f4__4k_16by9_3840x2160-29.97fps.json | 2 +- ...7III_16-35__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...35mm f2.8__1080p_16by9_1920x1080-100.00fps.json | 2 +- ...ony_a7III_16c__4k_16by9_3840x2160-25.00fps.json | 2 +- ..._1.4 DC DN__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...Sony_a7III_17__4k_16by9_3840x2160-25.00fps.json | 2 +- ...III_20 2.8__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...5 gss stds__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...III_24-105__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...5__4k_16by9_3840x2160-29.97fps - YU GU - 2.json | 2 +- ..._a7III_24-105__4k_16by9_3840x2160-29.97fps.json | 2 +- ... F2.8_60kps_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...a7III_24-70_25_4k_16by9_3840x2160-25.00fps.json | 2 +- ...7III_24-70__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...4-70mm F2.8_f8_4k_16by9_3840x2160-25.00fps.json | 2 +- ...III_2470F4__1080p_16by9_1920x1080-30.00fps.json | 2 +- ...a7III_24mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...F3.5-5.6_@_1080p_16by9_1920x1080-100.00fps.json | 2 +- ...3.5-5.6_P@_1080p_16by9_1920x1080-100.00fps.json | 2 +- ....5-5.6_iso 100_4k_16by9_3840x2160-25.00fps.json | 2 +- ...III_28-70_28mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...II_28-70_30fos_4k_16by9_3840x2160-29.97fps.json | 2 +- ...III_28-70__1080p_16by9_1920x1080-119.88fps.json | 2 +- ...4k_16by9_3840x2160-29.97fps - Rayen Bedoui.json | 2 +- ...y_a7III_28-70__4k_16by9_3840x2160-29.97fps.json | 2 +- ...I_28-75@28__1080p_16by9_1920x1080-50.00fps.json | 2 +- ..._4k_16by9_3840x2160-25.00fps - RCK-018 - 2.json | 2 +- ...a7III_28-75_28_4k_16by9_3840x2160-25.00fps.json | 2 +- ...7III_28-75__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...0_f3.5 28mm_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...ony_a7III_35c__4k_16by9_3840x2160-25.00fps.json | 2 +- ... OSD M 1_2__1080p_16by9_1920x1080-29.97fps.json | 2 +- ...II_35mm sigma__4k_16by9_3840x2160-29.97fps.json | 2 +- ...7III_35mmF1.4__4k_16by9_3840x2160-25.00fps.json | 2 +- ...418-105 stock__4k_16by9_3840x2160-29.97fps.json | 2 +- ...0MM 1.8_FHD_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...7III_50MM 1.8__4k_16by9_3840x2160-29.97fps.json | 2 +- ..._a7III_50__1080p_16by9_1920x1080-119.88fps.json | 2 +- ...Sony_a7III_50__4k_16by9_3840x2160-25.00fps.json | 2 +- ...I_50mm 1.8 FE__4k_16by9_3840x2160-25.00fps.json | 2 +- ...ny_a7III_50mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...50mm_c1920-_1080p_16by9_1920x1080-50.00fps.json | 2 +- ..._55 1.8 ZA__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...by9_3840x2160-25.00fps - Administrator - 2.json | 2 +- ..._a7III_55 1.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ..._a7III_55f1.8__4k_16by9_3840x2160-29.97fps.json | 2 +- ...F1.8 ZA_P@_1080p_16by9_1920x1080-100.00fps.json | 2 +- ...55mm f1.8_M4k_720p_16by9_1280x720-29.97fps.json | 2 +- ...a7III_70mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...a7III_85mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...ny_a7III_A047__4k_16by9_3840x2160-25.00fps.json | 2 +- ...strHori 50 F2__4k_16by9_3840x2160-29.97fps.json | 2 +- ..._Astrhori50f2__4k_16by9_3840x2160-29.97fps.json | 2 +- ...35mm f4 L_16mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ... FD 28mm_XAVCS_4k_16by9_3840x2160-25.00fps.json | 2 +- ...35mm f.4_@16mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ... 21mm IRIX_HLG_4k_16by9_3840x2160-25.00fps.json | 2 +- ...5 GM_SLog-3_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...I_FE 1.835__1080p_16by9_1920x1080-50.00fps.json | 2 +- ... G OSS_FE P_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...105 G OSS_35mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ...05 G OOS_11000_4k_16by9_3840x2160-25.00fps.json | 2 +- ...O XAVC S HD_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...-105 G OSS__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...I_FE 50mm 1.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...-105 G OSS__1080p_16by9_1920x1080-59.94fps.json | 2 +- ..._GM 16-35_35mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ...M 16-35mm 2.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ... 2.824-70_100M_4k_16by9_3840x2160-25.00fps.json | 2 +- ...6__4k_16by9_3840x2160-25.00fps - Berno - 2.json | 2 +- ...II_Laowa 15mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...III_Laowa_12mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...r FF, not APSC_4k_16by9_3840x2160-23.98fps.json | 2 +- ...ROKINON 14 MM__4k_16by9_3840x2160-23.98fps.json | 2 +- ...ion-12mm-APSC__4k_16by9_3840x2160-25.00fps.json | 2 +- ... 12mm_P100_1080p_16by9_1920x1080-100.00fps.json | 2 +- ..._Rokinon 12mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...T3.1_3840x2160_4k_16by9_3840x2160-25.00fps.json | 2 +- ... 14MM F2.8__1080p_16by9_1920x1080-59.94fps.json | 2 +- ... AF - SONY FE__4k_16by9_3840x2160-23.98fps.json | 2 +- ... AF - SONY FE__4k_16by9_3840x2160-29.97fps.json | 2 +- ...00f4.0 @200mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...EL2470Z_FHD_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...I_SEL2470Z__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...7III_SEL2470Z__4k_16by9_3840x2160-25.00fps.json | 2 +- ...P18105G_SHD_1080p_16by9_1920x1080-29.97fps.json | 2 +- ...IMA 35mm F1.4__4k_16by9_3840x2160-25.00fps.json | 2 +- ...8_50 50mbps_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...S HD 50 FPS_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...SIGMA 14MM__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...24-70mm_SLOG-2_4k_16by9_3840x2160-23.98fps.json | 2 +- ..., Uncropped_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...ONY FE 416-35__4k_16by9_3840x2160-29.97fps.json | 2 +- ... 14 F2.8_25fps_4k_16by9_3840x2160-29.97fps.json | 2 +- ...AVC HD 50M_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...24-70_24mm_1080p_16by9_1920x1080-100.00fps.json | 2 +- ...I_Sigma 24-70__4k_16by9_3840x2160-29.97fps.json | 2 +- ...2.8 DG DN_50mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...70mm f2.8_24mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ... 24-70mm_Slog3_4k_16by9_3840x2160-29.97fps.json | 2 +- ...a 24-70mm__1080p_16by9_1920x1080-100.00fps.json | 2 +- ...igma 28-70 mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...1.4 ART DN__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...1.4 DG Art__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...35mm 1_1.4 DG__4k_16by9_3840x2160-23.98fps.json | 2 +- ..._XAVC S 100M_4k_16by9_3840x2160-25.00fps.json | 2 +- ...ma 40mm 1.4_30_4k_16by9_3840x2160-29.97fps.json | 2 +- ...t 24mm 1.4__1080p_16by9_1920x1080-25.00fps.json | 2 +- ..._Snoy 28mm F2__4k_16by9_3840x2160-29.97fps.json | 2 +- ... 55mm F1.8 ZA__4k_16by9_3840x2160-25.00fps.json | 2 +- ...105_S-log 3_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...ony 24-70_24mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ..._Sony 28mm F2__4k_16by9_3840x2160-29.97fps.json | 2 +- ...ony 35mm f1.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...0 mm 1.8_HD_1080p_16by9_1920x1080-29.97fps.json | 2 +- ...ony 50mm f1.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...y 85mm 1.8__1080p_16by9_1920x1080-25.00fps.json | 2 +- ....5, ISO2000_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...FE 2.824 G__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...ime 35mm f1.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...3 FE OSS_@24mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ... Sigma 18-105__4k_16by9_3840x2160-25.00fps.json | 2 +- ...zz 424-70_24mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ...F2.8_F2.8 1200_4k_16by9_3840x2160-25.00fps.json | 2 +- ...II VXD G2_3840_4k_16by9_3840x2160-29.97fps.json | 2 +- ...Di III VXD G2__4k_16by9_3840x2160-25.00fps.json | 2 +- ..._TAMRON 28-75__4k_16by9_3840x2160-25.00fps.json | 2 +- ...-28-75mm F2.8__4k_16by9_3840x2160-29.97fps.json | 2 +- ...RON28-75II__1080p_16by9_1920x1080-29.97fps.json | 2 +- ...Di III VXD G2__4k_16by9_3840x2160-29.97fps.json | 2 +- ... F2.8 -- 17mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ... 17-28mm f2.8__4k_16by9_3840x2160-29.97fps.json | 2 +- ....8 Di III RXD__4k_16by9_3840x2160-29.97fps.json | 2 +- ...Di III RDX__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...Di III RXD__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...ron 28-74_50mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...n 28-7528_100M_4k_16by9_3840x2160-29.97fps.json | 2 +- ...amron 28-7528__4k_16by9_3840x2160-25.00fps.json | 2 +- ... 28-7528mm__1080p_16by9_1920x1080-25.00fps.json | 2 +- ... 28-7575mm__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...on 28-75_28_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...amron 28-75_28_4k_16by9_3840x2160-29.97fps.json | 2 +- ...on 28-75_35_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...ron 28-75_35mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...on 28-75_50_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...on 28-75_75_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...8-75_Cinestyle_4k_16by9_3840x2160-29.97fps.json | 2 +- ...2.8[28mm]__1080p_16by9_1920x1080-100.00fps.json | 2 +- ...2.8[50mm]__1080p_16by9_1920x1080-100.00fps.json | 2 +- ...III RXD_XAVC S_4k_16by9_3840x2160-25.00fps.json | 2 +- ...Di III_28mm_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...ox 20mm 2,8_25_4k_16by9_3840x2160-25.00fps.json | 2 +- ...trox 20mmf2.8__4k_16by9_3840x2160-23.98fps.json | 2 +- ...m f2.8_No Ibis_4k_16by9_3840x2160-25.00fps.json | 2 +- ...shot in slog 2_4k_16by9_3840x2160-25.00fps.json | 2 +- ...m f2.8_No Ibis_4k_16by9_3840x2160-25.00fps.json | 2 +- ...FE 1.855mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...II_batis25__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...4-70@24mm_f2.8_4k_16by9_3840x2160-29.97fps.json | 2 +- ...on EF 50 F1.4__4k_16by9_3840x2160-29.97fps.json | 2 +- ...II_fe 1.820 G__4k_16by9_3840x2160-23.98fps.json | 2 +- ...M_28mm setting_4k_16by9_3840x2160-23.98fps.json | 2 +- ... g oss_24mm_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...I_g-master_HLG_4k_16by9_3840x2160-23.98fps.json | 2 +- ...III_kit 28-70__4k_16by9_3840x2160-23.98fps.json | 2 +- ...0 28mm_28mm_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...628-70_28mm_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...8-70mm_28mm_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...8-70mm_28mm_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...aowa 9mm f2.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...8FE_f5.0 iso50_4k_16by9_3840x2160-25.00fps.json | 2 +- ...8_XAVC S HD_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...g 35mm 1.4__1080p_16by9_1920x1080-50.00fps.json | 2 +- ..._samyang 45mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...I_samyang__1080p_16by9_1920x1080-119.88fps.json | 2 +- ...ma 14-24mm_3_2_4k_16by9_3840x2160-25.00fps.json | 2 +- ... 24 - 70 mm_24_4k_16by9_3840x2160-23.98fps.json | 2 +- ...a 28mm f28__1080p_16by9_1920x1080-50.00fps.json | 2 +- ... 35mm_auto_1080p_16by9_1920x1080-100.00fps.json | 2 +- ... 1.4 dg dn__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...ony 28-70mm_s4_4k_16by9_3840x2160-25.00fps.json | 2 +- ... 1.8_crop mode_4k_16by9_3840x2160-25.00fps.json | 2 +- ...20mm f1.8__1080p_16by9_1920x1080-119.88fps.json | 2 +- ..._sony20-70__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...75 mm f2.8__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...17-28_17mm_1080p_16by9_1920x1080-119.88fps.json | 2 +- ...ron 35 mm__1080p_16by9_1920x1080-119.88fps.json | 2 +- ...ltrox 20mm__1080p_16by9_1920x1080-23.98fps.json | 2 +- ..._a7II_50mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ... F1.8_AVCHD_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...I_Batis 85__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...28-70 OSS_P_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...mm F1.8_50M_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...entax 40mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...ony FE 1.850__720p_4by3_1440x1080-25.00fps.json | 2 +- ...8 STM ED IF_P_720p_4by3_1440x1080-25.00fps.json | 2 +- ...ca R 35 f2__1080p_16by9_1920x1080-50.00fps.json | 2 +- ..._sony 50mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...0mm 2.8 fe__1080p_16by9_1920x1080-23.98fps.json | 2 +- ... 24mm F2.8 GM__4k_16by9_3840x2160-25.00fps.json | 2 +- ...iLTRAX13mmf1.4_4k_16by9_3840x2160-50.00fps.json | 2 +- ...x 13MM F1.4_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...x 13MM F1.4_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...1.8 GM_Super35_4k_16by9_3840x2160-23.98fps.json | 2 +- ...4.00mm_1424_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...IV_16-35_16_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...i 16mm F1.2_1080p_16by9_1920x1080-23.98fps.json | 2 +- ...ma 16-28mm_4k_16by9_3840x2160-25.00fps (2).json | 2 +- ..._Sigma 16-28mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ... III RXD_Slog3_4k_16by9_3840x2160-50.00fps.json | 2 +- ... III RXD_Slog3_4k_16by9_3840x2160-50.00fps.json | 2 +- ... _ Art_24.00mm_4k_16by9_3840x2160-59.94fps.json | 2 +- ...325 shutter_1080p_16by9_1920x1080-50.00fps.json | 2 +- ... III RXD_Slog3_4k_16by9_3840x2160-50.00fps.json | 2 +- ...-75_XAVCS-I_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...a7IV_28-75__1080p_16by9_1920x1080-25.00fps.json | 2 +- ..._1080p_16by9_1920x1080-50.00fps - Jungle J.json | 2 +- ...IV_28-75mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...0-75.00mm__1080p_16by9_1920x1080-100.00fps.json | 2 +- ...00mm -75mm__1080p_16by9_1920x1080-23.98fps.json | 2 +- ... III RXD_Slog3_4k_16by9_3840x2160-50.00fps.json | 2 +- ...00mm-70mm_28mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ... 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json | 2 +- ... 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...gma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json | 2 +- ..._Sigma 28-70mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...RON 28-75mm G2_4k_16by9_3840x2160-23.98fps.json | 2 +- ...RON 28-75mm G2_4k_16by9_3840x2160-25.00fps.json | 2 +- ...28-75mm G2_4k_16by9_3840x2160-29.97fps (2).json | 2 +- ...RON 28-75mm G2_4k_16by9_3840x2160-50.00fps.json | 2 +- ...RON 28-75mm G2_4k_16by9_3840x2160-59.94fps.json | 2 +- ...RON_28-75mm_G2_4k_16by9_3840x2160-23.98fps.json | 2 +- ...RON_28-75mm_G2_4k_16by9_3840x2160-29.97fps.json | 2 +- ...RON_28-75mm_G2_4k_16by9_3840x2160-59.94fps.json | 2 +- ...mron 28-200_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...00mm_Tamron_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...ron 28-75mm g2_4k_16by9_3840x2160-29.97fps.json | 2 +- ...IV_28.90mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...with 28mm Lens_4k_16by9_3840x2160-59.94fps.json | 2 +- ... 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...gma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json | 2 +- ...I VXD G2_Slog3_4k_16by9_3840x2160-50.00fps.json | 2 +- ...V_35.00mm_1100_4k_16by9_3840x2160-25.00fps.json | 2 +- ...00mm_24 frames_4k_16by9_3840x2160-23.98fps.json | 2 +- ...ACT STAB ON_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...00mm_422_10bit_4k_16by9_3840x2160-59.94fps.json | 2 +- ... EF-SE Adapter_4k_16by9_3840x2160-29.97fps.json | 2 +- ..._Crop Frame_1080p_16by9_1920x1080-59.94fps.json | 2 +- ... 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...RON 28-75mm G2_4k_16by9_3840x2160-29.97fps.json | 2 +- ...gma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json | 2 +- ... 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json | 2 +- ... 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...7IV_44M-6_58mm_4k_16by9_3840x2160-23.98fps.json | 2 +- ...gma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json | 2 +- ...I VXD G2_Slog3_4k_16by9_3840x2160-50.00fps.json | 2 +- ... 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json | 2 +- ... 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json | 2 +- ... 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...gma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json | 2 +- ... 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...a7IV_70.00mm_0_4k_16by9_3840x2160-59.94fps.json | 2 +- ...0mm_70 no crop_4k_16by9_3840x2160-23.98fps.json | 2 +- ....00mm_IBIS OFF_4k_16by9_3840x2160-50.00fps.json | 2 +- ... 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json | 2 +- ... 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...gma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json | 2 +- ...V_70.00mm_crop_4k_16by9_3840x2160-59.94fps.json | 2 +- ...RON 28-75mm G2_4k_16by9_3840x2160-23.98fps.json | 2 +- ...RON 28-75mm G2_4k_16by9_3840x2160-29.97fps.json | 2 +- ..._4k_16by9_3840x2160-59.94fps - Jony_Xv - 2.json | 2 +- ...RON 28-75mm G2_4k_16by9_3840x2160-59.94fps.json | 2 +- ... 35MM F1.4 II__4k_16by9_3840x2160-23.98fps.json | 2 +- ...10mm fisheyes__4k_16by9_3840x2160-25.00fps.json | 2 +- ...ns 50mm F0.95__4k_16by9_3840x2160-29.97fps.json | 2 +- ...uper 35mm crop_4k_16by9_3840x2160-29.97fps.json | 2 +- ...mm f2.8 APS-C__4k_16by9_3840x2160-59.94fps.json | 2 +- ...ans 10mm f2.8__4k_16by9_3840x2160-29.97fps.json | 2 +- ...isans 10mm2.8__4k_16by9_3840x2160-50.00fps.json | 2 +- ...a 85MM F1.4_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...a 85MM F1.4_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...ri50mmF2.0__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...kor- PF 581.4__4k_16by9_3840x2160-25.00fps.json | 2 +- ... 2.5_24100S_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...INON 28mm_APSC_4k_16by9_3840x2160-59.94fps.json | 2 +- ...CHINON 28mm_FF_4k_16by9_3840x2160-23.98fps.json | 2 +- ...INON 35mm_APSC_4k_16by9_3840x2160-59.94fps.json | 2 +- ...CHINON 35mm_FF_4k_16by9_3840x2160-23.98fps.json | 2 +- ...INON 50mm_APSC_4k_16by9_3840x2160-59.94fps.json | 2 +- ...CHINON 50mm_FF_4k_16by9_3840x2160-23.98fps.json | 2 +- ...Canon 100mm_FF_4k_16by9_3840x2160-23.98fps.json | 2 +- ...anon 10mm_APSC_4k_16by9_3840x2160-23.98fps.json | 2 +- ...anon 50mm_APSC_4k_16by9_3840x2160-59.94fps.json | 2 +- ...EF to E Mk III_4k_16by9_3840x2160-29.97fps.json | 2 +- ...SELP1650_APS-C_4k_16by9_3840x2160-29.97fps.json | 2 +- ...35mm F4 G_16mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ... 24-105 G OSS__4k_16by9_3840x2160-25.00fps.json | 2 +- ...FE424-105MM__480p_9by16_1080x1920-30.00fps.json | 2 +- ...elios 44-3__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...-6_58mm_4k_16by9_3840x2160-23.98fps - Kaos.json | 2 +- ...ios 44M-6_58mm_4k_16by9_3840x2160-23.98fps.json | 2 +- ...44-2_SS Off_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...RIX Cine 30mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...7IV_Irix 45mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...rix cine 45mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...IV_Laowa 12mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...Laowa 15mm F4__4k_16by9_3840x2160-23.98fps.json | 2 +- ...wa 1mm_30FPV60_4k_16by9_3840x2160-29.97fps.json | 2 +- ....95_Full Frame_4k_16by9_3840x2160-29.97fps.json | 2 +- ...wa 35mm f0.95__4k_16by9_3840x2160-23.98fps.json | 2 +- ...aowa 9mm f5,6__4k_16by9_3840x2160-25.00fps.json | 2 +- ...aowa 9mm f5.6__4k_16by9_3840x2160-50.00fps.json | 2 +- ...owa 9mm_XAVC S_4k_16by9_3840x2160-23.98fps.json | 2 +- ..._4.5_100Frames_4k_16by9_3840x2160-50.00fps.json | 2 +- ...rop_Shutter400_4k_16by9_3840x2160-25.00fps.json | 2 +- ...50mm f2_23.976_4k_16by9_3840x2160-23.98fps.json | 2 +- ...a_35mm_XAVC HS_4k_16by9_3840x2160-50.00fps.json | 2 +- ...off - stab off_4k_16by9_3840x2160-25.00fps.json | 2 +- ...mm F2.8_XAVC S_4k_16by9_3840x2160-25.00fps.json | 2 +- ...tar 12mm F2.0__4k_16by9_3840x2160-23.98fps.json | 2 +- ...AF35 T1.9_35mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ...YANG 14mm_APSC_4k_16by9_3840x2160-59.94fps.json | 2 +- ...AMYANG 14mm_FF_4k_16by9_3840x2160-29.97fps.json | 2 +- ...ANG 24mm_APS-C_4k_16by9_3840x2160-59.94fps.json | 2 +- ...YANG 24mm_APSC_4k_16by9_3840x2160-59.94fps.json | 2 +- ...AMYANG 24mm_FF_4k_16by9_3840x2160-23.98fps.json | 2 +- ...mF2.8_P -30_1080p_16by9_1920x1080-29.97fps.json | 2 +- ...AMYANG 35mm_FF_4k_16by9_3840x2160-23.98fps.json | 2 +- ....00mm F1.8__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...AMYANG 85mm_FF_4k_16by9_3840x2160-23.98fps.json | 2 +- ...y9_3840x2160-23.98fps - WINMEDIACENTER - 2.json | 2 +- ...MYANG 8mm_APSC_4k_16by9_3840x2160-23.98fps.json | 2 +- ... FE fr Sony E__4k_16by9_3840x2160-29.97fps.json | 2 +- ...SteadyShot Std_4k_16by9_3840x2160-29.97fps.json | 2 +- ...SteadyShot Std_4k_16by9_3840x2160-59.94fps.json | 2 +- ... 16-28mm@42mm__4k_16by9_3840x2160-50.00fps.json | 2 +- ...A 2470mm f2.8__4k_16by9_3840x2160-29.97fps.json | 2 +- ...GMA16-28@24mm__4k_16by9_3840x2160-50.00fps.json | 2 +- ...A2470_24.00mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...0.00mmF1.4__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...LR Magic 35mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...cro Prime_30mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...mm T1.3_XAVC S_4k_16by9_3840x2160-29.97fps.json | 2 +- ...yang 12_Active_4k_16by9_3840x2160-50.00fps.json | 2 +- ...ang 12mm F2.0__4k_16by9_3840x2160-50.00fps.json | 2 +- ...F manual lens__4k_16by9_3840x2160-25.00fps.json | 2 +- ...ang 14mm_Crop,_4k_16by9_3840x2160-59.94fps.json | 2 +- ... mm f2.8_24 mm_4k_16by9_3840x2160-23.98fps.json | 2 +- ... f2.8_29,97fps_4k_16by9_3840x2160-29.97fps.json | 2 +- ...g 35-150_SLOG3_4k_16by9_3840x2160-23.98fps.json | 2 +- ... 35.00mm f1.4__4k_16by9_3840x2160-25.00fps.json | 2 +- ...ng 35mm 1.8 FE_4k_16by9_3840x2160-29.97fps.json | 2 +- ...1.8_APS-C Mode_4k_16by9_3840x2160-29.97fps.json | 2 +- ... 45.00mm F1.8__4k_16by9_3840x2160-29.97fps.json | 2 +- ...myang 45.00mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ... 75.00mm f1.8__4k_16by9_3840x2160-29.97fps.json | 2 +- ... 85mm T1.5__1080p_16by9_1920x1080-50.00fps.json | 2 +- ... AF 12mm F2.0__4k_16by9_3840x2160-50.00fps.json | 2 +- ...IV_Samyang_12__4k_16by9_3840x2160-50.00fps.json | 2 +- ...@ 14_29,96 FPS_4k_16by9_3840x2160-29.97fps.json | 2 +- ... @14_29,96 fps_4k_16by9_3840x2160-29.97fps.json | 2 +- ...4-24 @24_29,97_4k_16by9_3840x2160-29.97fps.json | 2 +- ...mm f2.8 @24mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...mm f2.8 @24mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...6-28 F2.8_16mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ...6-28 F2.8_18mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ...6-28 F2.8_20mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ...6-28 F2_8_22mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ...6-28 F2_8_24mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ...28mm f2.8_22mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...28mm f2.8_28mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ... 16.00mm_slog3_4k_16by9_3840x2160-23.98fps.json | 2 +- ...6_28 F2_8_28mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ...4_Super35 mode_4k_16by9_3840x2160-23.98fps.json | 2 +- ...DN at 24.00mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...y9_3840x2160-59.94fps - Fabio Scarparo - 2.json | 2 +- ...y9_3840x2160-59.94fps - Fabio Scarparo - 3.json | 2 +- ...y9_3840x2160-59.94fps - Fabio Scarparo - 4.json | 2 +- ...N Art_Vertical_4k_16by9_3840x2160-59.94fps.json | 2 +- ...2.8 DG DN ART__4k_16by9_3840x2160-25.00fps.json | 2 +- ...24-70mm DG DN__4k_16by9_3840x2160-25.00fps.json | 2 +- ...mm f2.8 DG DN__4k_16by9_3840x2160-23.98fps.json | 2 +- ...a 24-70mm_24mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...nly for 28mm)__4k_16by9_3840x2160-59.94fps.json | 2 +- ...ma 28-70mm_-25_4k_16by9_3840x2160-25.00fps.json | 2 +- ...8-70mm_28mm_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...ma 35.00mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...gma 35mm f1.4__4k_16by9_3840x2160-23.98fps.json | 2 +- ...Sigma 85.00mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...-35 (35.00mm)__4k_16by9_3840x2160-25.00fps.json | 2 +- ...1.8 (18.00mm)__4k_16by9_3840x2160-25.00fps.json | 2 +- ...mm__1080p_16by9_1920x1080-59.94fps - mulin.json | 2 +- ...a1424.00mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...24-70@35.00mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...rame_4k_16by9_3840x2160-23.98fps - cyf - 2.json | 2 +- ...m G_full-frame_4k_16by9_3840x2160-23.98fps.json | 2 +- ...3 35mm mode_1080p_16by9_1920x1080-29.97fps.json | 2 +- ...3.5-6.318-200__4k_16by9_3840x2160-50.00fps.json | 2 +- ...M_Super35 Mode_4k_16by9_3840x2160-59.94fps.json | 2 +- ...1.8 ISO800 160_4k_16by9_3840x2160-29.97fps.json | 2 +- ...35mm F2_XACV S_4k_16by9_3840x2160-25.00fps.json | 2 +- ....8 20.00mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ... F2.8 20.00mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...MRON 200.00mm__4k_16by9_3840x2160-50.00fps.json | 2 +- ...5.00mm_75mm_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...17-28 f2.8__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...150 f2-2.8__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...8-75mm_28mm_1080p_16by9_1920x1080-25.00fps.json | 2 +- ....8 40.00mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ... @ 51.00mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...-75A6350mm__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...-75A6375mm__1080p_16by9_1920x1080-25.00fps.json | 2 +- ....95_Full Frame_4k_16by9_3840x2160-25.00fps.json | 2 +- ...17.00mm_Active_4k_16by9_3840x2160-23.98fps.json | 2 +- ... 3 10bit 4_2_2_4k_16by9_3840x2160-29.97fps.json | 2 +- ..._2_2 10 bit_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...mron 17-28__1080p_16by9_1920x1080-59.94fps.json | 2 +- ... 17mm_Super 35_4k_16by9_3840x2160-59.94fps.json | 2 +- ...20-40mm @20mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...2.8_Full Frame_4k_16by9_3840x2160-25.00fps.json | 2 +- ... 20mm 2.8_20mm_4k_16by9_3840x2160-59.94fps.json | 2 +- ...on 28-200_28mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ... 28-200mm_28mm_4k_16by9_3840x2160-59.94fps.json | 2 +- ...28-75 50.00mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...@ 28.00mm_APSC_4k_16by9_3840x2160-23.98fps.json | 2 +- ...5 G2 @28.00mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...II RXD_75mm_1080p_16by9_1920x1080-50.00fps.json | 2 +- ... G2_28mm f4_1080p_16by9_1920x1080-50.00fps.json | 2 +- ... G2_35mm f4_1080p_16by9_1920x1080-50.00fps.json | 2 +- ... G2_50mm f4_1080p_16by9_1920x1080-50.00fps.json | 2 +- ... G2_75mm f4_1080p_16by9_1920x1080-50.00fps.json | 2 +- ... G2_@(28mm)_1080p_16by9_1920x1080-23.98fps.json | 2 +- ...2.8 ff28.00mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...8.00mm_A7M4_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...28-75_60fps_1080p_16by9_1920x1080-23.98fps.json | 2 +- ...V 1250 f7.1_4k_16by9_3840x2160-25.00fps.json | 2 +- ...F2.8 @28.00mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...ps 4.2.2 10bit_4k_16by9_3840x2160-23.98fps.json | 2 +- ...5mm F2.8_APS-C_4k_16by9_3840x2160-50.00fps.json | 2 +- ...6fps @28.00mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...mm G1 75.00mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...f2.8 @50.00mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...f2.8 @75.00mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...II VXD G2_28mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...28mm) SS On_1080p_16by9_1920x1080-23.98fps.json | 2 +- ...2.8 g2_28mm_1080p_16by9_1920x1080-23.98fps.json | 2 +- ...on 28.00mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...2-2.8 50mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ....8 85.00mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...ron 35-150__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...mm_50p (APS-C)_4k_16by9_3840x2160-25.00fps.json | 2 +- ...7) 200mm_4k 60_4k_16by9_3840x2160-59.94fps.json | 2 +- ...7) 400.00mm_60_4k_16by9_3840x2160-59.94fps.json | 2 +- ... f4.5-6.3_50mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ... f4.5-6.3_50mm_4k_16by9_3840x2160-50.00fps.json | 2 +- ...0-300 (300mm)__4k_16by9_3840x2160-23.98fps.json | 2 +- ..._17-28mm_F2.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ... 10.00mm F2.8__4k_16by9_3840x2160-23.98fps.json | 2 +- ...__4k_16by9_3840x2160-59.94fps - Sirron - 2.json | 2 +- ...laowa 10.00mm__4k_16by9_3840x2160-59.94fps.json | 2 +- ....00mm f2.8__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...vitar 28mm f2__4k_16by9_3840x2160-23.98fps.json | 2 +- ...er_10.00mm_30p_4k_16by9_3840x2160-29.97fps.json | 2 +- ...1.8 @ 50.00mm__4k_16by9_3840x2160-50.00fps.json | 2 +- ...iss 24-70mm_4K_4k_16by9_3840x2160-23.98fps.json | 2 +- ...55.00mm_29.975_4k_16by9_3840x2160-29.97fps.json | 2 +- ... 55.00mm_30fps_4k_16by9_3840x2160-29.97fps.json | 2 +- ...1000 @ 3200iso_4k_16by9_3840x2160-25.00fps.json | 2 +- ...2.8_APS-C Mode_4k_16by9_3840x2160-29.97fps.json | 2 +- ...Batis 18.00mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...r 50mm_s log 2_4k_16by9_3840x2160-23.98fps.json | 2 +- ...rix 45mm cine__4k_16by9_3840x2160-23.98fps.json | 2 +- ... 12mm_1100s_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...f4-16.00mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...g35.00mmf2.8_-_4k_16by9_3840x2160-29.97fps.json | 2 +- ...-70 28.00mm_25_4k_16by9_3840x2160-25.00fps.json | 2 +- ...28-70 f2.8__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...iv saturn 35mm_4k_16by9_3840x2160-23.98fps.json | 2 +- ...amron 28-75mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...Sony_a7IV_vvd__4k_16by9_3840x2160-25.00fps.json | 2 +- ...ngnuo50.00mm_-_4k_16by9_3840x2160-29.97fps.json | 2 +- ...zeiss 16-35mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...III_-20mmT1.9__4k_16by9_3840x2160-29.97fps.json | 2 +- ...II_16-35 F2.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ..._16-35mm F2.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ..._20mm T1.9__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...RIII_28-200_30_4k_16by9_3840x2160-25.00fps.json | 2 +- ...a7RIII_28-200__4k_16by9_3840x2160-25.00fps.json | 2 +- ..._a7RIII_35150__4k_16by9_3840x2160-29.97fps.json | 2 +- ..._SONYA7RIII_1080p_16by9_1920x1080-23.98fps.json | 2 +- ...FE 24-70mm F4__4k_16by9_3840x2160-25.00fps.json | 2 +- ...424-105 G OSS__4k_16by9_3840x2160-23.98fps.json | 2 +- ...RIII_FE424-70__4k_16by9_3840x2160-25.00fps.json | 2 +- ..._SONYA7RIII_1080p_16by9_1920x1080-23.98fps.json | 2 +- ...6-85_manual_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...III_SEL3514GM__4k_16by9_3840x2160-23.98fps.json | 2 +- ...igma-247-__1080p_16by9_1920x1080-100.00fps.json | 2 +- ..._Sony 14mm__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...ron 17-28_100m_4k_16by9_3840x2160-29.97fps.json | 2 +- ...7RIII__FULL_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...a7RII_24-70_24_4k_16by9_3840x2160-25.00fps.json | 2 +- ...II_35-2.8_m_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...50F2_50M_720p_16by9_1280x720-100.00fps - 3.json | 2 +- ...7RII_50MMF1.8__4k_16by9_3840x2160-29.97fps.json | 2 +- ...I_50MMF2_50M_720p_16by9_1280x720-100.00fps.json | 2 +- ...RII_50MMF2__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...RII_50f2_50m_720p_16by9_1280x720-100.00fps.json | 2 +- ...IKE 85 1.8__1080p_16by9_1920x1080-50.00fps.json | 2 +- ... AF 35mm F2.8__4k_16by9_3840x2160-25.00fps.json | 2 +- ...r Sony E Lens__4k_16by9_3840x2160-23.98fps.json | 2 +- ...i III RXD_28mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...D Tamron _16 9_4k_16by9_3840x2160-25.00fps.json | 2 +- ...TIS 225_XAVC S_4k_16by9_3840x2160-29.97fps.json | 2 +- ...4_2_2, 200Mbit_4k_16by9_3840x2160-50.00fps.json | 2 +- ...GMA16.00mm_300_4k_16by9_3840x2160-50.00fps.json | 2 +- ... 50mm F1.4__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...4_2_2, 200Mbit_4k_16by9_3840x2160-50.00fps.json | 2 +- ...V_seagull50mm__4k_16by9_3840x2160-50.00fps.json | 2 +- ...ony_a7R_50_50_720p_4by3_1440x1080-25.00fps.json | 2 +- ...I_105.00mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...mm 68.00mm__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...elios 44-2__C4k_1.90by1_4096x2160-24.00fps.json | 2 +- ...mm f2.8 v2__C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...50mm f2 v2__C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...90mm f2 v2__C4k_1.90by1_4096x2160-25.00fps.json | 2 +- ...kor 55mm F2.8__4k_16by9_3840x2160-50.00fps.json | 2 +- ...kor 55mm F2.8__4k_16by9_3840x2160-50.00fps.json | 2 +- ...5xKonica57f1.4__5k_8by3_5760x2160-59.94fps.json | 2 +- ..._1100th XAVC S_4k_16by9_3840x2160-50.00fps.json | 2 +- ... 28 - 16.00mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...a 24-70mm_24mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...8 ZA_XAVC S @_4k_16by9_3840x2160-59.94fps.json | 2 +- ...2.8 G_slog3_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...1080p_16by9_1920x1080-59.94fps - Hello - 2.json | 2 +- ...2.8 G_slog3_1080p_16by9_1920x1080-59.94fps.json | 2 +- ....820G_slog3_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...f4 ZA OSS Lens_4k_16by9_3840x2160-59.94fps.json | 2 +- ..._TL35.00mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...ron 28-75 @28__4k_16by9_3840x2160-23.98fps.json | 2 +- ...rox 16mm f1.8_4k_16by9_3840x2160-59.94fps.json | 2 +- ...0mm G_slog3_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...FE 1.8_50mm_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...MM 2.8_IBIS_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...AVC 100Mb_1080p_16by9_1920x1080-119.88fps.json | 2 +- ...a7SII_Rokinon__4k_16by9_3840x2160-23.98fps.json | 2 +- ...35mm f1.8_25p_720p_4by3_1440x1080-25.00fps.json | 2 +- ...5.6 OSS_FHD_1080p_16by9_1920x1080-50.00fps.json | 2 +- ... mm_Full HD_1080p_16by9_1920x1080-50.00fps.json | 2 +- ..._liguan 50__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...a7_16mm+0.75__720p_4by3_1440x1080-25.00fps.json | 2 +- ..._a7_7Artians__720p_4by3_1440x1080-25.00fps.json | 2 +- ...N-AUTO f35__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...ELIOS 44-2__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...6by9_1920x1080-25.00fps - LOUIS SANNIE - 2.json | 2 +- ...50F18F_AUTO_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...MM F2.8 FE__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...2.8 FE 56A11__720p_4by3_1440x1080-29.97fps.json | 2 +- ...MM F1.8 FE__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...on 28-75mm__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...ntax 25mmF2.8__4k_16by9_3840x2160-29.97fps.json | 2 +- ...XAVC S 100M_4k_16by9_3840x2160-25.00fps.json | 2 +- ...24MM F1.8__1080p_16by9_1920x1080-50.00fps.json | 2 +- ..._28 tamron__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...00mm 28mm_400s_4k_16by9_3840x2160-29.97fps.json | 2 +- ...7rIII_50mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...II_90macro__1080p_16by9_1920x1080-29.97fps.json | 2 +- ...FE 28-70 F3.5__4k_16by9_3840x2160-29.97fps.json | 2 +- ..._FE 3.5 28-70__4k_16by9_3840x2160-29.97fps.json | 2 +- ...-105 G 0SS__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...2470GM_24mm_1080p_16by9_1920x1080-29.97fps.json | 2 +- ...rIII_Sigma__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...ony 24-240__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...y FE 1.435 GM__4k_16by9_3840x2160-23.98fps.json | 2 +- ...mm f2.8 GM__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...-35mm f2.8 GM__4k_16by9_3840x2160-25.00fps.json | 2 +- ...0mm 28mm_1200s_4k_16by9_3840x2160-29.97fps.json | 2 +- ..._Tamron 18300__4k_16by9_3840x2160-25.00fps.json | 2 +- ...ron 28-75_P_1080p_16by9_1920x1080-25.00fps.json | 2 +- ... 28-75mm 28mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...SS FE 2.8 35__4k_16by9_3840x2160-23.98fps.json | 2 +- ...III_sel50f18f__4k_16by9_3840x2160-25.00fps.json | 2 +- ...28-70 f2.8__1080p_16by9_1920x1080-29.97fps.json | 2 +- ...8-200 28mm_100_4k_16by9_3840x2160-29.97fps.json | 2 +- ...18_wanshaoziqu_4k_16by9_3840x2160-25.00fps.json | 2 +- ...7rII_28F2_P_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...5mm f2_apsc 25_4k_16by9_3840x2160-25.00fps.json | 2 +- ...a7rII_7.5mm_V1_4k_16by9_3840x2160-25.00fps.json | 2 +- ... 50mm f1.4__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...5MM F1.4_XAVCS_4k_16by9_3840x2160-25.00fps.json | 2 +- ...9mm f4.5_24 fps_4k_16by9_3840x2160-0.00fps.json | 2 +- ...0 f4_APSC 10MM_4k_16by9_3840x2160-25.00fps.json | 2 +- ...f2.8_cine t3.1_4k_16by9_3840x2160-25.00fps.json | 2 +- ...Sigma 24-70mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...-70mm_x1920_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...Sony 24-240mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ... 7.5mm F2_full_4k_16by9_3840x2160-25.00fps.json | 2 +- ... 7.5mm F2_s35_4k_16by9_3840x2160-25.00fps.json | 2 +- ..._a7rII__12.5MM_4k_16by9_3840x2160-25.00fps.json | 2 +- ...rII__APSC 20MM_4k_16by9_3840x2160-25.00fps.json | 2 +- ...8-200 f3.5__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...f2.8 35mm_m_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...yongnou 35 f2__4k_16by9_3840x2160-29.97fps.json | 2 +- ... batis_25mm_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...ny_a7rIV_20mm__4k_16by9_3840x2160-29.97fps.json | 2 +- ...rIV_24-105__1080p_16by9_1920x1080-50.00fps.json | 2 +- ..._a7rIV_24-105__4k_16by9_3840x2160-25.00fps.json | 2 +- ....824-7 GM__1080p_16by9_1920x1080-100.00fps.json | 2 +- ...824-70 GM__1080p_16by9_1920x1080-100.00fps.json | 2 +- ...FE4_12_24G__1080p_16by9_1920x1080-29.97fps.json | 2 +- ...rIV_SEL35F18F__4k_16by9_3840x2160-29.97fps.json | 2 +- ...20mm 1_1.4 DG__4k_16by9_3840x2160-25.00fps.json | 2 +- ...m1_1.4 DG__1080p_16by9_1920x1080-100.00fps.json | 2 +- ...0 F4 G_super35_4k_16by9_3840x2160-29.97fps.json | 2 +- ...ony 85F14GM_30_4k_16by9_3840x2160-29.97fps.json | 2 +- ...ns 7.5mm f2.8__4k_16by9_3840x2160-59.94fps.json | 2 +- ... APS-C SS Off_4k_16by9_3840x2160-23.98fps.json | 2 +- ... APS-C SS Off_4k_16by9_3840x2160-23.98fps.json | 2 +- ... APS-C SS Off_4k_16by9_3840x2160-23.98fps.json | 2 +- ... APS-C SS Off_4k_16by9_3840x2160-23.98fps.json | 2 +- ...anomorph_APS-C_4k_16by9_3840x2160-23.98fps.json | 2 +- ...Nanomorph_APS-C_5k_8by3_5760x2160-23.98fps.json | 2 +- ...ary @28mm_28mm_6k_16by9_7680x4320-23.98fps.json | 2 +- ...ary @35mm_35mm_6k_16by9_7680x4320-23.98fps.json | 2 +- ...ary @70mm_70mm_6k_16by9_7680x4320-23.98fps.json | 2 +- ...a 16-28_ 29.97_4k_16by9_3840x2160-29.97fps.json | 2 +- ...1.4_Full Frame_4k_16by9_3840x2160-25.00fps.json | 2 +- ...ablization off_4k_16by9_3840x2160-59.94fps.json | 2 +- ... 1424, 24mm_60_4k_16by9_3840x2160-59.94fps.json | 2 +- ...gma 1424_8k 24_6k_16by9_7680x4320-23.98fps.json | 2 +- ... f2,8@20.00mm__4k_16by9_3840x2160-50.00fps.json | 2 +- ...on 35-150 4K60_4k_16by9_3840x2160-59.94fps.json | 2 +- ...-150mm_60@35MM_4k_16by9_3840x2160-59.94fps.json | 2 +- ....00mm_60@150MM_4k_16by9_3840x2160-59.94fps.json | 2 +- ...5mm f1.4_HD_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...uo on Sony FF__4k_16by9_3840x2160-59.94fps.json | 2 +- ... with 10% crop_4k_16by9_3840x2160-23.98fps.json | 2 +- ...mm_tamron 17-2_4k_16by9_3840x2160-59.94fps.json | 2 +- ...gma 19mm on FF_4k_16by9_3840x2160-23.98fps.json | 2 +- ...mF2.4 24mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ... Art 24-70 2.8_4k_16by9_3840x2160-23.98fps.json | 2 +- ...m_tamron 17-28_4k_16by9_3840x2160-59.94fps.json | 2 +- ...mm_tamron27-75_4k_16by9_3840x2160-59.94fps.json | 2 +- ...mm_tamron28-75_4k_16by9_3840x2160-59.94fps.json | 2 +- ..._tenglong28-75_4k_16by9_3840x2160-50.00fps.json | 2 +- ...a Art 35mmf1.4_4k_16by9_3840x2160-29.97fps.json | 2 +- ...amron 35-150mm_4k_16by9_3840x2160-29.97fps.json | 2 +- ...5.00mm_samyang_4k_16by9_3840x2160-59.94fps.json | 2 +- ...mm T2.0_23.98p_4k_16by9_3840x2160-59.94fps.json | 2 +- ...m F2.8 Macro G_4k_16by9_3840x2160-29.97fps.json | 2 +- ...GENIEUX 28__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...THENA 25 T1.9__4k_16by9_3840x2160-50.00fps.json | 2 +- ..._Angenieux 28__4k_16by9_3840x2160-50.00fps.json | 2 +- ...sIII_CP3 25mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...m__4k_16by9_3840x2160-23.98fps - student17.json | 2 +- ...16mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json | 2 +- ...20mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json | 2 +- ...24mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json | 2 +- ...28mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json | 2 +- ...35mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json | 2 +- ...@24m_Slog3cine_4k_16by9_3840x2160-23.98fps.json | 2 +- ...@28m_Slog3cine_4k_16by9_3840x2160-23.98fps.json | 2 +- ...@35m_Slog3cine_4k_16by9_3840x2160-23.98fps.json | 2 +- ...0mm 1.4 S.S.C__4k_16by9_3840x2160-50.00fps.json | 2 +- ... HS 10bit 420_4k_16by9_3840x2160-23.98fps.json | 2 +- ... HS 10bit 420_4k_16by9_3840x2160-23.98fps.json | 2 +- ... HS 10bit 420_4k_16by9_3840x2160-23.98fps.json | 2 +- ... HS 10bit 420_4k_16by9_3840x2160-23.98fps.json | 2 +- ... HS 10bit 420_4k_16by9_3840x2160-23.98fps.json | 2 +- ...no lens comp)_C4k_16by9_4264x2408-59.94fps.json | 2 +- ...35mm x1.8_1100_4k_16by9_3840x2160-50.00fps.json | 2 +- ...5mm 1.8x_1100s_4k_16by9_3840x2160-50.00fps.json | 2 +- ...Joy 85mm 1.8x__4k_16by9_3840x2160-25.00fps.json | 2 +- ...s 44m_XAVC S-I_4k_16by9_3840x2160-25.00fps.json | 2 +- ... SUMMICRON 25__4k_16by9_3840x2160-25.00fps.json | 2 +- ...aowa 11_XAVC S_4k_16by9_3840x2160-50.00fps.json | 2 +- ...aowa 15mm F2__4k_16by9_3840x2160-119.88fps.json | 2 +- ...5mm f2 Zero-D__4k_16by9_3840x2160-59.94fps.json | 2 +- ...bilization off_4k_16by9_3840x2160-59.94fps.json | 2 +- ...owa 35mm 0.95__4k_16by9_3840x2160-59.94fps.json | 2 +- ..._Laowa 9mm__C4k_1.90by1_4096x2160-50.00fps.json | 2 +- ...eriprobe 24mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...hic 2x_slog3_6k_3.56by1_7680x2160-25.00fps.json | 2 +- ...I Athena 35mm__4k_16by9_3840x2160-50.00fps.json | 2 +- ...kon 50mm 1.4D__4k_16by9_3840x2160-59.94fps.json | 2 +- ...isi 35mm T1.9__4k_16by9_3840x2160-25.00fps.json | 2 +- ...42-NEX Adapter_4k_16by9_3840x2160-25.00fps.json | 2 +- ...42-NEX Adapter_4k_16by9_3840x2160-25.00fps.json | 2 +- ...24mm 4k 60fps__4k_16by9_3840x2160-59.94fps.json | 2 +- ...AGIC 50MM 1.1__4k_16by9_3840x2160-50.00fps.json | 2 +- ...m f1.1_50mm_1080p_16by9_1920x1080-50.00fps.json | 2 +- ... CINE_50bps_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...g 12mm 2.0_, ,_4k_16by9_3840x2160-25.00fps.json | 2 +- ...Samyang 142.8__4k_16by9_3840x2160-59.94fps.json | 2 +- ...70 AF 24.00mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...II_Samyang 24__4k_16by9_3840x2160-25.00fps.json | 2 +- ... 35-150mm_35mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...0mm f1.4_50fps_4k_16by9_3840x2160-25.00fps.json | 2 +- ...F 45.00mm_45mm_4k_16by9_3840x2160-50.00fps.json | 2 +- ...AF 45.00mm__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...5.00mm_75mm_1080p_16by9_1920x1080-25.00fps.json | 2 +- ...F 75.00mm_75mm_4k_16by9_3840x2160-50.00fps.json | 2 +- ...f 24mm_24.00mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...II_Sigma 14-24_4k_16by9_3840x2160-59.94fps.json | 2 +- ...4mm DG DN_14MM_4k_16by9_3840x2160-59.94fps.json | 2 +- ...70 - 24.00mm__4k_16by9_3840x2160-100.00fps.json | 2 +- ...gma 24-70_24mm_4k_16by9_3840x2160-25.00fps.json | 2 +- ...DN Art_@(24mm)_4k_16by9_3840x2160-59.94fps.json | 2 +- ...DN Art_@(35mm)_4k_16by9_3840x2160-59.94fps.json | 2 +- ...DN Art_@(50mm)_4k_16by9_3840x2160-59.94fps.json | 2 +- ...DN Art_@(70mm)_4k_16by9_3840x2160-59.94fps.json | 2 +- ...-70mm 2.8 Art__4k_16by9_3840x2160-29.97fps.json | 2 +- ...24mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json | 2 +- ...30mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json | 2 +- ...35mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json | 2 +- ...4.00mm f3.5 C__4k_16by9_3840x2160-50.00fps.json | 2 +- ...mm f2.8 DG__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...20mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json | 2 +- ...24mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json | 2 +- ...35mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json | 2 +- ...7sIII_Sigma_24_4k_16by9_3840x2160-23.98fps.json | 2 +- ...namorphic_1.6x_4k_16by9_3840x2160-59.94fps.json | 2 +- ...m T2.9 1.6x__6k_2.84by1_6145x2160-23.98fps.json | 2 +- ... Anamorphic__6k_2.84by1_6144x2160-23.98fps.json | 2 +- ...namorphic_35mm_4k_16by9_3840x2160-59.94fps.json | 2 +- ...amorphic_60fps_4k_16by9_3840x2160-59.94fps.json | 2 +- ...rphic 50mm_50mm_4k_8by3_3840x1440-25.00fps.json | 2 +- ... 50mm F1.4 ZA__4k_16by9_3840x2160-50.00fps.json | 2 +- ...7-28 @17.00mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...75mm_1920 x_1080p_16by9_1920x1080-23.98fps.json | 2 +- ... 28-75 2.8 G2__4k_16by9_3840x2160-50.00fps.json | 2 +- ...2 RAW@28.00mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ... G2 RAW@28mm__C4k_16by9_4264x2408-23.98fps.json | 2 +- ...2 RAW@35.00mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ... G2 RAW@35mm__C4k_16by9_4264x2408-23.98fps.json | 2 +- ...2 RAW@50.00mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ...2 RAW@75.00mm__4k_16by9_3840x2160-23.98fps.json | 2 +- ... @ 28mm_Active_4k_16by9_3840x2160-50.00fps.json | 2 +- ...ron 28-75_28mm_4k_16by9_3840x2160-59.94fps.json | 2 +- ...by9_3840x2160-59.94fps - Administrator - 2.json | 2 +- ...0mm 1.8_50 150_4k_16by9_3840x2160-50.00fps.json | 2 +- ...ny FE_IBIS off_4k_16by9_3840x2160-25.00fps.json | 2 +- ... 35mm F1.8 FE__4k_16by9_3840x2160-29.97fps.json | 2 +- ...itar 25mm 2.5__4k_16by9_3840x2160-25.00fps.json | 2 +- ...Zeiss 16.00mm__4k_16by9_3840x2160-50.00fps.json | 2 +- ...mm 16.00mm-35__4k_16by9_3840x2160-59.94fps.json | 2 +- ...ss Batis 18mm__4k_16by9_3840x2160-50.00fps.json | 2 +- ...m__4k_16by9_3840x2160-23.98fps - student17.json | 2 +- ...efinder v 1__6k_3.56by1_7680x2160-25.00fps.json | 2 +- ...ope_anamorphic_4k_16by9_3840x2160-23.98fps.json | 2 +- ..._laowa12mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ... f2.8 DG DN_FF_4k_16by9_3840x2160-23.98fps.json | 2 +- ...n 2875g2_slog3_4k_16by9_3840x2160-59.94fps.json | 2 +- ...isan 11m f2.8__4k_16by9_3840x2160-50.00fps.json | 2 +- ..._16-35__1080p_16by9_1920x1080-50.00fps (2).json | 2 +- ...7sII_16-35__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...4-70 Sony OSS__4k_16by9_3840x2160-25.00fps.json | 2 +- ...on 16-35mm__1080p_16by9_1920x1080-23.98fps.json | 2 +- ...AOWA14MM F4.0__4k_16by9_3840x2160-25.00fps.json | 2 +- ...sII_LAOWA14MM__4k_16by9_3840x2160-25.00fps.json | 2 +- ...Wa14mm__4k_16by9_3840x2160-25.00fps - YQHP.json | 2 +- ...m ED ASIF UMC__4k_16by9_3840x2160-23.98fps.json | 2 +- ...II_SEL2470Z_24_4k_16by9_3840x2160-29.97fps.json | 2 +- ... 18mm 2.8 FE__4k_16by9_3840x2160-29.97fps.json | 2 +- ..._Sony 12-24mm__4k_16by9_3840x2160-25.00fps.json | 2 +- ...24 - 70 f4__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...m f2.8_P50F_1080p_16by9_1920x1080-50.00fps.json | 2 +- ...myang 24 T1.5__4k_16by9_3840x2160-29.97fps.json | 2 +- ...e 35 mm t 1.5__4k_16by9_3840x2160-25.00fps.json | 2 +- ..._a7s_28-70__1080p_16by9_1920x1080-25.00fps.json | 2 +- ...s_2860_28mm_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...7s_85mm f1.8__720p_4by3_1440x1080-29.97fps.json | 2 +- ..._a7s_@16mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ...24mm_50 fps_1080p_16by9_1920x1080-50.00fps.json | 2 +- ... T1.5 24mm__1080p_16by9_1920x1080-50.00fps.json | 2 +- ... 35mm f1.8__1080p_16by9_1920x1080-59.94fps.json | 2 +- ...9III_50.00mm__4k_16by9_3840x2160-119.88fps.json | 2 +- ...us 65mm_23.976_4k_16by9_3840x2160-23.98fps.json | 2 +- ..._a6000_16-35__720p_4by3_1440x1080-25.00fps.json | 4 ++-- .../thieye_t5___2.7k_16by9_2720x1520-30.00fps.json | 2 +- ...nlight kit___2.7k_16by9_2704x1520-30.00fps.json | 2 +- ...U_Mini1_GK319__4k_16by9_3840x2160-30.00fps.json | 2 +- ...U_Mini1_GK319__4k_16by9_3840x2160-60.00fps.json | 2 +- ...U_Mini1_GK319__5k_16by9_5120x2880-30.00fps.json | 2 +- ...U_Mini1__30HDR_4k_16by9_3840x2160-30.00fps.json | 2 +- ...TU_Mini1__30_2.7k_16by9_2704x1520-30.00fps.json | 2 +- ...XTU_Mini1__30_2.7k_4by3_2704x2024-30.00fps.json | 2 +- XTU/XTU_Mini1__30_4k_16by9_3840x2160-30.00fps.json | 2 +- XTU/XTU_Mini1__30_5k_16by9_5120x2880-30.00fps.json | 2 +- ...TU_Mini1__60_2.7k_16by9_2704x1520-60.00fps.json | 2 +- XTU/XTU_Mini1__60_4k_16by9_3840x2160-60.00fps.json | 2 +- ...ni1__P30HDR_1080p_16by9_1920x1080-30.00fps.json | 2 +- ..._Mini1__P30_1080p_16by9_1920x1080-30.00fps.json | 2 +- ..._Mini1__P60_1080p_16by9_1920x1080-60.00fps.json | 2 +- ...TU_S5k__V1.1_1440p_4by3_1920x1440-60.00fps.json | 2 +- ...by3_1920x1440-60.00fps - Administrator - 2.json | 2 +- XTU/XTU_S5k___4k_16by9_3840x2160-60.00fps.json | 2 +- ...ni1___1080p_16by9_1920x1080-30.00fps - XTU.json | 2 +- ...XTU_mini1___1080p_16by9_1920x1080-30.00fps.json | 2 +- ...XTU_mini1___1080p_16by9_1920x1080-60.00fps.json | 2 +- XTU/Xtu_mini1___2.7k_16by9_2704x1520-60.00fps.json | 4 ++-- XTU/xtu_X1___4k_16by9_3840x2160-30.00fps (2).json | 2 +- ..._3.2mm f2.8__2.5k_16by9_2560x1440-59.94fps.json | 2 +- ...4k_3.2mm f2.8__4k_16by9_3840x2160-29.97fps.json | 2 +- ...2.8_ultra fine_4k_16by9_3840x2160-29.97fps.json | 2 +- ...tock_StockAuto_4k_16by9_3840x2160-59.94fps.json | 2 +- ...on camera___1080p_16by9_1920x1080-59.94fps.json | 2 +- ...k+___2.7k_4by3_2720x2032-29.97fps - server.json | 2 +- ...aomi_Yi 4k+___2.7k_4by3_2720x2032-29.97fps.json | 2 +- ...iaomi_Yi 4k+___4k_16by9_3840x2160-50.00fps.json | 2 +- ... 4k+__wide_1080p_16by9_1920x1080-100.00fps.json | 2 +- ...mi_Yi 4k+__wide_4k_4by3_4000x3008-25.00fps.json | 2 +- ..._2704 x 1520_2.7k_16by9_2704x1520-59.94fps.json | 2 +- ...omi_Yi 4k___1080p_16by9_1920x1080-23.98fps.json | 2 +- ...Yi 4k___1080p_16by9_1920x1080-59.94fps (2).json | 2 +- ...omi_Yi 4k___1080p_16by9_1920x1080-59.94fps.json | 2 +- ...Xiaomi_Yi 4k___4k_16by9_3840x2160-25.00fps.json | 2 +- ...Xiaomi_Yi 4k___4k_16by9_3840x2160-29.97fps.json | 2 +- .../Xiaomi_Yi 4k___4k_4by3_4000x3008-29.97fps.json | 2 +- ...ectionadded_1080p_16by9_1920x1080-59.94fps.json | 2 +- ...Yi 4k__white_2.7k_16by9_2704x1520-59.94fps.json | 2 +- .../Z CAM_e1___1080p_16by9_1920x1080-59.96fps.json | 2 +- ...aowa 10mm_H265_4k_16by9_3840x2160-50.00fps.json | 2 +- ...laowa7.5_59fps_4k_16by9_3840x2160-59.94fps.json | 2 +- ...peman_a80___1080p_16by9_1920x1080-24.00fps.json | 2 +- .../apeman_4k___4k_16by9_3840x2160-25.00fps.json | 2 +- ...K ULTRA WIDE_2.5k_16by9_2560x1440-30.00fps.json | 2 +- ...progressive_1080p_16by9_1920x1080-60.00fps.json | 2 +- .../apeman_A87___4k_16by9_3840x2160-60.00fps.json | 2 +- build_camera_database.py | 14 ++++++++++++++ 2693 files changed, 2741 insertions(+), 2727 deletions(-) diff --git a/AKASO/AKASO_EK7000pro_170__4k_16by9_3840x2160-30.00fps.json b/AKASO/AKASO_EK7000pro_170__4k_16by9_3840x2160-30.00fps.json index c06fdab0..2fe7af3f 100644 --- a/AKASO/AKASO_EK7000pro_170__4k_16by9_3840x2160-30.00fps.json +++ b/AKASO/AKASO_EK7000pro_170__4k_16by9_3840x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "manu", "camera_brand": "AKASO", - "camera_model": "EK7000pro", + "camera_model": "EK7000Pro", "lens_model": "170º", "camera_setting": "", "calib_dimension": { diff --git a/AKASO/AKASO_v50 elite___4k_16by9_3840x2160-60.00fps.json b/AKASO/AKASO_v50 elite___4k_16by9_3840x2160-60.00fps.json index 5443a034..faa8b152 100644 --- a/AKASO/AKASO_v50 elite___4k_16by9_3840x2160-60.00fps.json +++ b/AKASO/AKASO_v50 elite___4k_16by9_3840x2160-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "MarkV", "camera_brand": "AKASO", - "camera_model": "v50 elite", + "camera_model": "V50 Elite", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/AKASO/AKASO_v50 pro_stock_smoothing_4k_16by9_3840x2160-30.00fps.json b/AKASO/AKASO_v50 pro_stock_smoothing_4k_16by9_3840x2160-30.00fps.json index 1daff761..cb283029 100644 --- a/AKASO/AKASO_v50 pro_stock_smoothing_4k_16by9_3840x2160-30.00fps.json +++ b/AKASO/AKASO_v50 pro_stock_smoothing_4k_16by9_3840x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "sunday mystery", "camera_brand": "AKASO", - "camera_model": "v50 pro", + "camera_model": "V50 Pro", "lens_model": "stock", "camera_setting": "smoothing", "calib_dimension": { diff --git a/AKASO/AKASO_v50 pro_wide__4k_16by9_3840x2160-30.00fps.json b/AKASO/AKASO_v50 pro_wide__4k_16by9_3840x2160-30.00fps.json index dd011871..ffec9731 100644 --- a/AKASO/AKASO_v50 pro_wide__4k_16by9_3840x2160-30.00fps.json +++ b/AKASO/AKASO_v50 pro_wide__4k_16by9_3840x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "sunday mystery", "camera_brand": "AKASO", - "camera_model": "v50 pro", + "camera_model": "V50 Pro", "lens_model": "wide", "camera_setting": "", "calib_dimension": { diff --git a/AKASO/AKASO_v50x___2.7k_16by9_2716x1524-30.00fps.json b/AKASO/AKASO_v50x___2.7k_16by9_2716x1524-30.00fps.json index 07c57077..4d26514e 100644 --- a/AKASO/AKASO_v50x___2.7k_16by9_2716x1524-30.00fps.json +++ b/AKASO/AKASO_v50x___2.7k_16by9_2716x1524-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Robert Niewiarowski", "camera_brand": "AKASO", - "camera_model": "v50x", + "camera_model": "V50x", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/AKASO/Akaso_Brave 7_Stock Lens_Stabilization Off_1080p_16by9_1920x1080-60.00fps.json b/AKASO/Akaso_Brave 7_Stock Lens_Stabilization Off_1080p_16by9_1920x1080-60.00fps.json index c8d5a4da..7b794e23 100644 --- a/AKASO/Akaso_Brave 7_Stock Lens_Stabilization Off_1080p_16by9_1920x1080-60.00fps.json +++ b/AKASO/Akaso_Brave 7_Stock Lens_Stabilization Off_1080p_16by9_1920x1080-60.00fps.json @@ -2,7 +2,7 @@ "name": "Akaso_Brave 7_Stock Lens_Stabilization Off_1080p_16by9_1920x1080-60.00fps", "note": "Lens Correction On", "calibrated_by": "RA121514", - "camera_brand": "Akaso", + "camera_brand": "AKASO", "camera_model": "Brave 7", "lens_model": "Stock Lens", "camera_setting": "Stabilization Off", diff --git a/AKASO/Akaso_V50 Elite_Factory__2.7k_16by9_2719x1520-30.00fps.json b/AKASO/Akaso_V50 Elite_Factory__2.7k_16by9_2719x1520-30.00fps.json index e43c36b6..974bbc7e 100644 --- a/AKASO/Akaso_V50 Elite_Factory__2.7k_16by9_2719x1520-30.00fps.json +++ b/AKASO/Akaso_V50 Elite_Factory__2.7k_16by9_2719x1520-30.00fps.json @@ -2,7 +2,7 @@ "name": "Akaso_V50 Elite_Factory__2.7k_16by9_2719x1520-30.00fps", "note": "", "calibrated_by": "Mate Vakadua", - "camera_brand": "Akaso", + "camera_brand": "AKASO", "camera_model": "V50 Elite", "lens_model": "Factory", "camera_setting": "", diff --git a/AKASO/Akaso_V50 X___4k_16by9_3840x2160-30.01fps.json b/AKASO/Akaso_V50 X___4k_16by9_3840x2160-30.01fps.json index e5dfb2c3..59747068 100644 --- a/AKASO/Akaso_V50 X___4k_16by9_3840x2160-30.01fps.json +++ b/AKASO/Akaso_V50 X___4k_16by9_3840x2160-30.01fps.json @@ -2,7 +2,7 @@ "name": "Akaso_V50 X___4k_16by9_3840x2160-30.01fps", "note": "", "calibrated_by": "Alejandro Rauseo", - "camera_brand": "Akaso", + "camera_brand": "AKASO", "camera_model": "V50 X", "lens_model": "", "camera_setting": "", diff --git a/AKASO/akaso_v50 elite__30_4k_16by9_3840x2160-30.00fps.json b/AKASO/akaso_v50 elite__30_4k_16by9_3840x2160-30.00fps.json index f461d2a0..24457d5d 100644 --- a/AKASO/akaso_v50 elite__30_4k_16by9_3840x2160-30.00fps.json +++ b/AKASO/akaso_v50 elite__30_4k_16by9_3840x2160-30.00fps.json @@ -2,8 +2,8 @@ "name": "akaso_v50 elite__30_4k_16by9_3840x2160-30.00fps", "note": "", "calibrated_by": "david boudreaux", - "camera_brand": "akaso", - "camera_model": "v50 elite", + "camera_brand": "AKASO", + "camera_model": "V50 Elite", "lens_model": "", "camera_setting": "30", "calib_dimension": { diff --git a/ARRI/Arri_35_Laowa 12mm_4.6k_C4k_16by9_4096x2304-25.00fps.json b/ARRI/Arri_35_Laowa 12mm_4.6k_C4k_16by9_4096x2304-25.00fps.json index f4d1c661..91bbc244 100644 --- a/ARRI/Arri_35_Laowa 12mm_4.6k_C4k_16by9_4096x2304-25.00fps.json +++ b/ARRI/Arri_35_Laowa 12mm_4.6k_C4k_16by9_4096x2304-25.00fps.json @@ -2,7 +2,7 @@ "name": "Arri_35_Laowa 12mm_4.6k_C4k_16by9_4096x2304-25.00fps", "note": "recording res 4096 x 2034", "calibrated_by": "Terrence Wilkins", - "camera_brand": "Arri", + "camera_brand": "ARRI", "camera_model": "35", "lens_model": "Laowa 12mm", "camera_setting": "4.6k", diff --git a/ARRI/Arri_Alexa 35_Ultra Prime 24mm__C4k_16by9_4096x2304-25.00fps.json b/ARRI/Arri_Alexa 35_Ultra Prime 24mm__C4k_16by9_4096x2304-25.00fps.json index ac3761d0..2ead91e7 100644 --- a/ARRI/Arri_Alexa 35_Ultra Prime 24mm__C4k_16by9_4096x2304-25.00fps.json +++ b/ARRI/Arri_Alexa 35_Ultra Prime 24mm__C4k_16by9_4096x2304-25.00fps.json @@ -2,7 +2,7 @@ "name": "Arri_Alexa 35_Ultra Prime 24mm__C4k_16by9_4096x2304-25.00fps", "note": "", "calibrated_by": "Bernhard Russow", - "camera_brand": "Arri", + "camera_brand": "ARRI", "camera_model": "Alexa 35", "lens_model": "Ultra Prime 24mm", "camera_setting": "", diff --git a/ARRI/Arri_Alexa LF_Xeen 35mm__4k_16by9_3840x2160-25.00fps.json b/ARRI/Arri_Alexa LF_Xeen 35mm__4k_16by9_3840x2160-25.00fps.json index c9f3e570..c3d6cd3c 100644 --- a/ARRI/Arri_Alexa LF_Xeen 35mm__4k_16by9_3840x2160-25.00fps.json +++ b/ARRI/Arri_Alexa LF_Xeen 35mm__4k_16by9_3840x2160-25.00fps.json @@ -2,7 +2,7 @@ "name": "Arri_Alexa LF_Xeen 35mm__4k_16by9_3840x2160-25.00fps", "note": "", "calibrated_by": "Robert Grundnig", - "camera_brand": "Arri", + "camera_brand": "ARRI", "camera_model": "Alexa LF", "lens_model": "Xeen 35mm", "camera_setting": "", diff --git a/ARRI/Arri_Alexa LF_Xeen 85mm__4k_16by9_3840x2160-25.00fps.json b/ARRI/Arri_Alexa LF_Xeen 85mm__4k_16by9_3840x2160-25.00fps.json index f26fb204..332eed8a 100644 --- a/ARRI/Arri_Alexa LF_Xeen 85mm__4k_16by9_3840x2160-25.00fps.json +++ b/ARRI/Arri_Alexa LF_Xeen 85mm__4k_16by9_3840x2160-25.00fps.json @@ -2,7 +2,7 @@ "name": "Arri_Alexa LF_Xeen 85mm__4k_16by9_3840x2160-25.00fps", "note": "", "calibrated_by": "Robert Grundnig", - "camera_brand": "Arri", + "camera_brand": "ARRI", "camera_model": "Alexa LF", "lens_model": "Xeen 85mm", "camera_setting": "", diff --git a/ARRI/Arri_Alexa Mini_40 mm Cooke S4__4k_16by9_3840x2160-25.00fps.json b/ARRI/Arri_Alexa Mini_40 mm Cooke S4__4k_16by9_3840x2160-25.00fps.json index 96e853f1..a043458d 100644 --- a/ARRI/Arri_Alexa Mini_40 mm Cooke S4__4k_16by9_3840x2160-25.00fps.json +++ b/ARRI/Arri_Alexa Mini_40 mm Cooke S4__4k_16by9_3840x2160-25.00fps.json @@ -2,7 +2,7 @@ "name": "Arri_Alexa Mini_40 mm Cooke S4__4k_16by9_3840x2160-25.00fps", "note": "", "calibrated_by": "Eric Lor", - "camera_brand": "Arri", + "camera_brand": "ARRI", "camera_model": "Alexa Mini", "lens_model": "40 mm Cooke S4", "camera_setting": "", diff --git a/ARRI/Arri_Alexa Mini_40mm Cooke s4 (02)__4k_16by9_3840x2160-25.00fps.json b/ARRI/Arri_Alexa Mini_40mm Cooke s4 (02)__4k_16by9_3840x2160-25.00fps.json index dd3ec086..b945087b 100644 --- a/ARRI/Arri_Alexa Mini_40mm Cooke s4 (02)__4k_16by9_3840x2160-25.00fps.json +++ b/ARRI/Arri_Alexa Mini_40mm Cooke s4 (02)__4k_16by9_3840x2160-25.00fps.json @@ -2,7 +2,7 @@ "name": "Arri_Alexa Mini_40mm Cooke s4 (02)__4k_16by9_3840x2160-25.00fps", "note": "", "calibrated_by": "Eric Lor", - "camera_brand": "Arri", + "camera_brand": "ARRI", "camera_model": "Alexa Mini", "lens_model": "40mm Cooke s4 (02)", "camera_setting": "", diff --git a/ARRI/Arri_Alexa mini_27mm Cooke S4__4k_16by9_3840x2160-25.00fps.json b/ARRI/Arri_Alexa mini_27mm Cooke S4__4k_16by9_3840x2160-25.00fps.json index 67752b8b..64f440b1 100644 --- a/ARRI/Arri_Alexa mini_27mm Cooke S4__4k_16by9_3840x2160-25.00fps.json +++ b/ARRI/Arri_Alexa mini_27mm Cooke S4__4k_16by9_3840x2160-25.00fps.json @@ -2,8 +2,8 @@ "name": "Arri_Alexa mini_27mm Cooke S4__4k_16by9_3840x2160-25.00fps", "note": "", "calibrated_by": "Eric Lor", - "camera_brand": "Arri", - "camera_model": "Alexa mini", + "camera_brand": "ARRI", + "camera_model": "Alexa Mini", "lens_model": "27mm Cooke S4", "camera_setting": "", "calib_dimension": { diff --git a/ARRI/Arri_Alexa mini_Laowa 12mm_2.8k RAW_2.7k_16by9_2880x1620-25.00fps.json b/ARRI/Arri_Alexa mini_Laowa 12mm_2.8k RAW_2.7k_16by9_2880x1620-25.00fps.json index 03bb9e99..40c79848 100644 --- a/ARRI/Arri_Alexa mini_Laowa 12mm_2.8k RAW_2.7k_16by9_2880x1620-25.00fps.json +++ b/ARRI/Arri_Alexa mini_Laowa 12mm_2.8k RAW_2.7k_16by9_2880x1620-25.00fps.json @@ -2,8 +2,8 @@ "name": "Arri_Alexa mini_Laowa 12mm_2.8k RAW_2.7k_16by9_2880x1620-25.00fps", "note": "", "calibrated_by": "Vadim smarchenko", - "camera_brand": "Arri", - "camera_model": "Alexa mini", + "camera_brand": "ARRI", + "camera_model": "Alexa Mini", "lens_model": "Laowa 12mm", "camera_setting": "2.8k RAW", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Micro Studio Camera 4k G2_Laowa Zero-D Cine 6mm T2.1__1080p_16by9_1920x1080-24.00fps.json b/Blackmagic/Blackmagic_Micro Studio Camera 4k G2_Laowa Zero-D Cine 6mm T2.1__1080p_16by9_1920x1080-24.00fps.json index c54958a7..563b5764 100644 --- a/Blackmagic/Blackmagic_Micro Studio Camera 4k G2_Laowa Zero-D Cine 6mm T2.1__1080p_16by9_1920x1080-24.00fps.json +++ b/Blackmagic/Blackmagic_Micro Studio Camera 4k G2_Laowa Zero-D Cine 6mm T2.1__1080p_16by9_1920x1080-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Christopher C. Clark", "camera_brand": "Blackmagic", - "camera_model": "Micro Studio Camera 4k G2", + "camera_model": "Micro Studio Camera 4K G2", "lens_model": "Laowa Zero-D Cine 6mm T2.1", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Micro Studio Camera 4k G2_Laowa Zero-D Cine 6mm T2.1__4k_16by9_3840x2160-24.00fps.json b/Blackmagic/Blackmagic_Micro Studio Camera 4k G2_Laowa Zero-D Cine 6mm T2.1__4k_16by9_3840x2160-24.00fps.json index c30d806c..e8885ed2 100644 --- a/Blackmagic/Blackmagic_Micro Studio Camera 4k G2_Laowa Zero-D Cine 6mm T2.1__4k_16by9_3840x2160-24.00fps.json +++ b/Blackmagic/Blackmagic_Micro Studio Camera 4k G2_Laowa Zero-D Cine 6mm T2.1__4k_16by9_3840x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Christopher C. Clark", "camera_brand": "Blackmagic", - "camera_model": "Micro Studio Camera 4k G2", + "camera_model": "Micro Studio Camera 4K G2", "lens_model": "Laowa Zero-D Cine 6mm T2.1", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocker Cinema Camera 4k_Sigma 18-50mm f2.8-4.5_8_1_4k_16by9_3840x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocker Cinema Camera 4k_Sigma 18-50mm f2.8-4.5_8_1_4k_16by9_3840x2160-25.00fps.json index fce3a80e..75e2de7a 100644 --- a/Blackmagic/Blackmagic_Pocker Cinema Camera 4k_Sigma 18-50mm f2.8-4.5_8_1_4k_16by9_3840x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocker Cinema Camera 4k_Sigma 18-50mm f2.8-4.5_8_1_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "35mm Speedboosted", "calibrated_by": "Oleksandr", "camera_brand": "Blackmagic", - "camera_model": "Pocker Cinema Camera 4k", + "camera_model": "Pocker Cinema Camera 4K", "lens_model": "Sigma 18-50mm f2.8-4.5", "camera_setting": "8:1", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket CInema Camera 4K_Olympus 12-40 mm f2.8__C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket CInema Camera 4K_Olympus 12-40 mm f2.8__C4k_1.90by1_4096x2160-25.00fps.json index 4a4b549f..eb2582b8 100644 --- a/Blackmagic/Blackmagic_Pocket CInema Camera 4K_Olympus 12-40 mm f2.8__C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket CInema Camera 4K_Olympus 12-40 mm f2.8__C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Thijs Remaut", "camera_brand": "Blackmagic", - "camera_model": "Pocket CInema Camera 4K", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Olympus 12-40 mm f/2.8", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm F4_BRAW8_1_C4k_1.90by1_4096x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm F4_BRAW8_1_C4k_1.90by1_4096x2160-50.00fps.json index 8ef4af87..091b0aaa 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm F4_BRAW8_1_C4k_1.90by1_4096x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm F4_BRAW8_1_C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "BRAW8:1", "calibrated_by": "Pavilion5", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 7.5mm F4", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_12mm 2.8 olympus__4k_16by9_3840x2160-60.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_12mm 2.8 olympus__4k_16by9_3840x2160-60.00fps.json index e90f27ef..7f676759 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_12mm 2.8 olympus__4k_16by9_3840x2160-60.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_12mm 2.8 olympus__4k_16by9_3840x2160-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Akailah", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "12mm 2.8 olympus", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_15mm 1.7 dji_ProRes 422_1080p_16by9_1920x1080-60.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_15mm 1.7 dji_ProRes 422_1080p_16by9_1920x1080-60.00fps.json index 7a2e2a9a..19248a47 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_15mm 1.7 dji_ProRes 422_1080p_16by9_1920x1080-60.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_15mm 1.7 dji_ProRes 422_1080p_16by9_1920x1080-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "libre", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "15mm 1.7 dji", "camera_setting": "ProRes 422", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_15mm Lumix__C4k_1.90by1_4096x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_15mm Lumix__C4k_1.90by1_4096x2160-50.00fps.json index 39078a20..75459bf5 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_15mm Lumix__C4k_1.90by1_4096x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_15mm Lumix__C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jonas Klein", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "15mm Lumix", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_15mm dji m43_ProRes 422 4k_C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_15mm dji m43_ProRes 422 4k_C4k_1.90by1_4096x2160-25.00fps.json index 4449e091..b2900c83 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_15mm dji m43_ProRes 422 4k_C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_15mm dji m43_ProRes 422 4k_C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Niki tanera", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "15mm dji m4/3", "camera_setting": "ProRes 422 4k", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_15mm__1080p_16by9_1920x1080-60.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_15mm__1080p_16by9_1920x1080-60.00fps.json index 37582c32..554bb8b9 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_15mm__1080p_16by9_1920x1080-60.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_15mm__1080p_16by9_1920x1080-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "osama alghilani", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "15mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_17mm Laowa Cine_DCI_C4k_1.90by1_4096x2160-25.00fps - Shikijo.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_17mm Laowa Cine_DCI_C4k_1.90by1_4096x2160-25.00fps - Shikijo.json index 88ea363a..9463797e 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_17mm Laowa Cine_DCI_C4k_1.90by1_4096x2160-25.00fps - Shikijo.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_17mm Laowa Cine_DCI_C4k_1.90by1_4096x2160-25.00fps - Shikijo.json @@ -3,7 +3,7 @@ "note": "GOOD", "calibrated_by": "Shikijo", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "17mm Laowa Cine", "camera_setting": "DCI", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_17mm Laowa Cine_DCI_C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_17mm Laowa Cine_DCI_C4k_1.90by1_4096x2160-25.00fps.json index cd545fb6..f1cf9304 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_17mm Laowa Cine_DCI_C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_17mm Laowa Cine_DCI_C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "MacPro", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "17mm Laowa Cine", "camera_setting": "DCI", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_35mm Meike MFT_DCI_C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_35mm Meike MFT_DCI_C4k_1.90by1_4096x2160-25.00fps.json index 9f7310a6..517e1495 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_35mm Meike MFT_DCI_C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_35mm Meike MFT_DCI_C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Shikijo", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "35mm Meike MFT", "camera_setting": "DCI", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_7.5__C4k_1.90by1_4096x2160-27.28fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_7.5__C4k_1.90by1_4096x2160-27.28fps.json index 9d0d6d72..dea72cc6 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_7.5__C4k_1.90by1_4096x2160-27.28fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_7.5__C4k_1.90by1_4096x2160-27.28fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "杨稳", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "7.5", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_7.5mm fish eye__C4k_1.90by1_4096x2160-60.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_7.5mm fish eye__C4k_1.90by1_4096x2160-60.00fps.json index 00ed3923..60b25619 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_7.5mm fish eye__C4k_1.90by1_4096x2160-60.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_7.5mm fish eye__C4k_1.90by1_4096x2160-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "FAHAD.FPV", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "7.5mm fish eye", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_7Artisans 7.5mm_DCI_C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_7Artisans 7.5mm_DCI_C4k_1.90by1_4096x2160-25.00fps.json index 31b4143d..e3f13be2 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_7Artisans 7.5mm_DCI_C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_7Artisans 7.5mm_DCI_C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "JULIEN BIGNY", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "7Artisans 7.5mm", "camera_setting": "DCI", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_7artisans 35mm__C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_7artisans 35mm__C4k_1.90by1_4096x2160-25.00fps.json index 2e54e7cf..99c5a373 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_7artisans 35mm__C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_7artisans 35mm__C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Admin", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "7artisans 35mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_8mm drl_ProRes 422_1080p_16by9_1920x1080-60.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_8mm drl_ProRes 422_1080p_16by9_1920x1080-60.00fps.json index eaf978b2..aaa1666d 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_8mm drl_ProRes 422_1080p_16by9_1920x1080-60.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_8mm drl_ProRes 422_1080p_16by9_1920x1080-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "libre", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "8mm drl", "camera_setting": "ProRes 422", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_AF NIKKOR 24mm F2.8__C4k_1.90by1_4096x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_AF NIKKOR 24mm F2.8__C4k_1.90by1_4096x2160-50.00fps.json index 2147edb9..d04504d1 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_AF NIKKOR 24mm F2.8__C4k_1.90by1_4096x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_AF NIKKOR 24mm F2.8__C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "田中直人", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "AF NIKKOR 24mm F2.8", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Canon 10-18mm_DCI_C4k_1.90by1_4096x2160-24.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Canon 10-18mm_DCI_C4k_1.90by1_4096x2160-24.00fps.json index ee3674df..21d714d3 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Canon 10-18mm_DCI_C4k_1.90by1_4096x2160-24.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Canon 10-18mm_DCI_C4k_1.90by1_4096x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "12mm with Speedbooster 0.71", "calibrated_by": "Nikolai Chalkidis", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Canon 10-18mm", "camera_setting": "DCI", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Canon 50mm 1.8_DCI_C4k_1.90by1_4096x2160-24.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Canon 50mm 1.8_DCI_C4k_1.90by1_4096x2160-24.00fps.json index a309a6ef..2556db21 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Canon 50mm 1.8_DCI_C4k_1.90by1_4096x2160-24.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Canon 50mm 1.8_DCI_C4k_1.90by1_4096x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "with Speedbooster 0.71", "calibrated_by": "Nikolai Chalkidis", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Canon 50mm 1.8", "camera_setting": "DCI", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Canon FD 24mm f1.4 w Zhongyi Lens Turbo II__C4k_1.90by1_4096x2160-30.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Canon FD 24mm f1.4 w Zhongyi Lens Turbo II__C4k_1.90by1_4096x2160-30.00fps.json index 36fa6f28..b6b64900 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Canon FD 24mm f1.4 w Zhongyi Lens Turbo II__C4k_1.90by1_4096x2160-30.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Canon FD 24mm f1.4 w Zhongyi Lens Turbo II__C4k_1.90by1_4096x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Justin Kramer", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Canon FD 24mm f1.4 w/ Zhongyi Lens Turbo II", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Canon FD 24mm f2.8 SSC_Zhongyi Lens Turbo II Speedbooster_4k_16by9_3840x2160-30.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Canon FD 24mm f2.8 SSC_Zhongyi Lens Turbo II Speedbooster_4k_16by9_3840x2160-30.00fps.json index 0f0dcd6c..c93afb31 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Canon FD 24mm f2.8 SSC_Zhongyi Lens Turbo II Speedbooster_4k_16by9_3840x2160-30.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Canon FD 24mm f2.8 SSC_Zhongyi Lens Turbo II Speedbooster_4k_16by9_3840x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "Zhongyi Lens Turbo II Speedbooster", "calibrated_by": "Justin Kramer", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Canon FD 24mm f2.8 SSC", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Canon FD 50mm f1.4_Zhongyi Lens Turbo II Speedbooster_C4k_1.90by1_4096x2160-30.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Canon FD 50mm f1.4_Zhongyi Lens Turbo II Speedbooster_C4k_1.90by1_4096x2160-30.00fps.json index 1368be09..7745fe4c 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Canon FD 50mm f1.4_Zhongyi Lens Turbo II Speedbooster_C4k_1.90by1_4096x2160-30.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Canon FD 50mm f1.4_Zhongyi Lens Turbo II Speedbooster_C4k_1.90by1_4096x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "Zhongyi Lens Turbo II Speedbooster", "calibrated_by": "Justin Kramer", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Canon FD 50mm f1.4", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Canon Zoom Lens 24-105mm EF__4k_16by9_3840x2160-60.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Canon Zoom Lens 24-105mm EF__4k_16by9_3840x2160-60.00fps.json index 78f6b892..27d5bda6 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Canon Zoom Lens 24-105mm EF__4k_16by9_3840x2160-60.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Canon Zoom Lens 24-105mm EF__4k_16by9_3840x2160-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Gamer", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Canon Zoom Lens 24-105mm EF", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_DJI 15mm 1.7__4k_16by9_3840x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_DJI 15mm 1.7__4k_16by9_3840x2160-25.00fps.json index ef642a81..264ffdf1 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_DJI 15mm 1.7__4k_16by9_3840x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_DJI 15mm 1.7__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Geert Claas", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "DJI 15mm 1.7", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_DJI 15mm F1.7_DCI_C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_DJI 15mm F1.7_DCI_C4k_1.90by1_4096x2160-25.00fps.json index 941d9a16..54534a21 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_DJI 15mm F1.7_DCI_C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_DJI 15mm F1.7_DCI_C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "PRORES 422", "calibrated_by": "胡江涛", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "DJI 15mm F1.7", "camera_setting": "DCI", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_DJI 15mm f1.7 MFT ASPH_DCI f1.7_C4k_1.90by1_4096x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_DJI 15mm f1.7 MFT ASPH_DCI f1.7_C4k_1.90by1_4096x2160-50.00fps.json index 23f71e68..e8fd72fe 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_DJI 15mm f1.7 MFT ASPH_DCI f1.7_C4k_1.90by1_4096x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_DJI 15mm f1.7 MFT ASPH_DCI f1.7_C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "ProRes LT", "calibrated_by": "Ferdi Haya", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "DJI 15mm f/1.7 MFT ASPH", "camera_setting": "DCI f1.7", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_DJI 15mm_60fs prores_4k_16by9_3840x2160-60.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_DJI 15mm_60fs prores_4k_16by9_3840x2160-60.00fps.json index 7d81202b..12e9f469 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_DJI 15mm_60fs prores_4k_16by9_3840x2160-60.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_DJI 15mm_60fs prores_4k_16by9_3840x2160-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "PedroBraulio Alvarez", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "DJI 15mm", "camera_setting": "60fs prores", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Ektar2 25mm__C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Ektar2 25mm__C4k_1.90by1_4096x2160-25.00fps.json index 3b3ccdb3..46528c1d 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Ektar2 25mm__C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Ektar2 25mm__C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Somerley Ha", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Ektar2 25mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_H-X015__1080p_16by9_1920x1080-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_H-X015__1080p_16by9_1920x1080-50.00fps.json index 09a08996..bbd4bec0 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_H-X015__1080p_16by9_1920x1080-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_H-X015__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jonas Klein", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "H-X015", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Helios 44-2 58mm f2_8_1_4k_16by9_3840x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Helios 44-2 58mm f2_8_1_4k_16by9_3840x2160-25.00fps.json index a3f67b48..3007edda 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Helios 44-2 58mm f2_8_1_4k_16by9_3840x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Helios 44-2 58mm f2_8_1_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "8:1", "calibrated_by": "Oleksandr", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Helios 44-2 58mm f2", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_IAOWA 7.5mm__4k_16by9_3840x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_IAOWA 7.5mm__4k_16by9_3840x2160-50.00fps.json index f2ad51c8..2bb40e2f 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_IAOWA 7.5mm__4k_16by9_3840x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_IAOWA 7.5mm__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "McRubens", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "IAOWA 7.5mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Irex 15mm with.64x Speedbooster__C4k_1.90by1_4096x2160-60.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Irex 15mm with.64x Speedbooster__C4k_1.90by1_4096x2160-60.00fps.json index 618a861d..06ba5b15 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Irex 15mm with.64x Speedbooster__C4k_1.90by1_4096x2160-60.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Irex 15mm with.64x Speedbooster__C4k_1.90by1_4096x2160-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Brett Kerr", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Irex 15mm with.64x Speedbooster", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 6mm cine_DCI_C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 6mm cine_DCI_C4k_1.90by1_4096x2160-25.00fps.json index 4b086807..da4263ad 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 6mm cine_DCI_C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 6mm cine_DCI_C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "GLUTWERK", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "LAOWA 6mm cine", "camera_setting": "DCI", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 6mm_2_C4k_1.90by1_4096x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 6mm_2_C4k_1.90by1_4096x2160-50.00fps.json index 6c2ec980..84c94041 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 6mm_2_C4k_1.90by1_4096x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 6mm_2_C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "2", "calibrated_by": "Andy", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "LAOWA 6mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 6mm__C4k_1.90by1_4096x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 6mm__C4k_1.90by1_4096x2160-50.00fps.json index ad77d28e..44868421 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 6mm__C4k_1.90by1_4096x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 6mm__C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Andy", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "LAOWA 6mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 7.5__1080p_16by9_1920x1080-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 7.5__1080p_16by9_1920x1080-25.00fps.json index eb8e5af4..76d4827c 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 7.5__1080p_16by9_1920x1080-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 7.5__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ARTRUE", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "LAOWA 7.5", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 7.5mm 2.0__4k_16by9_3840x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 7.5mm 2.0__4k_16by9_3840x2160-25.00fps.json index d55a50e1..78bb170f 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 7.5mm 2.0__4k_16by9_3840x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 7.5mm 2.0__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Geert Claas", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "LAOWA 7.5mm 2.0", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 7.5mm_C PRORES422HQ_C4k_1.90by1_4096x2160-23.98fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 7.5mm_C PRORES422HQ_C4k_1.90by1_4096x2160-23.98fps.json index f51adf3e..b1c85dff 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 7.5mm_C PRORES422HQ_C4k_1.90by1_4096x2160-23.98fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 7.5mm_C PRORES422HQ_C4k_1.90by1_4096x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "BHA Render Machine", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "LAOWA 7.5mm", "camera_setting": "C PRORES422HQ", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 7.5mm_Calibrated at 8_1_C4k_1.90by1_4096x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 7.5mm_Calibrated at 8_1_C4k_1.90by1_4096x2160-50.00fps.json index 3a04e490..4608bbab 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 7.5mm_Calibrated at 8_1_C4k_1.90by1_4096x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 7.5mm_Calibrated at 8_1_C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Giovanni Strondl", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "LAOWA 7.5mm", "camera_setting": "Calibrated at 8:1", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 7.5mm_Prores 4k HQ_C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 7.5mm_Prores 4k HQ_C4k_1.90by1_4096x2160-25.00fps.json index cb72787c..52846f71 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 7.5mm_Prores 4k HQ_C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 7.5mm_Prores 4k HQ_C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Giovanni Strondl", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "LAOWA 7.5mm", "camera_setting": "Prores 4k HQ", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 9mm_Calibrated at 12_1_1080p_1.90by1_1920x1012-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 9mm_Calibrated at 12_1_1080p_1.90by1_1920x1012-50.00fps.json index 76ee1bfb..56eea52b 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 9mm_Calibrated at 12_1_1080p_1.90by1_1920x1012-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 9mm_Calibrated at 12_1_1080p_1.90by1_1920x1012-50.00fps.json @@ -3,7 +3,7 @@ "note": "Calibrated at 12:1", "calibrated_by": "Giovanni Strondl", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "LAOWA 9mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 9mm_HQ_C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 9mm_HQ_C4k_1.90by1_4096x2160-25.00fps.json index 71f7b7bb..8ac359c7 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 9mm_HQ_C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA 9mm_HQ_C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Giovanni Strondl", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "LAOWA 9mm", "camera_setting": "HQ", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA_F6.2_C4k_1.90by1_4096x2160-60.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA_F6.2_C4k_1.90by1_4096x2160-60.00fps.json index 4299d31d..8e58d461 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA_F6.2_C4k_1.90by1_4096x2160-60.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA_F6.2_C4k_1.90by1_4096x2160-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Duncan", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "LAOWA", "camera_setting": "F6.2", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA__4k_16by9_3840x2160-60.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA__4k_16by9_3840x2160-60.00fps.json index 009fd165..3de0ee5f 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA__4k_16by9_3840x2160-60.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_LAOWA__4k_16by9_3840x2160-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Duncan", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "LAOWA", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 10mm f8__C4k_1.90by1_4096x2160-30.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 10mm f8__C4k_1.90by1_4096x2160-30.00fps.json index d8c8279e..7739643f 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 10mm f8__C4k_1.90by1_4096x2160-30.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 10mm f8__C4k_1.90by1_4096x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Georgi Tushev", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 10mm f8", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 10mm__1080p_16by9_1920x1080-24.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 10mm__1080p_16by9_1920x1080-24.00fps.json index ee0c951f..42812112 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 10mm__1080p_16by9_1920x1080-24.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 10mm__1080p_16by9_1920x1080-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Артур Ефремов", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 10mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 10mm__C4k_1.90by1_4096x2160-24.00fps - 2.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 10mm__C4k_1.90by1_4096x2160-24.00fps - 2.json index edd31550..bdaa9f65 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 10mm__C4k_1.90by1_4096x2160-24.00fps - 2.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 10mm__C4k_1.90by1_4096x2160-24.00fps - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Артур Ефремов", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 10mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 10mm__C4k_1.90by1_4096x2160-24.00fps - 4.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 10mm__C4k_1.90by1_4096x2160-24.00fps - 4.json index 937d1b21..bceb1fd5 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 10mm__C4k_1.90by1_4096x2160-24.00fps - 4.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 10mm__C4k_1.90by1_4096x2160-24.00fps - 4.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Артур Ефремов", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 10mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 10mm__C4k_1.90by1_4096x2160-24.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 10mm__C4k_1.90by1_4096x2160-24.00fps.json index c79de025..b0400333 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 10mm__C4k_1.90by1_4096x2160-24.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 10mm__C4k_1.90by1_4096x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Артур Ефремов", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 10mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 17mm T1.9__4k_16by9_3840x2160-60.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 17mm T1.9__4k_16by9_3840x2160-60.00fps.json index 35bbf4ca..0c50b9e2 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 17mm T1.9__4k_16by9_3840x2160-60.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 17mm T1.9__4k_16by9_3840x2160-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "iFlight", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 17mm T1.9", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 17mm f1.8__4k_16by9_3840x2160-24.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 17mm f1.8__4k_16by9_3840x2160-24.00fps.json index 948417ab..5055f819 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 17mm f1.8__4k_16by9_3840x2160-24.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 17mm f1.8__4k_16by9_3840x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Justin Kramer", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 17mm f1.8", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 6mm 2.1__1080p_16by9_1920x1080-50.00fps - 2.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 6mm 2.1__1080p_16by9_1920x1080-50.00fps - 2.json index 7173a81d..49b0b6cd 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 6mm 2.1__1080p_16by9_1920x1080-50.00fps - 2.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 6mm 2.1__1080p_16by9_1920x1080-50.00fps - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "大师兄", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 6mm 2.1", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 6mm T2.1_DCI Prores LT_C4k_1.90by1_4096x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 6mm T2.1_DCI Prores LT_C4k_1.90by1_4096x2160-50.00fps.json index a9be3929..a3b7d655 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 6mm T2.1_DCI Prores LT_C4k_1.90by1_4096x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 6mm T2.1_DCI Prores LT_C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Taruma Tribudiman", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 6mm T2.1", "camera_setting": "DCI Prores LT", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 6mm T2.1_Prores 422 DCI 4096 x_C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 6mm T2.1_Prores 422 DCI 4096 x_C4k_1.90by1_4096x2160-25.00fps.json index cd90b458..19ddeeea 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 6mm T2.1_Prores 422 DCI 4096 x_C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 6mm T2.1_Prores 422 DCI 4096 x_C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Taruma Tribudiman", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 6mm T2.1", "camera_setting": "Prores 422 DCI 4096 x", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 6mm T2.1_Prores 422 DCI 4096 x_C4k_1.90by1_4096x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 6mm T2.1_Prores 422 DCI 4096 x_C4k_1.90by1_4096x2160-50.00fps.json index 84d0e8fd..b0a002a0 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 6mm T2.1_Prores 422 DCI 4096 x_C4k_1.90by1_4096x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 6mm T2.1_Prores 422 DCI 4096 x_C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Taruma Tribudiman", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 6mm T2.1", "camera_setting": "Prores 422 DCI 4096 x", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 6mm T2.1_Prores HQ DCI 4096 x_C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 6mm T2.1_Prores HQ DCI 4096 x_C4k_1.90by1_4096x2160-25.00fps.json index c225a1ac..bb941221 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 6mm T2.1_Prores HQ DCI 4096 x_C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 6mm T2.1_Prores HQ DCI 4096 x_C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Taruma Tribudiman", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 6mm T2.1", "camera_setting": "Prores HQ DCI 4096 x", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 6mm T2.1_Prores LT DCI 4096 x_C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 6mm T2.1_Prores LT DCI 4096 x_C4k_1.90by1_4096x2160-25.00fps.json index 16037926..6a33935e 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 6mm T2.1_Prores LT DCI 4096 x_C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 6mm T2.1_Prores LT DCI 4096 x_C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Taruma Tribudiman", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 6mm T2.1", "camera_setting": "Prores LT DCI 4096 x", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5 mm f2.0__1080p_16by9_1920x1080-24.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5 mm f2.0__1080p_16by9_1920x1080-24.00fps.json index 5f937521..0fc7e2ab 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5 mm f2.0__1080p_16by9_1920x1080-24.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5 mm f2.0__1080p_16by9_1920x1080-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Beto Lorca", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 7.5 mm f2.0", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5 mm f2.0__C4k_1.90by1_4096x2160-0.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5 mm f2.0__C4k_1.90by1_4096x2160-0.00fps.json index 4cb41557..d4c1121a 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5 mm f2.0__C4k_1.90by1_4096x2160-0.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5 mm f2.0__C4k_1.90by1_4096x2160-0.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Sofian Chiaravalloti", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 7.5 mm f2.0", "camera_setting": "", "calibrator_version": "0.3.0-beta", diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5 mm_uhd 50fps raw 8_1_4k_16by9_3840x2160-25.00fps - Matteo AREA39.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5 mm_uhd 50fps raw 8_1_4k_16by9_3840x2160-25.00fps - Matteo AREA39.json index 3b26e529..adb0968d 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5 mm_uhd 50fps raw 8_1_4k_16by9_3840x2160-25.00fps - Matteo AREA39.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5 mm_uhd 50fps raw 8_1_4k_16by9_3840x2160-25.00fps - Matteo AREA39.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Matteo AREA39", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 7.5 mm", "camera_setting": "uhd 50fps raw 8:1", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5 mm_uhd raw 8_1_4k_16by9_3840x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5 mm_uhd raw 8_1_4k_16by9_3840x2160-25.00fps.json index 43428784..fe3a9502 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5 mm_uhd raw 8_1_4k_16by9_3840x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5 mm_uhd raw 8_1_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Matteo AREA39", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 7.5 mm", "camera_setting": "uhd raw 8:1", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm F2.0_BRAW DCI_C4k_1.90by1_4096x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm F2.0_BRAW DCI_C4k_1.90by1_4096x2160-50.00fps.json index a0906688..c7c5d0ce 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm F2.0_BRAW DCI_C4k_1.90by1_4096x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm F2.0_BRAW DCI_C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "16.2ms - 4K Readout", "calibrated_by": "Jakob.FPV", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 7.5mm F2.0", "camera_setting": "BRAW DCI", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm F2.0_BRAW_C4k_1.90by1_4096x2160-60.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm F2.0_BRAW_C4k_1.90by1_4096x2160-60.00fps.json index 5909f054..71ec7445 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm F2.0_BRAW_C4k_1.90by1_4096x2160-60.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm F2.0_BRAW_C4k_1.90by1_4096x2160-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Alexander Lojewski", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 7.5mm F2.0", "camera_setting": "BRAW", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm F2.0_DCI_C4k_1.90by1_4096x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm F2.0_DCI_C4k_1.90by1_4096x2160-50.00fps.json index 7d405336..20432818 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm F2.0_DCI_C4k_1.90by1_4096x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm F2.0_DCI_C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "32.43 ms Readout", "calibrated_by": "Jakob.FPV", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 7.5mm F2.0", "camera_setting": "DCI", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm MFT F2_DCI ProRes 422_C4k_1.90by1_4096x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm MFT F2_DCI ProRes 422_C4k_1.90by1_4096x2160-50.00fps.json index ad196dbb..9d040b7b 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm MFT F2_DCI ProRes 422_C4k_1.90by1_4096x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm MFT F2_DCI ProRes 422_C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Pim Bijl", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 7.5mm MFT F2", "camera_setting": "DCI ProRes 422", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm f2 mtf_f2 - 30fps_C4k_1.90by1_4096x2160-30.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm f2 mtf_f2 - 30fps_C4k_1.90by1_4096x2160-30.00fps.json index 872785e8..c696dd9b 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm f2 mtf_f2 - 30fps_C4k_1.90by1_4096x2160-30.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm f2 mtf_f2 - 30fps_C4k_1.90by1_4096x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "f2 - 30fps", "calibrated_by": "Carlo Carboni", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 7.5mm f2 mtf", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm f2.0_1096x 8_1 BRAW_C4k_1.90by1_4096x2160-60.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm f2.0_1096x 8_1 BRAW_C4k_1.90by1_4096x2160-60.00fps.json index 04276321..ad367aae 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm f2.0_1096x 8_1 BRAW_C4k_1.90by1_4096x2160-60.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm f2.0_1096x 8_1 BRAW_C4k_1.90by1_4096x2160-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Alexander Lojewski", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 7.5mm f2.0", "camera_setting": "1096x 8:1 BRAW", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm f2.0__4k_16by9_3840x2160-24.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm f2.0__4k_16by9_3840x2160-24.00fps.json index 17783b03..fda95d67 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm f2.0__4k_16by9_3840x2160-24.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm f2.0__4k_16by9_3840x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Justin Kramer", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 7.5mm f2.0", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm f2.0__C4k_1.90by1_4096x2160-25.00fps - DiWhite.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm f2.0__C4k_1.90by1_4096x2160-25.00fps - DiWhite.json index 5379e547..630846cd 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm f2.0__C4k_1.90by1_4096x2160-25.00fps - DiWhite.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm f2.0__C4k_1.90by1_4096x2160-25.00fps - DiWhite.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "DiWhite", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 7.5mm f2.0", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm f2.1T_Res 2048x1080_2k_1.90by1_2048x1080-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm f2.1T_Res 2048x1080_2k_1.90by1_2048x1080-50.00fps.json index aa0985d6..73c84564 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm f2.1T_Res 2048x1080_2k_1.90by1_2048x1080-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm f2.1T_Res 2048x1080_2k_1.90by1_2048x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "Res 2048x1080", "calibrated_by": "Ruben Van der Meeren", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 7.5mm f/2.1T", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm f2_BRAW_C4k_1.90by1_4096x2160-23.98fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm f2_BRAW_C4k_1.90by1_4096x2160-23.98fps.json index af8f2a04..eeb2d976 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm f2_BRAW_C4k_1.90by1_4096x2160-23.98fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm f2_BRAW_C4k_1.90by1_4096x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ian Tunney", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 7.5mm f/2", "camera_setting": "BRAW", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm_50FPS_4k_16by9_3840x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm_50FPS_4k_16by9_3840x2160-50.00fps.json index 60196c33..2805fc42 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm_50FPS_4k_16by9_3840x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm_50FPS_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "50FPS", "calibrated_by": "Jonathan Teo", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 7.5mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm_BRAW 8.1_C4k_2.38by1_4096x1720-24.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm_BRAW 8.1_C4k_2.38by1_4096x1720-24.00fps.json index 737ecb62..34182e5f 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm_BRAW 8.1_C4k_2.38by1_4096x1720-24.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm_BRAW 8.1_C4k_2.38by1_4096x1720-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Braulio Lorenzo", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 7.5mm", "camera_setting": "BRAW 8.1", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm_Calibration done at 12_1_1080p_1.90by1_1920x1012-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm_Calibration done at 12_1_1080p_1.90by1_1920x1012-50.00fps.json index 0620959b..31b54916 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm_Calibration done at 12_1_1080p_1.90by1_1920x1012-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm_Calibration done at 12_1_1080p_1.90by1_1920x1012-50.00fps.json @@ -3,7 +3,7 @@ "note": "Calibration done at 12:1", "calibrated_by": "Giovanni Strondl", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 7.5mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm_ProRes 422_4k_16by9_3840x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm_ProRes 422_4k_16by9_3840x2160-25.00fps.json index a9916277..d2a8f743 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm_ProRes 422_4k_16by9_3840x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm_ProRes 422_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "25FPS", "calibrated_by": "Jonathan Teo", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 7.5mm", "camera_setting": "ProRes 422", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm_ProRes_C4k_1.90by1_4096x2160-24.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm_ProRes_C4k_1.90by1_4096x2160-24.00fps.json index 64643997..6f5ab113 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm_ProRes_C4k_1.90by1_4096x2160-24.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm_ProRes_C4k_1.90by1_4096x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Brandan FPV", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 7.5mm", "camera_setting": "ProRes", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm__1080p_16by9_1920x1080-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm__1080p_16by9_1920x1080-25.00fps.json index 2b19cf60..995023f2 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm__1080p_16by9_1920x1080-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Lancelot Tintignies", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 7.5mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm__4k_16by9_3840x2160-24.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm__4k_16by9_3840x2160-24.00fps.json index 0822b54f..8ff25451 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm__4k_16by9_3840x2160-24.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm__4k_16by9_3840x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "brandan boynton", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 7.5mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm__4k_16by9_3840x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm__4k_16by9_3840x2160-25.00fps.json index ff12db62..cb7872ba 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm__4k_16by9_3840x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Lancelot Tintignies", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 7.5mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm__4k_16by9_3840x2160-60.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm__4k_16by9_3840x2160-60.00fps.json index ab34b422..e9970f8a 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm__4k_16by9_3840x2160-60.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm__4k_16by9_3840x2160-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jonathan Teo", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 7.5mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm__C4k_1.90by1_4096x2160-60.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm__C4k_1.90by1_4096x2160-60.00fps.json index bf67d574..27bf985d 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm__C4k_1.90by1_4096x2160-60.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7.5mm__C4k_1.90by1_4096x2160-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jonathan Teo", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 7.5mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7mm 2.1T_DCI 4096 x Prores HQ_C4k_1.90by1_4096x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7mm 2.1T_DCI 4096 x Prores HQ_C4k_1.90by1_4096x2160-50.00fps.json index 7c81e87b..2e604729 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7mm 2.1T_DCI 4096 x Prores HQ_C4k_1.90by1_4096x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 7mm 2.1T_DCI 4096 x Prores HQ_C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Taruma Tribudiman", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 7mm 2.1T", "camera_setting": "DCI 4096 x Prores HQ", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm 2.8_BRAW_4k_16by9_3840x2160-60.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm 2.8_BRAW_4k_16by9_3840x2160-60.00fps.json index 9bd438d0..ff8d5db2 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm 2.8_BRAW_4k_16by9_3840x2160-60.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm 2.8_BRAW_4k_16by9_3840x2160-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Mike Hirsch", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 9mm 2.8", "camera_setting": "BRAW", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm F2.8_ProRes LT_C4k_1.90by1_4096x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm F2.8_ProRes LT_C4k_1.90by1_4096x2160-50.00fps.json index 80f6b5fd..00d77f8d 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm F2.8_ProRes LT_C4k_1.90by1_4096x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm F2.8_ProRes LT_C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ivan Getz Papa", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 9mm F2.8", "camera_setting": "ProRes LT", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm MFT__4k_16by9_3840x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm MFT__4k_16by9_3840x2160-50.00fps.json index 7c7c8972..96438483 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm MFT__4k_16by9_3840x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm MFT__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Harry Clifton", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 9mm MFT", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm ZeroD_DCI_C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm ZeroD_DCI_C4k_1.90by1_4096x2160-25.00fps.json index 38177bfb..1651655e 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm ZeroD_DCI_C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm ZeroD_DCI_C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Cst FPV", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 9mm ZeroD", "camera_setting": "DCI", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm f 2.8__C4k_1.90by1_4096x2160-23.98fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm f 2.8__C4k_1.90by1_4096x2160-23.98fps.json index 7f8256f1..3c877920 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm f 2.8__C4k_1.90by1_4096x2160-23.98fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm f 2.8__C4k_1.90by1_4096x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Swissframes", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 9mm f 2.8", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm f2.8_3_1_4k_16by9_3840x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm f2.8_3_1_4k_16by9_3840x2160-50.00fps.json index 2bcfc4b7..43942e46 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm f2.8_3_1_4k_16by9_3840x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm f2.8_3_1_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "3:1", "calibrated_by": "Oleksandr", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 9mm f/2.8", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm f2.8_DCI_C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm f2.8_DCI_C4k_1.90by1_4096x2160-25.00fps.json index 474432f6..7fe4543e 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm f2.8_DCI_C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm f2.8_DCI_C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Oleksandr", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 9mm f/2.8", "camera_setting": "DCI", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm f2.8__4k_16by9_3840x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm f2.8__4k_16by9_3840x2160-25.00fps.json index a1c68834..9497bb8c 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm f2.8__4k_16by9_3840x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm f2.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Oleksandr", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 9mm f/2.8", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm_DCI_C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm_DCI_C4k_1.90by1_4096x2160-25.00fps.json index 28b51a6f..f135755c 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm_DCI_C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm_DCI_C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "alexandre auclair", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 9mm", "camera_setting": "DCI", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm__1080p_16by9_1920x1080-23.98fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm__1080p_16by9_1920x1080-23.98fps.json index 08bdb56f..3c17e01f 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm__1080p_16by9_1920x1080-23.98fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa 9mm__1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Harry Clifton", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa 9mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa Cine 7.5mm T2.1__4k_16by9_3840x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa Cine 7.5mm T2.1__4k_16by9_3840x2160-50.00fps.json index 9ad967fe..81868684 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa Cine 7.5mm T2.1__4k_16by9_3840x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa Cine 7.5mm T2.1__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Dion Simon", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa Cine 7.5mm T2.1", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa FF14mm F4__C4k_1.90by1_4096x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa FF14mm F4__C4k_1.90by1_4096x2160-50.00fps.json index 2273390a..b2d14057 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa FF14mm F4__C4k_1.90by1_4096x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa FF14mm F4__C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "胤陈", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa FF14mm F4", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa FF14mm_C_C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa FF14mm_C_C4k_1.90by1_4096x2160-25.00fps.json index 6ac7ce47..16c5e407 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa FF14mm_C_C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Laowa FF14mm_C_C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Vview", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Laowa FF14mm", "camera_setting": "C", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix 12-35 2.8_Lens at 35mm_4k_16by9_3840x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix 12-35 2.8_Lens at 35mm_4k_16by9_3840x2160-50.00fps.json index 01f71223..37b81c6a 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix 12-35 2.8_Lens at 35mm_4k_16by9_3840x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix 12-35 2.8_Lens at 35mm_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "Lens at 35mm", "calibrated_by": "Darren Varney", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Lumix 12-35 2.8", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix 12-35 f2.2_Proxy_1080p_16by9_1920x1080-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix 12-35 f2.2_Proxy_1080p_16by9_1920x1080-50.00fps.json index dae1cce3..21299a75 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix 12-35 f2.2_Proxy_1080p_16by9_1920x1080-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix 12-35 f2.2_Proxy_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "Proxy", "calibrated_by": "Darren Varney", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Lumix 12-35 f2.2", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix 12-35_12_C4k_1.90by1_4096x2160-60.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix 12-35_12_C4k_1.90by1_4096x2160-60.00fps.json index aa05c7d6..03dec83e 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix 12-35_12_C4k_1.90by1_4096x2160-60.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix 12-35_12_C4k_1.90by1_4096x2160-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Valentin Holz", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Lumix 12-35", "camera_setting": "12", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix 12-35_Prores Proxy 420_C4k_1.90by1_4096x2160-60.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix 12-35_Prores Proxy 420_C4k_1.90by1_4096x2160-60.00fps.json index 49dddb6c..9a618af2 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix 12-35_Prores Proxy 420_C4k_1.90by1_4096x2160-60.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix 12-35_Prores Proxy 420_C4k_1.90by1_4096x2160-60.00fps.json @@ -3,7 +3,7 @@ "note": "Shutter 180°", "calibrated_by": "Valentin Holz", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Lumix 12-35", "camera_setting": "Prores Proxy 420", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix 20mm 1.33 Anamorphic_4k DCI 24_C4k_1.90by1_4096x2160-24.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix 20mm 1.33 Anamorphic_4k DCI 24_C4k_1.90by1_4096x2160-24.00fps.json index 20025f7b..ace027ab 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix 20mm 1.33 Anamorphic_4k DCI 24_C4k_1.90by1_4096x2160-24.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix 20mm 1.33 Anamorphic_4k DCI 24_C4k_1.90by1_4096x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Blackbug Digital", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Lumix 20mm 1.33 Anamorphic", "camera_setting": "4k DCI 24", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix 20mm_Shutter 160 Blende f3,8_C4k_1.90by1_4096x2160-30.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix 20mm_Shutter 160 Blende f3,8_C4k_1.90by1_4096x2160-30.00fps.json index 16acdd27..eedf9f15 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix 20mm_Shutter 160 Blende f3,8_C4k_1.90by1_4096x2160-30.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix 20mm_Shutter 160 Blende f3,8_C4k_1.90by1_4096x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "Shutter 1/60 Blende f/3,8", "calibrated_by": "Basil Möhring", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Lumix 20mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix_ProRes LT Ultra HD_4k_16by9_3840x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix_ProRes LT Ultra HD_4k_16by9_3840x2160-50.00fps.json index 56fa9b69..0bd4aba5 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix_ProRes LT Ultra HD_4k_16by9_3840x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Lumix_ProRes LT Ultra HD_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Darren Varney", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Lumix", "camera_setting": "ProRes LT Ultra HD", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_MEIKE MICRO CINE_C_C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_MEIKE MICRO CINE_C_C4k_1.90by1_4096x2160-25.00fps.json index b6d282fb..e9656dab 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_MEIKE MICRO CINE_C_C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_MEIKE MICRO CINE_C_C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "16mm T2.2", "calibrated_by": "SIRIUS", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "MEIKE MICRO CINE", "camera_setting": "C", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_MFT Laowa 10mm F2.0_4k ProRes_C4k_1.90by1_4096x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_MFT Laowa 10mm F2.0_4k ProRes_C4k_1.90by1_4096x2160-50.00fps.json index 8e1be593..132828cf 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_MFT Laowa 10mm F2.0_4k ProRes_C4k_1.90by1_4096x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_MFT Laowa 10mm F2.0_4k ProRes_C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Franck Moissonnier", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "MFT Laowa 10mm F2.0", "camera_setting": "4k ProRes", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Meike 12mm T2.2__4k_16by9_3840x2160-24.90fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Meike 12mm T2.2__4k_16by9_3840x2160-24.90fps.json index 7d1b9d9b..01045f1a 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Meike 12mm T2.2__4k_16by9_3840x2160-24.90fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Meike 12mm T2.2__4k_16by9_3840x2160-24.90fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Denis Tonetto", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Meike 12mm T2.2", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Meike 25mm f2.2_16_9_2.5k_16by9_2688x1512-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Meike 25mm f2.2_16_9_2.5k_16by9_2688x1512-25.00fps.json index 50ee50dd..b53d5d0d 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Meike 25mm f2.2_16_9_2.5k_16by9_2688x1512-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Meike 25mm f2.2_16_9_2.5k_16by9_2688x1512-25.00fps.json @@ -3,7 +3,7 @@ "note": "16:9", "calibrated_by": "DiWhite", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Meike 25mm f2.2", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Meike 8mm T2.9_DCI 4k_C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Meike 8mm T2.9_DCI 4k_C4k_1.90by1_4096x2160-25.00fps.json index 52c41a4b..2f6bc6a4 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Meike 8mm T2.9_DCI 4k_C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Meike 8mm T2.9_DCI 4k_C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Kyrios Lim", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Meike 8mm T2.9", "camera_setting": "DCI 4k", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Meke f1.4 35mm_BRAW_C4k_1.90by1_4096x2160-24.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Meke f1.4 35mm_BRAW_C4k_1.90by1_4096x2160-24.00fps.json index 72080540..e6974995 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Meke f1.4 35mm_BRAW_C4k_1.90by1_4096x2160-24.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Meke f1.4 35mm_BRAW_C4k_1.90by1_4096x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Helix DroneWorks", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Meke f1.4 35mm", "camera_setting": "BRAW", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Navitar 6mm_PRORES_4k_16by9_3840x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Navitar 6mm_PRORES_4k_16by9_3840x2160-50.00fps.json index b5d32f3b..887f7347 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Navitar 6mm_PRORES_4k_16by9_3840x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Navitar 6mm_PRORES_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "PRORES", "calibrated_by": "Darren Varney", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Navitar 6mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 12-40 f2,8_4k 59fps_C4k_1.90by1_4096x2160-59.94fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 12-40 f2,8_4k 59fps_C4k_1.90by1_4096x2160-59.94fps.json index e006ae9c..7ef662a7 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 12-40 f2,8_4k 59fps_C4k_1.90by1_4096x2160-59.94fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 12-40 f2,8_4k 59fps_C4k_1.90by1_4096x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "14mm", "calibrated_by": "Александр Воронков", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Olympus 12-40 f2,8", "camera_setting": "4k 59fps", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 12-40 f2,8_4k_C4k_1.90by1_4096x2160-59.94fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 12-40 f2,8_4k_C4k_1.90by1_4096x2160-59.94fps.json index 377d099b..32a24d06 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 12-40 f2,8_4k_C4k_1.90by1_4096x2160-59.94fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 12-40 f2,8_4k_C4k_1.90by1_4096x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "12mm", "calibrated_by": "Александр Воронков", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Olympus 12-40 f2,8", "camera_setting": "4k", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 12mm 2.0__4k_16by9_3840x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 12mm 2.0__4k_16by9_3840x2160-25.00fps.json index 4e7357f9..2713be02 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 12mm 2.0__4k_16by9_3840x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 12mm 2.0__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Geert Claas", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Olympus 12mm 2.0", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 12mm F2.0_DCI_C4k_1.90by1_4096x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 12mm F2.0_DCI_C4k_1.90by1_4096x2160-50.00fps.json index 4b9e5274..79df0ebb 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 12mm F2.0_DCI_C4k_1.90by1_4096x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 12mm F2.0_DCI_C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Pim Bijl", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Olympus 12mm F2.0", "camera_setting": "DCI", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 17mm f1.8_DCI_C4k_1.90by1_4096x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 17mm f1.8_DCI_C4k_1.90by1_4096x2160-50.00fps.json index 71dfb9a4..9690b069 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 17mm f1.8_DCI_C4k_1.90by1_4096x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 17mm f1.8_DCI_C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "50fps", "calibrated_by": "wt04_reddragon", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Olympus 17mm f1.8", "camera_setting": "DCI", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 45mm 1.8__4k_16by9_3840x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 45mm 1.8__4k_16by9_3840x2160-25.00fps.json index ece1ae4d..7e089b81 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 45mm 1.8__4k_16by9_3840x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 45mm 1.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Geert Claas", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Olympus 45mm 1.8", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 45mm_4k DCI_C4k_1.90by1_4096x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 45mm_4k DCI_C4k_1.90by1_4096x2160-50.00fps.json index e5bc6310..076e567a 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 45mm_4k DCI_C4k_1.90by1_4096x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 45mm_4k DCI_C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Luigi Massimo Nuzzaci", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Olympus 45mm", "camera_setting": "4k DCI", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 9mm f8 Fisheye Body Cap__C4k_1.90by1_4096x2160-59.94fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 9mm f8 Fisheye Body Cap__C4k_1.90by1_4096x2160-59.94fps.json index b2f71bd6..3cf58e69 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 9mm f8 Fisheye Body Cap__C4k_1.90by1_4096x2160-59.94fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Olympus 9mm f8 Fisheye Body Cap__C4k_1.90by1_4096x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Sandros94", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Olympus 9mm f8 Fisheye Body Cap", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Pananonic 25mm (x2 crop factor)__4k_16by9_3840x2160-29.97fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Pananonic 25mm (x2 crop factor)__4k_16by9_3840x2160-29.97fps.json index 1fdef13c..cde5063a 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Pananonic 25mm (x2 crop factor)__4k_16by9_3840x2160-29.97fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Pananonic 25mm (x2 crop factor)__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ian Rinefort", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Pananonic 25mm (x2 crop factor)", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic 15mm_60FPS_4k_16by9_3840x2160-60.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic 15mm_60FPS_4k_16by9_3840x2160-60.00fps.json index 0d26168a..40871dc1 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic 15mm_60FPS_4k_16by9_3840x2160-60.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic 15mm_60FPS_4k_16by9_3840x2160-60.00fps.json @@ -3,7 +3,7 @@ "note": "60FPS", "calibrated_by": "Jonathan Teo", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Panasonic 15mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic 714mm f4 set on 9mm_ProRes 422 lens at 9mm_C4k_1.90by1_4096x2160-23.98fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic 714mm f4 set on 9mm_ProRes 422 lens at 9mm_C4k_1.90by1_4096x2160-23.98fps.json index 05922ffb..2683e29f 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic 714mm f4 set on 9mm_ProRes 422 lens at 9mm_C4k_1.90by1_4096x2160-23.98fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic 714mm f4 set on 9mm_ProRes 422 lens at 9mm_C4k_1.90by1_4096x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "@andres.umpierrez", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Panasonic 7/14mm f4 set on 9mm", "camera_setting": "ProRes 422 lens at 9mm", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic H-ES12060E 12-60mmF2.8-4.0__4k_16by9_3840x2160-30.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic H-ES12060E 12-60mmF2.8-4.0__4k_16by9_3840x2160-30.00fps.json index 13a13b9e..afe23031 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic H-ES12060E 12-60mmF2.8-4.0__4k_16by9_3840x2160-30.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic H-ES12060E 12-60mmF2.8-4.0__4k_16by9_3840x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rise FPV", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Panasonic H-ES12060E 12-60mm/F2.8-4.0", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic H-X015__C4k_1.90by1_4096x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic H-X015__C4k_1.90by1_4096x2160-50.00fps.json index 89e903d1..c73cb187 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic H-X015__C4k_1.90by1_4096x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic H-X015__C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jonas Klein", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Panasonic H-X015", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic Leica 10-25_ProRes HQ Ultra HD_4k_16by9_3840x2160-30.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic Leica 10-25_ProRes HQ Ultra HD_4k_16by9_3840x2160-30.00fps.json index 5a4388ae..a73d2744 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic Leica 10-25_ProRes HQ Ultra HD_4k_16by9_3840x2160-30.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic Leica 10-25_ProRes HQ Ultra HD_4k_16by9_3840x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "10mm with crop x2 = 20mm", "calibrated_by": "user", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Panasonic Leica 10-25", "camera_setting": "ProRes HQ Ultra HD", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic Lumix G X 12-35 f2.8 @12mm_4k Sensor Window_1080p_16by9_1920x1080-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic Lumix G X 12-35 f2.8 @12mm_4k Sensor Window_1080p_16by9_1920x1080-50.00fps.json index 37087201..e505f286 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic Lumix G X 12-35 f2.8 @12mm_4k Sensor Window_1080p_16by9_1920x1080-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic Lumix G X 12-35 f2.8 @12mm_4k Sensor Window_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Andrew", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Panasonic Lumix G X 12-35 f2.8 @12mm", "camera_setting": "4k Sensor Window", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic Lumix G X Vario PZ 14-42mm f3.5-5.6 ASPH. O.I.S._@12mm_C4k_2.38by1_4096x1720-30.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic Lumix G X Vario PZ 14-42mm f3.5-5.6 ASPH. O.I.S._@12mm_C4k_2.38by1_4096x1720-30.00fps.json index e6d3f547..6de08eca 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic Lumix G X Vario PZ 14-42mm f3.5-5.6 ASPH. O.I.S._@12mm_C4k_2.38by1_4096x1720-30.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic Lumix G X Vario PZ 14-42mm f3.5-5.6 ASPH. O.I.S._@12mm_C4k_2.38by1_4096x1720-30.00fps.json @@ -3,7 +3,7 @@ "note": "@12mm", "calibrated_by": "Bee", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Panasonic Lumix G X Vario PZ 14-42mm f/3.5-5.6 ASPH. POWER O.I.S.", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic Lumix Vario G X III 12-35mm f2.8__4k_16by9_3840x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic Lumix Vario G X III 12-35mm f2.8__4k_16by9_3840x2160-50.00fps.json index 52575805..14f14274 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic Lumix Vario G X III 12-35mm f2.8__4k_16by9_3840x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Panasonic Lumix Vario G X III 12-35mm f2.8__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Andrew", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Panasonic Lumix Vario G X III 12-35mm f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Rokinon 12mm T2.2_DCI Prores Proxy8_C4k_1.90by1_4096x2160-23.98fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Rokinon 12mm T2.2_DCI Prores Proxy8_C4k_1.90by1_4096x2160-23.98fps.json index 9134e368..e8bc0885 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Rokinon 12mm T2.2_DCI Prores Proxy8_C4k_1.90by1_4096x2160-23.98fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Rokinon 12mm T2.2_DCI Prores Proxy8_C4k_1.90by1_4096x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "4096X2160", "calibrated_by": "Paco FPV", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Rokinon 12mm T2.2", "camera_setting": "DCI Prores Proxy8", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_SLR MAGIC 8mm__C4k_1.90by1_4096x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_SLR MAGIC 8mm__C4k_1.90by1_4096x2160-50.00fps.json index fec9d25c..ebc04f73 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_SLR MAGIC 8mm__C4k_1.90by1_4096x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_SLR MAGIC 8mm__C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "@santios", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "SLR MAGIC 8mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_SLR Magic 8mm f4.0 Ultra Wide Angle MFT__4k_16by9_3840x2160-29.33fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_SLR Magic 8mm f4.0 Ultra Wide Angle MFT__4k_16by9_3840x2160-29.33fps.json index 36f0afb7..268767c3 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_SLR Magic 8mm f4.0 Ultra Wide Angle MFT__4k_16by9_3840x2160-29.33fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_SLR Magic 8mm f4.0 Ultra Wide Angle MFT__4k_16by9_3840x2160-29.33fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Cameron Goldberg", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "SLR Magic 8mm f/4.0 Ultra Wide Angle MFT", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_SLR Magic 8mm f4.0__C4k_1.90by1_4096x2160-60.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_SLR Magic 8mm f4.0__C4k_1.90by1_4096x2160-60.00fps.json index 5afc0343..e59bef87 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_SLR Magic 8mm f4.0__C4k_1.90by1_4096x2160-60.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_SLR Magic 8mm f4.0__C4k_1.90by1_4096x2160-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Cameron Goldberg", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "SLR Magic 8mm f4.0", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_SRL Magic 8mm F4_C_C4k_1.90by1_4096x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_SRL Magic 8mm F4_C_C4k_1.90by1_4096x2160-50.00fps.json index b54ee9fd..13965a64 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_SRL Magic 8mm F4_C_C4k_1.90by1_4096x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_SRL Magic 8mm F4_C_C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Druno", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "SRL Magic 8mm F4", "camera_setting": "C", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Samyang 12mm f2_4k ProRes HQ_C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Samyang 12mm f2_4k ProRes HQ_C4k_1.90by1_4096x2160-25.00fps.json index f3b69953..84b427fc 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Samyang 12mm f2_4k ProRes HQ_C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Samyang 12mm f2_4k ProRes HQ_C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "W'Drone Production", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Samyang 12mm f2", "camera_setting": "4k ProRes HQ", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Samyang 16mm__C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Samyang 16mm__C4k_1.90by1_4096x2160-25.00fps.json index ff228f24..a77baf34 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Samyang 16mm__C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Samyang 16mm__C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Admin", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Samyang 16mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Samyang 24mm__4k_16by9_3840x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Samyang 24mm__4k_16by9_3840x2160-25.00fps.json index e250481a..9db7de29 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Samyang 24mm__4k_16by9_3840x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Samyang 24mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Clepimedia", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Samyang 24mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Samyang 35mm__4k_16by9_3840x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Samyang 35mm__4k_16by9_3840x2160-25.00fps.json index 4aef55e4..4144bfb7 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Samyang 35mm__4k_16by9_3840x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Samyang 35mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Clepimedia", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Samyang 35mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Samyang 85mm__4k_16by9_3840x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Samyang 85mm__4k_16by9_3840x2160-25.00fps.json index ac60918a..3147947c 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Samyang 85mm__4k_16by9_3840x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Samyang 85mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Clemens Pilch", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Samyang 85mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 14mm f1.8 DG HSM Art_DCI 2.4_1_C4k_2.38by1_4096x1720-60.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 14mm f1.8 DG HSM Art_DCI 2.4_1_C4k_2.38by1_4096x1720-60.00fps.json index e223cbce..dc2dced5 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 14mm f1.8 DG HSM Art_DCI 2.4_1_C4k_2.38by1_4096x1720-60.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 14mm f1.8 DG HSM Art_DCI 2.4_1_C4k_2.38by1_4096x1720-60.00fps.json @@ -3,7 +3,7 @@ "note": "Metabones XL Cinema", "calibrated_by": "Hancuff Cinematic", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Sigma 14mm f1.8 DG HSM Art", "camera_setting": "DCI 2.4:1", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 14mm f1.8_DCI 2.4_1_C4k_2.38by1_4096x1720-24.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 14mm f1.8_DCI 2.4_1_C4k_2.38by1_4096x1720-24.00fps.json index 5fc7ce17..e161379a 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 14mm f1.8_DCI 2.4_1_C4k_2.38by1_4096x1720-24.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 14mm f1.8_DCI 2.4_1_C4k_2.38by1_4096x1720-24.00fps.json @@ -3,7 +3,7 @@ "note": "Metabones XL Cinema", "calibrated_by": "Hancuff Cinematic", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Sigma 14mm f/1.8", "camera_setting": "DCI 2.4:1", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 16mm__C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 16mm__C4k_1.90by1_4096x2160-25.00fps.json index e920bc06..1d9d8b19 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 16mm__C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 16mm__C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Hp", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Sigma 16mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 18-35 VILTROX @ 35mm__C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 18-35 VILTROX @ 35mm__C4k_1.90by1_4096x2160-25.00fps.json index 72673d65..90211853 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 18-35 VILTROX @ 35mm__C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 18-35 VILTROX @ 35mm__C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "LEOS", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Sigma 18-35 VILTROX @ 35mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 18-35_18mm w .64x Speedbooster_4k_16by9_3840x2160-29.97fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 18-35_18mm w .64x Speedbooster_4k_16by9_3840x2160-29.97fps.json index cc174daf..0a3abc30 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 18-35_18mm w .64x Speedbooster_4k_16by9_3840x2160-29.97fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 18-35_18mm w .64x Speedbooster_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Kyle Kearns", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Sigma 18-35", "camera_setting": "18mm w/ .64x Speedbooster", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 18-35_18mm_C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 18-35_18mm_C4k_1.90by1_4096x2160-25.00fps.json index c56b45f6..b18015a0 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 18-35_18mm_C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 18-35_18mm_C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Marco", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Sigma 18-35", "camera_setting": "18mm", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 18-35mm 1.8 (without speedbooster)_1100 1.8_4k_16by9_3840x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 18-35mm 1.8 (without speedbooster)_1100 1.8_4k_16by9_3840x2160-50.00fps.json index e6f472a9..2b676c53 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 18-35mm 1.8 (without speedbooster)_1100 1.8_4k_16by9_3840x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 18-35mm 1.8 (without speedbooster)_1100 1.8_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "@18mm (=36mm)", "calibrated_by": "Marco Milling", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Sigma 18-35mm 1.8 (without speedbooster)", "camera_setting": "1/100 1.8", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 18-50mm f2.8-4.5_8_1_4k_16by9_3840x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 18-50mm f2.8-4.5_8_1_4k_16by9_3840x2160-25.00fps.json index 24cf60a9..528a64fe 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 18-50mm f2.8-4.5_8_1_4k_16by9_3840x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 18-50mm f2.8-4.5_8_1_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "12mm Speedboosted", "calibrated_by": "Oleksandr", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Sigma 18-50mm f2.8-4.5", "camera_setting": "8:1", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 18mm_Prores Proxy_4k_16by9_3840x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 18mm_Prores Proxy_4k_16by9_3840x2160-25.00fps.json index b03f91e7..719b8bdf 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 18mm_Prores Proxy_4k_16by9_3840x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 18mm_Prores Proxy_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Reto Schmidli", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Sigma 18mm", "camera_setting": "Prores Proxy", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 24-105 f4 with Viltrox 0.71x Speedbooster_24mm_4k_16by9_3840x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 24-105 f4 with Viltrox 0.71x Speedbooster_24mm_4k_16by9_3840x2160-50.00fps.json index 8e79e52a..c2b8f61f 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 24-105 f4 with Viltrox 0.71x Speedbooster_24mm_4k_16by9_3840x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma 24-105 f4 with Viltrox 0.71x Speedbooster_24mm_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "24mm", "calibrated_by": "Joseph Shrimpton", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Sigma 24-105 f/4 with Viltrox 0.71x Speedbooster", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma EX DC HSM 10-20 f3.5_@10mm_C4k_1.90by1_4096x2160-60.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma EX DC HSM 10-20 f3.5_@10mm_C4k_1.90by1_4096x2160-60.00fps.json index 0e6e8b10..d271458c 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma EX DC HSM 10-20 f3.5_@10mm_C4k_1.90by1_4096x2160-60.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sigma EX DC HSM 10-20 f3.5_@10mm_C4k_1.90by1_4096x2160-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Thomas Boland", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Sigma EX DC HSM 10-20 f/3.5", "camera_setting": "@10mm", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sirui Anamorphic 24mm__4k_16by9_3840x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sirui Anamorphic 24mm__4k_16by9_3840x2160-25.00fps.json index 7e8305ae..a1687376 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sirui Anamorphic 24mm__4k_16by9_3840x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sirui Anamorphic 24mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Clepimedia", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Sirui Anamorphic 24mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sirui Anamorphic 50mm__4k_16by9_3840x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sirui Anamorphic 50mm__4k_16by9_3840x2160-25.00fps.json index 35561bda..cb7019ba 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sirui Anamorphic 50mm__4k_16by9_3840x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sirui Anamorphic 50mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Clepimedia", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Sirui Anamorphic 50mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sirui Anamorphic 75mm__4k_16by9_3840x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sirui Anamorphic 75mm__4k_16by9_3840x2160-25.00fps.json index a90743b5..4068e87c 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sirui Anamorphic 75mm__4k_16by9_3840x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Sirui Anamorphic 75mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Clepimedia", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Sirui Anamorphic 75mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_TTartisan 25mm 1.33 Anamorphic_90 deg DCI_C4k_1.90by1_4096x2160-24.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_TTartisan 25mm 1.33 Anamorphic_90 deg DCI_C4k_1.90by1_4096x2160-24.00fps.json index 93bc803e..af7d4a70 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_TTartisan 25mm 1.33 Anamorphic_90 deg DCI_C4k_1.90by1_4096x2160-24.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_TTartisan 25mm 1.33 Anamorphic_90 deg DCI_C4k_1.90by1_4096x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Blackbug Digital", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "TTartisan 25mm 1.33 Anamorphic", "camera_setting": "90 deg DCI", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_TTartisan 25mm 1.33 Anamorphic_90deg_C4k_1.90by1_4096x2160-24.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_TTartisan 25mm 1.33 Anamorphic_90deg_C4k_1.90by1_4096x2160-24.00fps.json index 762f6aff..23281de1 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_TTartisan 25mm 1.33 Anamorphic_90deg_C4k_1.90by1_4096x2160-24.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_TTartisan 25mm 1.33 Anamorphic_90deg_C4k_1.90by1_4096x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Blackbug Digital", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "TTartisan 25mm 1.33 Anamorphic", "camera_setting": "90deg", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Tamron SP 17 - 50 mm F2.8 (Nikon F)_, ISO_ 1250, Shutter_ 45_C4k_1.90by1_4096x2160-60.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Tamron SP 17 - 50 mm F2.8 (Nikon F)_, ISO_ 1250, Shutter_ 45_C4k_1.90by1_4096x2160-60.00fps.json index 719b663d..fe0c5e65 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Tamron SP 17 - 50 mm F2.8 (Nikon F)_, ISO_ 1250, Shutter_ 45_C4k_1.90by1_4096x2160-60.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Tamron SP 17 - 50 mm F2.8 (Nikon F)_, ISO_ 1250, Shutter_ 45_C4k_1.90by1_4096x2160-60.00fps.json @@ -3,7 +3,7 @@ "note": "Zoom: 17mm; Viltrox Speedbooster 0.71x", "calibrated_by": "exploREDer", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Tamron SP 17 - 50 mm F/2.8 (Nikon F)", "camera_setting": ", ISO: 1250, Shutter: 45°", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Tokina 11-20mm f2.8 @11mm + Viltrox EF-M2 II 0.71x_C4k_1.90by1_4096x2160-59.94fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Tokina 11-20mm f2.8 @11mm + Viltrox EF-M2 II 0.71x_C4k_1.90by1_4096x2160-59.94fps.json index 8caeac8f..e4ba3802 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Tokina 11-20mm f2.8 @11mm + Viltrox EF-M2 II 0.71x_C4k_1.90by1_4096x2160-59.94fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Tokina 11-20mm f2.8 @11mm + Viltrox EF-M2 II 0.71x_C4k_1.90by1_4096x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "@11mm + Viltrox EF-M2 II 0.71x", "calibrated_by": "Sandros94", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Tokina 11-20mm f2.8 + Viltrox EF-M2 II", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Tokina 11-20mm f2.8 @14mm_C4k_1.90by1_4096x2160-59.94fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Tokina 11-20mm f2.8 @14mm_C4k_1.90by1_4096x2160-59.94fps.json index 52d54ab4..229a0f9f 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Tokina 11-20mm f2.8 @14mm_C4k_1.90by1_4096x2160-59.94fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Tokina 11-20mm f2.8 @14mm_C4k_1.90by1_4096x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "@14mm + Viltrox EF-M2 II 0.71x", "calibrated_by": "Sandros94", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Tokina 11-20mm f2.8 @14mm + Viltrox EF-M2 II 0.71x", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_VenusOptics Laowa 12mm F2.8__4k_16by9_3840x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_VenusOptics Laowa 12mm F2.8__4k_16by9_3840x2160-25.00fps.json index 57581be9..2535ede8 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_VenusOptics Laowa 12mm F2.8__4k_16by9_3840x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_VenusOptics Laowa 12mm F2.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Oleg Stelmakh", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "VenusOptics Laowa 12mm F/2.8", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Vivitar 28 f2.5 Viltrox .71__4k_16by9_3840x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Vivitar 28 f2.5 Viltrox .71__4k_16by9_3840x2160-50.00fps.json index 48d65b28..e8f15df9 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Vivitar 28 f2.5 Viltrox .71__4k_16by9_3840x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_Vivitar 28 f2.5 Viltrox .71__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Denny Pilot", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "Vivitar 28 f2.5 Viltrox .71", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_canon ef 18-55__4k_16by9_3840x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_canon ef 18-55__4k_16by9_3840x2160-25.00fps.json index bf1d010c..252a0d2c 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_canon ef 18-55__4k_16by9_3840x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_canon ef 18-55__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ahmed Zidan", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "canon ef 18-55", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa 9mm f2.8_DCI_C4k_1.90by1_4096x2160-29.97fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa 9mm f2.8_DCI_C4k_1.90by1_4096x2160-29.97fps.json index 1ed143a7..b63a62f1 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa 9mm f2.8_DCI_C4k_1.90by1_4096x2160-29.97fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa 9mm f2.8_DCI_C4k_1.90by1_4096x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "SongSul", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "laowa 9mm f2.8", "camera_setting": "DCI", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa6mmt2.1__C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa6mmt2.1__C4k_1.90by1_4096x2160-25.00fps.json index 153f51b4..c569298e 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa6mmt2.1__C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa6mmt2.1__C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "大师兄", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "laowa6mmt2.1", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa7.5__4k_16by9_3840x2160-30.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa7.5__4k_16by9_3840x2160-30.00fps.json index b171e686..58861a48 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa7.5__4k_16by9_3840x2160-30.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa7.5__4k_16by9_3840x2160-30.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "001", "calibrator_version": "1.5.4", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa7.5__4k_16by9_3840x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa7.5__4k_16by9_3840x2160-50.00fps.json index 49b3423c..20e77e47 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa7.5__4k_16by9_3840x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa7.5__4k_16by9_3840x2160-50.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "001", "calibrator_version": "1.5.4", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa7.5__C4k_1.90by1_4096x2160-30.00fps - 001.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa7.5__C4k_1.90by1_4096x2160-30.00fps - 001.json index aab082bc..8d454d3d 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa7.5__C4k_1.90by1_4096x2160-30.00fps - 001.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa7.5__C4k_1.90by1_4096x2160-30.00fps - 001.json @@ -7,7 +7,7 @@ "calibrated_by": "001", "calibrator_version": "1.5.4", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa7.5__C4k_1.90by1_4096x2160-30.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa7.5__C4k_1.90by1_4096x2160-30.00fps.json index d292c1a5..9ff279ac 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa7.5__C4k_1.90by1_4096x2160-30.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa7.5__C4k_1.90by1_4096x2160-30.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "001", "calibrator_version": "1.5.4", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa7.5__C4k_1.90by1_4096x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa7.5__C4k_1.90by1_4096x2160-50.00fps.json index 3885a1b4..9a356b2e 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa7.5__C4k_1.90by1_4096x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa7.5__C4k_1.90by1_4096x2160-50.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "001", "calibrator_version": "1.5.4", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa__C4k_1.90by1_4096x2160-27.58fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa__C4k_1.90by1_4096x2160-27.58fps.json index 13bc5067..0ca6aa6b 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa__C4k_1.90by1_4096x2160-27.58fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_laowa__C4k_1.90by1_4096x2160-27.58fps.json @@ -7,7 +7,7 @@ "calibrated_by": "001", "calibrator_version": "1.5.4", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_lumix7-14_7mm_1080p_16by9_1920x1080-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_lumix7-14_7mm_1080p_16by9_1920x1080-25.00fps.json index 83ed92b7..8b5bd631 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_lumix7-14_7mm_1080p_16by9_1920x1080-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_lumix7-14_7mm_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "7mm", "calibrated_by": "周佳荣", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "lumix7-14", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_olympus 12mm_C_C4k_1.90by1_4096x2160-23.98fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_olympus 12mm_C_C4k_1.90by1_4096x2160-23.98fps.json index 750a12df..0b08bd84 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_olympus 12mm_C_C4k_1.90by1_4096x2160-23.98fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_olympus 12mm_C_C4k_1.90by1_4096x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Cine Robots", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "olympus 12mm", "camera_setting": "C", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_samyang 14mm 0.64x__4k_16by9_3840x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_samyang 14mm 0.64x__4k_16by9_3840x2160-50.00fps.json index e408b804..d5816bbe 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_samyang 14mm 0.64x__4k_16by9_3840x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_samyang 14mm 0.64x__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Alistair Lili", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "samyang 14mm 0.64x", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_samyang7.5_DCI 422_C4k_1.90by1_4096x2160-60.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_samyang7.5_DCI 422_C4k_1.90by1_4096x2160-60.00fps.json index ed080d9d..b78ce174 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_samyang7.5_DCI 422_C4k_1.90by1_4096x2160-60.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_samyang7.5_DCI 422_C4k_1.90by1_4096x2160-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "观良君", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "samyang7.5", "camera_setting": "DCI 422", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_sigma 17-50 + VILTROX_17mm_C4k_1.90by1_4096x2160-24.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_sigma 17-50 + VILTROX_17mm_C4k_1.90by1_4096x2160-24.00fps.json index 79ed8430..77497d43 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_sigma 17-50 + VILTROX_17mm_C4k_1.90by1_4096x2160-24.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_sigma 17-50 + VILTROX_17mm_C4k_1.90by1_4096x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Mikołaj Zeman", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "sigma 17-50 + VILTROX", "camera_setting": "17mm", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_zeiss Classic makro 50mm f2__4k_16by9_3840x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_zeiss Classic makro 50mm f2__4k_16by9_3840x2160-50.00fps.json index 73399013..238d7d5d 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_zeiss Classic makro 50mm f2__4k_16by9_3840x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 4k_zeiss Classic makro 50mm f2__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Alistair Lili", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 4k", + "camera_model": "Pocket Cinema Camera 4K", "lens_model": "zeiss Classic makro 50mm f2", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k G2_Carl Zeiss Planar 50mm f1.4_4k DCI_C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k G2_Carl Zeiss Planar 50mm f1.4_4k DCI_C4k_1.90by1_4096x2160-25.00fps.json index eb5ced65..df8859b5 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k G2_Carl Zeiss Planar 50mm f1.4_4k DCI_C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k G2_Carl Zeiss Planar 50mm f1.4_4k DCI_C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "Calibrated with iPhone pattern", "calibrated_by": "Tobias Thorne", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k G2", + "camera_model": "Pocket Cinema Camera 6K G2", "lens_model": "Carl Zeiss Planar 50mm f/1.4", "camera_setting": "4k DCI", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k G2_Carl Zeiss Planar 50mm f1.4_6K_6k_16by9_6144x3456-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k G2_Carl Zeiss Planar 50mm f1.4_6K_6k_16by9_6144x3456-25.00fps.json index 4d84a948..e3dee777 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k G2_Carl Zeiss Planar 50mm f1.4_6K_6k_16by9_6144x3456-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k G2_Carl Zeiss Planar 50mm f1.4_6K_6k_16by9_6144x3456-25.00fps.json @@ -3,7 +3,7 @@ "note": "Calibrated with iPhone pattern", "calibrated_by": "Tobias Thorne", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k G2", + "camera_model": "Pocket Cinema Camera 6K G2", "lens_model": "Carl Zeiss Planar 50mm f/1.4", "camera_setting": "6K", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k G2_Samyang 12mm__6k_16by9_6144x3456-24.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k G2_Samyang 12mm__6k_16by9_6144x3456-24.00fps.json index 34174a02..e4476796 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k G2_Samyang 12mm__6k_16by9_6144x3456-24.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k G2_Samyang 12mm__6k_16by9_6144x3456-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Daniel Schreiber", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k G2", + "camera_model": "Pocket Cinema Camera 6K G2", "lens_model": "Samyang 12mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k G2_Samyang 16mm f2.0 ED AS UMC CS__6k_16by9_6144x3456-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k G2_Samyang 16mm f2.0 ED AS UMC CS__6k_16by9_6144x3456-50.00fps.json index 4bfece3c..c5b1ff31 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k G2_Samyang 16mm f2.0 ED AS UMC CS__6k_16by9_6144x3456-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k G2_Samyang 16mm f2.0 ED AS UMC CS__6k_16by9_6144x3456-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "HiDrone", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k G2", + "camera_model": "Pocket Cinema Camera 6K G2", "lens_model": "Samyang 16mm f/2.0 ED AS UMC CS", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k G2_Sigma 18-35mm f1.8 DC HSM Art_DCI_C4k_1.90by1_4096x2160-24.00fps - Tobias Thorne.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k G2_Sigma 18-35mm f1.8 DC HSM Art_DCI_C4k_1.90by1_4096x2160-24.00fps - Tobias Thorne.json index 2b8919e2..a6cacf71 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k G2_Sigma 18-35mm f1.8 DC HSM Art_DCI_C4k_1.90by1_4096x2160-24.00fps - Tobias Thorne.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k G2_Sigma 18-35mm f1.8 DC HSM Art_DCI_C4k_1.90by1_4096x2160-24.00fps - Tobias Thorne.json @@ -3,7 +3,7 @@ "note": "Calibrated @ 18mm", "calibrated_by": "Tobias Thorne", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k G2", + "camera_model": "Pocket Cinema Camera 6K G2", "lens_model": "Sigma 18-35mm f/1.8 DC HSM Art", "camera_setting": "DCI", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_10mm Rokinon_100_6k_16by9_6144x3456-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_10mm Rokinon_100_6k_16by9_6144x3456-50.00fps.json index 46ed8da7..a0e706e1 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_10mm Rokinon_100_6k_16by9_6144x3456-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_10mm Rokinon_100_6k_16by9_6144x3456-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Svanur Gabriele", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k Pro", + "camera_model": "Pocket Cinema Camera 6K Pro", "lens_model": "10mm Rokinon", "camera_setting": "100", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Canon 24-105 mm_Pro Res LT_C4k_1.90by1_4096x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Canon 24-105 mm_Pro Res LT_C4k_1.90by1_4096x2160-50.00fps.json index 015687ee..7d6aacc6 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Canon 24-105 mm_Pro Res LT_C4k_1.90by1_4096x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Canon 24-105 mm_Pro Res LT_C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Nuno Meneses", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k Pro", + "camera_model": "Pocket Cinema Camera 6K Pro", "lens_model": "Canon 24-105 mm", "camera_setting": "Pro Res LT", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Canon EF 24-70mm f2.8_@24mm_6k_1.94by1_6144x3160-24.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Canon EF 24-70mm f2.8_@24mm_6k_1.94by1_6144x3160-24.00fps.json index cbde8bfd..59886504 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Canon EF 24-70mm f2.8_@24mm_6k_1.94by1_6144x3160-24.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Canon EF 24-70mm f2.8_@24mm_6k_1.94by1_6144x3160-24.00fps.json @@ -3,7 +3,7 @@ "note": "@24mm", "calibrated_by": "SANLEGA", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k Pro", + "camera_model": "Pocket Cinema Camera 6K Pro", "lens_model": "Canon EF 24-70mm f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Laowa 12mm Zero D_BRAW_6k_16by9_6144x3456-30.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Laowa 12mm Zero D_BRAW_6k_16by9_6144x3456-30.00fps.json index e22d6c6a..ab7ca529 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Laowa 12mm Zero D_BRAW_6k_16by9_6144x3456-30.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Laowa 12mm Zero D_BRAW_6k_16by9_6144x3456-30.00fps.json @@ -3,7 +3,7 @@ "note": "6k BRAW converted to 6k pro res", "calibrated_by": "shane Pennicuik", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k Pro", + "camera_model": "Pocket Cinema Camera 6K Pro", "lens_model": "Laowa 12mm Zero D", "camera_setting": "BRAW", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Rokinon 10mm T3.1_100_1080p_16by9_1920x1080-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Rokinon 10mm T3.1_100_1080p_16by9_1920x1080-50.00fps.json index 2fd6c2ad..2b185401 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Rokinon 10mm T3.1_100_1080p_16by9_1920x1080-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Rokinon 10mm T3.1_100_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Svanur Gabriele", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k Pro", + "camera_model": "Pocket Cinema Camera 6K Pro", "lens_model": "Rokinon 10mm T3.1", "camera_setting": "100", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Sigma 18-35_18mm_4k_16by9_3840x2160-30.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Sigma 18-35_18mm_4k_16by9_3840x2160-30.00fps.json index 082c8aa1..875bcaca 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Sigma 18-35_18mm_4k_16by9_3840x2160-30.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Sigma 18-35_18mm_4k_16by9_3840x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "18mm", "calibrated_by": "Aerial Division", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k Pro", + "camera_model": "Pocket Cinema Camera 6K Pro", "lens_model": "Sigma 18-35", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Sigma 18-35_BRAW_4k_16by9_3840x2160-30.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Sigma 18-35_BRAW_4k_16by9_3840x2160-30.00fps.json index ba9e62ac..b1f637ad 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Sigma 18-35_BRAW_4k_16by9_3840x2160-30.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Sigma 18-35_BRAW_4k_16by9_3840x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "Sigma lens 24mm", "calibrated_by": "Aerial Division", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k Pro", + "camera_model": "Pocket Cinema Camera 6K Pro", "lens_model": "Sigma 18-35", "camera_setting": "BRAW", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Sigma Art 18-35 @20mm_f5.0_6k_16by9_6144x3456-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Sigma Art 18-35 @20mm_f5.0_6k_16by9_6144x3456-25.00fps.json index 1c61535c..55581980 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Sigma Art 18-35 @20mm_f5.0_6k_16by9_6144x3456-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Sigma Art 18-35 @20mm_f5.0_6k_16by9_6144x3456-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Teddy", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k Pro", + "camera_model": "Pocket Cinema Camera 6K Pro", "lens_model": "Sigma Art 18-35 @20mm", "camera_setting": "f5.0", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Sigma Art 18-35mm @18mm_f5.0_6k_16by9_6144x3456-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Sigma Art 18-35mm @18mm_f5.0_6k_16by9_6144x3456-25.00fps.json index fddf638d..11920026 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Sigma Art 18-35mm @18mm_f5.0_6k_16by9_6144x3456-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k Pro_Sigma Art 18-35mm @18mm_f5.0_6k_16by9_6144x3456-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Teddy", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k Pro", + "camera_model": "Pocket Cinema Camera 6K Pro", "lens_model": "Sigma Art 18-35mm @18mm", "camera_setting": "f5.0", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_9mm T2.9 Sony E__6k_16by9_6144x3456-30.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_9mm T2.9 Sony E__6k_16by9_6144x3456-30.00fps.json index 2b54fc20..fc92c813 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_9mm T2.9 Sony E__6k_16by9_6144x3456-30.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_9mm T2.9 Sony E__6k_16by9_6144x3456-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Antero Sousa", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "9mm T2.9 Sony E", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_BMPCC 4K DZOFILM 35mm_12_1_C4k_1.90by1_4096x2160-30.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_BMPCC 4K DZOFILM 35mm_12_1_C4k_1.90by1_4096x2160-30.00fps.json index 651ea787..083a11a7 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_BMPCC 4K DZOFILM 35mm_12_1_C4k_1.90by1_4096x2160-30.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_BMPCC 4K DZOFILM 35mm_12_1_C4k_1.90by1_4096x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "尚文", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "BMPCC 4K DZOFILM 35mm", "camera_setting": "12:1", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 10-18 5.6_10mm_C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 10-18 5.6_10mm_C4k_1.90by1_4096x2160-25.00fps.json index 202346e1..3a336954 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 10-18 5.6_10mm_C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 10-18 5.6_10mm_C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "bombay aerials", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Canon 10-18 5.6", "camera_setting": "10mm", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 10-18mm 4.5-5.6_10mm_6k_16by9_6144x3456-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 10-18mm 4.5-5.6_10mm_6k_16by9_6144x3456-50.00fps.json index 4fedf1b2..38bd738c 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 10-18mm 4.5-5.6_10mm_6k_16by9_6144x3456-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 10-18mm 4.5-5.6_10mm_6k_16by9_6144x3456-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Sebastian Köster", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Canon 10-18mm 4.5-5.6", "camera_setting": "10mm", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 10-18mm 4.6-5.6 IS STM_6k_720p_1.89by1_1432x756-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 10-18mm 4.6-5.6 IS STM_6k_720p_1.89by1_1432x756-50.00fps.json index 3fe5c935..3721b84e 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 10-18mm 4.6-5.6 IS STM_6k_720p_1.89by1_1432x756-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 10-18mm 4.6-5.6 IS STM_6k_720p_1.89by1_1432x756-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Sebastian Köster", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Canon 10-18mm 4.6-5.6 IS STM", "camera_setting": "6k", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 10-18mm_ProRes_C4k_1.90by1_4096x2160-59.94fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 10-18mm_ProRes_C4k_1.90by1_4096x2160-59.94fps.json index 6b6ce125..12718ce9 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 10-18mm_ProRes_C4k_1.90by1_4096x2160-59.94fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 10-18mm_ProRes_C4k_1.90by1_4096x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Marcel Schlupf", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Canon 10-18mm", "camera_setting": "ProRes", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 16-35 2.8f II_16mm_6k_16by9_6144x3456-23.98fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 16-35 2.8f II_16mm_6k_16by9_6144x3456-23.98fps.json index 49d76742..854f0d42 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 16-35 2.8f II_16mm_6k_16by9_6144x3456-23.98fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 16-35 2.8f II_16mm_6k_16by9_6144x3456-23.98fps.json @@ -3,7 +3,7 @@ "note": "Film Color", "calibrated_by": "Julian", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Canon 16-35 2.8f II", "camera_setting": "16mm", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 16-35mm L Series_ProRes_4k_16by9_3840x2160-23.98fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 16-35mm L Series_ProRes_4k_16by9_3840x2160-23.98fps.json index 077d26c2..09dfb8df 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 16-35mm L Series_ProRes_4k_16by9_3840x2160-23.98fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 16-35mm L Series_ProRes_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Matthew Bakken", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Canon 16-35mm L Series", "camera_setting": "ProRes", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 16-35mm f.4 L USM_@16mm_6k_16by9_6144x3456-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 16-35mm f.4 L USM_@16mm_6k_16by9_6144x3456-50.00fps.json index 6303f734..f556d323 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 16-35mm f.4 L USM_@16mm_6k_16by9_6144x3456-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 16-35mm f.4 L USM_@16mm_6k_16by9_6144x3456-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "PC_03_Alex", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Canon 16-35mm f.4 L USM", "camera_setting": "@16mm", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 24-70 f2.8__4k_16by9_3840x2160-23.98fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 24-70 f2.8__4k_16by9_3840x2160-23.98fps.json index 3cb8efef..624b6d11 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 24-70 f2.8__4k_16by9_3840x2160-23.98fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 24-70 f2.8__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Caleb Toranzo", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Canon 24-70 f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 50mm_2.8k 120fps_2.7k_1.89by1_2864x1512-60.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 50mm_2.8k 120fps_2.7k_1.89by1_2864x1512-60.00fps.json index b0cfd50d..db322f24 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 50mm_2.8k 120fps_2.7k_1.89by1_2864x1512-60.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon 50mm_2.8k 120fps_2.7k_1.89by1_2864x1512-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Laurin", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Canon 50mm", "camera_setting": "2.8k 120fps", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon EF 24-105 IS II_2.8K30_1080p_16by9_1920x1080-30.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon EF 24-105 IS II_2.8K30_1080p_16by9_1920x1080-30.00fps.json index 7c7b1bdf..d2a52ceb 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon EF 24-105 IS II_2.8K30_1080p_16by9_1920x1080-30.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon EF 24-105 IS II_2.8K30_1080p_16by9_1920x1080-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "24-105/2.8K v1", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Canon EF 24-105 IS II", "camera_setting": "2.8K/30", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon EF 24-105_Pro Res_4k_16by9_3840x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon EF 24-105_Pro Res_4k_16by9_3840x2160-50.00fps.json index ceb22483..3537dcaa 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon EF 24-105_Pro Res_4k_16by9_3840x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon EF 24-105_Pro Res_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "24mm", "calibrated_by": "Zack Trammel", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Canon EF 24-105", "camera_setting": "Pro Res", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon EF-S 10-18mm_ProRes_4k_16by9_3840x2160-24.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon EF-S 10-18mm_ProRes_4k_16by9_3840x2160-24.00fps.json index c54728b6..23a91849 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon EF-S 10-18mm_ProRes_4k_16by9_3840x2160-24.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Canon EF-S 10-18mm_ProRes_4k_16by9_3840x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "10mm", "calibrated_by": "Ruben", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Canon EF-S 10-18mm", "camera_setting": "ProRes", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_DZOFILE 21mm_12_1_C4k_1.90by1_4096x2160-30.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_DZOFILE 21mm_12_1_C4k_1.90by1_4096x2160-30.00fps.json index c41f066e..3675eab1 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_DZOFILE 21mm_12_1_C4k_1.90by1_4096x2160-30.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_DZOFILE 21mm_12_1_C4k_1.90by1_4096x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "尚文", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "DZOFILE 21mm", "camera_setting": "12:1", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_DZOFILM 21mm T2.1_12_1 RAW_6k_16by9_6144x3456-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_DZOFILM 21mm T2.1_12_1 RAW_6k_16by9_6144x3456-50.00fps.json index e38b16f5..2c5752c0 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_DZOFILM 21mm T2.1_12_1 RAW_6k_16by9_6144x3456-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_DZOFILM 21mm T2.1_12_1 RAW_6k_16by9_6144x3456-50.00fps.json @@ -3,7 +3,7 @@ "note": "误差0.58530", "calibrated_by": "尚文", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "DZOFILM 21mm T2.1", "camera_setting": "12:1 RAW", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_DZOFILM 21mm T2.1__6k_16by9_6144x3456-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_DZOFILM 21mm T2.1__6k_16by9_6144x3456-50.00fps.json index fe7dd4cc..c5647306 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_DZOFILM 21mm T2.1__6k_16by9_6144x3456-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_DZOFILM 21mm T2.1__6k_16by9_6144x3456-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Shawn", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "DZOFILM 21mm T2.1", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_DZOFILM 35mm T2.1_RAW 12_1_6k_16by9_6144x3456-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_DZOFILM 35mm T2.1_RAW 12_1_6k_16by9_6144x3456-50.00fps.json index 6012a1cb..37ecc5c5 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_DZOFILM 35mm T2.1_RAW 12_1_6k_16by9_6144x3456-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_DZOFILM 35mm T2.1_RAW 12_1_6k_16by9_6144x3456-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "尚文", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "DZOFILM 35mm T2.1", "camera_setting": "RAW 12:1", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_DZOFILM 75mm T2.1_RAW 12_1_6k_16by9_6144x3456-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_DZOFILM 75mm T2.1_RAW 12_1_6k_16by9_6144x3456-50.00fps.json index 653836a7..66958b43 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_DZOFILM 75mm T2.1_RAW 12_1_6k_16by9_6144x3456-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_DZOFILM 75mm T2.1_RAW 12_1_6k_16by9_6144x3456-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "尚文", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "DZOFILM 75mm T2.1", "camera_setting": "RAW 12:1", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_DZOLIFM 4K 36mm_12_1_C4k_1.90by1_4096x2160-30.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_DZOLIFM 4K 36mm_12_1_C4k_1.90by1_4096x2160-30.00fps.json index 0b175858..0c222abe 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_DZOLIFM 4K 36mm_12_1_C4k_1.90by1_4096x2160-30.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_DZOLIFM 4K 36mm_12_1_C4k_1.90by1_4096x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "尚文", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "DZOLIFM 4K 36mm", "camera_setting": "12:1", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_EFS 10-18mm_10mm_4k_16by9_3840x2160-24.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_EFS 10-18mm_10mm_4k_16by9_3840x2160-24.00fps.json index efe1fbd7..8d9c6f6d 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_EFS 10-18mm_10mm_4k_16by9_3840x2160-24.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_EFS 10-18mm_10mm_4k_16by9_3840x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Antero Sousa", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "EFS 10-18mm", "camera_setting": "10mm", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_FZOLIMF 75mm T2.1_6K_C4k_1.90by1_4096x2160-30.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_FZOLIMF 75mm T2.1_6K_C4k_1.90by1_4096x2160-30.00fps.json index a849f4d3..898ce323 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_FZOLIMF 75mm T2.1_6K_C4k_1.90by1_4096x2160-30.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_FZOLIMF 75mm T2.1_6K_C4k_1.90by1_4096x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "尚文", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "FZOLIMF 75mm T2.1", "camera_setting": "6K", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Hoya_@_35mm_Full 6K_6k_16by9_6144x3456-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Hoya_@_35mm_Full 6K_6k_16by9_6144x3456-25.00fps.json index b4cec536..6a129f2c 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Hoya_@_35mm_Full 6K_6k_16by9_6144x3456-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Hoya_@_35mm_Full 6K_6k_16by9_6144x3456-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ulrich Plank", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Hoya_@_35mm", "camera_setting": "Full 6K", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_LAOWA 9mm MFT on E_6K BRAW_6k_16by9_6144x3456-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_LAOWA 9mm MFT on E_6K BRAW_6k_16by9_6144x3456-50.00fps.json index 740649f9..d331c0e8 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_LAOWA 9mm MFT on E_6K BRAW_6k_16by9_6144x3456-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_LAOWA 9mm MFT on E_6K BRAW_6k_16by9_6144x3456-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Giovanni Strondl", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "LAOWA 9mm MFT on E", "camera_setting": "6K BRAW", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_LAOWA 9mm_Calibrated in 12_1_1080p_16by9_1920x1080-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_LAOWA 9mm_Calibrated in 12_1_1080p_16by9_1920x1080-50.00fps.json index e6c2e923..25297e15 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_LAOWA 9mm_Calibrated in 12_1_1080p_16by9_1920x1080-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_LAOWA 9mm_Calibrated in 12_1_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "Calibrated in 12:1", "calibrated_by": "Giovanni Strondl", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "LAOWA 9mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 12mm 2.8_ProRes 422_C4k_1.90by1_4096x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 12mm 2.8_ProRes 422_C4k_1.90by1_4096x2160-50.00fps.json index 71a1b03d..65d2d71c 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 12mm 2.8_ProRes 422_C4k_1.90by1_4096x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 12mm 2.8_ProRes 422_C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "4K DCI Constant Bit Rate", "calibrated_by": "Leroy Button", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Laowa 12mm 2.8", "camera_setting": "ProRes 422", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 14mm RF_BRAW 6K_6k_12by5_6144x2560-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 14mm RF_BRAW 6K_6k_12by5_6144x2560-50.00fps.json index 103423ba..c786e0ba 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 14mm RF_BRAW 6K_6k_12by5_6144x2560-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 14mm RF_BRAW 6K_6k_12by5_6144x2560-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Laurin Göller", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Laowa 14mm RF", "camera_setting": "BRAW 6K", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 27mm Anamorphic__6k_16by9_6144x3456-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 27mm Anamorphic__6k_16by9_6144x3456-50.00fps.json index bdb99f55..8553b2c0 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 27mm Anamorphic__6k_16by9_6144x3456-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 27mm Anamorphic__6k_16by9_6144x3456-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Scottyblue77", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Laowa 27mm Anamorphic", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 9mm 2.8__6k_16by9_6144x3456-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 9mm 2.8__6k_16by9_6144x3456-50.00fps.json index e402d49e..60404bed 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 9mm 2.8__6k_16by9_6144x3456-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 9mm 2.8__6k_16by9_6144x3456-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "scottyblue77", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Laowa 9mm 2.8", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 9mm RF_T2.9 & _6k_16by9_6144x3456-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 9mm RF_T2.9 & _6k_16by9_6144x3456-50.00fps.json index 3bb190f2..8a9113b5 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 9mm RF_T2.9 & _6k_16by9_6144x3456-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 9mm RF_T2.9 & _6k_16by9_6144x3456-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "S1W.ca", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Laowa 9mm RF", "camera_setting": "T2.9 & ∞", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 9mm f2.8 Zero-D__6k_12by5_6144x2560-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 9mm f2.8 Zero-D__6k_12by5_6144x2560-50.00fps.json index 51dc33be..666af3cd 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 9mm f2.8 Zero-D__6k_12by5_6144x2560-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 9mm f2.8 Zero-D__6k_12by5_6144x2560-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Yan S", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Laowa 9mm f/2.8 Zero-D", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 9mm_BRAW 5.7K_5k_1.90by1_5744x3024-25.00fps - Giovanni Strondl - 2.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 9mm_BRAW 5.7K_5k_1.90by1_5744x3024-25.00fps - Giovanni Strondl - 2.json index a131b2fd..bfb32b52 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 9mm_BRAW 5.7K_5k_1.90by1_5744x3024-25.00fps - Giovanni Strondl - 2.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 9mm_BRAW 5.7K_5k_1.90by1_5744x3024-25.00fps - Giovanni Strondl - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Giovanni Strondl", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Laowa 9mm", "camera_setting": "BRAW 5.7K", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 9mm_BRAW 5.7k_5k_1.90by1_5744x3024-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 9mm_BRAW 5.7k_5k_1.90by1_5744x3024-25.00fps.json index aa662ab9..22e2fbc4 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 9mm_BRAW 5.7k_5k_1.90by1_5744x3024-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 9mm_BRAW 5.7k_5k_1.90by1_5744x3024-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Giovanni Strondl", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Laowa 9mm", "camera_setting": "BRAW 5.7k", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 9mm_BRAW_6k_16by9_6144x3456-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 9mm_BRAW_6k_16by9_6144x3456-25.00fps.json index 54ad09d7..e2b2a1cf 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 9mm_BRAW_6k_16by9_6144x3456-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa 9mm_BRAW_6k_16by9_6144x3456-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Giovanni Strondl", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Laowa 9mm", "camera_setting": "BRAW", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa FF 11mm_DCI_C4k_1.90by1_4096x2160-30.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa FF 11mm_DCI_C4k_1.90by1_4096x2160-30.00fps.json index e6af30b8..f8bd2029 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa FF 11mm_DCI_C4k_1.90by1_4096x2160-30.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa FF 11mm_DCI_C4k_1.90by1_4096x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Matthew Lavin", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Laowa FF 11mm", "camera_setting": "DCI", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa FFii 14mm F4.0 C&D-Dreamer_Sony E mount_6k_16by9_6144x3456-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa FFii 14mm F4.0 C&D-Dreamer_Sony E mount_6k_16by9_6144x3456-50.00fps.json index e92cbd28..712b8bbe 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa FFii 14mm F4.0 C&D-Dreamer_Sony E mount_6k_16by9_6144x3456-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Laowa FFii 14mm F4.0 C&D-Dreamer_Sony E mount_6k_16by9_6144x3456-50.00fps.json @@ -3,7 +3,7 @@ "note": "Sony E mount", "calibrated_by": "Kim Tang", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Laowa FFii 14mm F4.0 C&D-Dreamer", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Meike s35 35mm_6K_6k_16by9_6144x3456-24.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Meike s35 35mm_6K_6k_16by9_6144x3456-24.00fps.json index 8e93cba6..4f22acbd 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Meike s35 35mm_6K_6k_16by9_6144x3456-24.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Meike s35 35mm_6K_6k_16by9_6144x3456-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Javier Devitt", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Meike s35 35mm", "camera_setting": "6K", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Rokinon 20mm T1.9_6K 2.4_1_6k_12by5_6144x2560-29.97fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Rokinon 20mm T1.9_6K 2.4_1_6k_12by5_6144x2560-29.97fps.json index 86b18a32..f5d903be 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Rokinon 20mm T1.9_6K 2.4_1_6k_12by5_6144x2560-29.97fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Rokinon 20mm T1.9_6K 2.4_1_6k_12by5_6144x2560-29.97fps.json @@ -3,7 +3,7 @@ "note": "BRAW TO QT H265", "calibrated_by": "Chad Miller", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Rokinon 20mm T1.9", "camera_setting": "6K 2.4:1", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Samyang 12mm F2.0__4k_16by9_3840x2160-29.97fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Samyang 12mm F2.0__4k_16by9_3840x2160-29.97fps.json index 24cc232d..9e868442 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Samyang 12mm F2.0__4k_16by9_3840x2160-29.97fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Samyang 12mm F2.0__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Russell Spurlock", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Samyang 12mm F2.0", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Samyang 12mm_Sony E-Mount_1080p_16by9_1920x1080-23.98fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Samyang 12mm_Sony E-Mount_1080p_16by9_1920x1080-23.98fps.json index 3506c4d1..48c78fcc 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Samyang 12mm_Sony E-Mount_1080p_16by9_1920x1080-23.98fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Samyang 12mm_Sony E-Mount_1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "Sony E-Mount", "calibrated_by": "Russell Spurlock", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Samyang 12mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Samyang 12mm_Sony E-Mount_6k_16by9_6144x3456-23.98fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Samyang 12mm_Sony E-Mount_6k_16by9_6144x3456-23.98fps.json index 4d2c52bc..c39fddde 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Samyang 12mm_Sony E-Mount_6k_16by9_6144x3456-23.98fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Samyang 12mm_Sony E-Mount_6k_16by9_6144x3456-23.98fps.json @@ -3,7 +3,7 @@ "note": "Sony E-Mount", "calibrated_by": "Russell Spurlock", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Samyang 12mm", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Samyang Xeen ef 16mm_Full Frame_4k_16by9_3840x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Samyang Xeen ef 16mm_Full Frame_4k_16by9_3840x2160-50.00fps.json index dd5436cb..40a0c894 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Samyang Xeen ef 16mm_Full Frame_4k_16by9_3840x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Samyang Xeen ef 16mm_Full Frame_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Nicdebene", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Samyang Xeen ef 16mm", "camera_setting": "Full Frame", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Samyang_6K RAW_6k_16by9_6144x3456-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Samyang_6K RAW_6k_16by9_6144x3456-50.00fps.json index e887c07a..3ce53b16 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Samyang_6K RAW_6k_16by9_6144x3456-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Samyang_6K RAW_6k_16by9_6144x3456-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "shawn", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Samyang", "camera_setting": "6K RAW", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Sigma 17-35 2.8-4_17mm_4k_16by9_3840x2160-24.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Sigma 17-35 2.8-4_17mm_4k_16by9_3840x2160-24.00fps.json index a4082970..6ab6a430 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Sigma 17-35 2.8-4_17mm_4k_16by9_3840x2160-24.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Sigma 17-35 2.8-4_17mm_4k_16by9_3840x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Chris Culp", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Sigma 17-35 2.8-4", "camera_setting": "17mm", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Sigma 2470 f2.8_150s_4k_16by9_3840x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Sigma 2470 f2.8_150s_4k_16by9_3840x2160-25.00fps.json index 82eb7b46..f51a3a4b 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Sigma 2470 f2.8_150s_4k_16by9_3840x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Sigma 2470 f2.8_150s_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "set at 24mm", "calibrated_by": "FabtheFab", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Sigma 24/70 f2.8", "camera_setting": "1/50s", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Sigma 50-100_BRAW_1080p_16by9_1920x1080-50.00fps - Benjamin YUNG.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Sigma 50-100_BRAW_1080p_16by9_1920x1080-50.00fps - Benjamin YUNG.json index 8ef057f4..5cb39a26 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Sigma 50-100_BRAW_1080p_16by9_1920x1080-50.00fps - Benjamin YUNG.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Sigma 50-100_BRAW_1080p_16by9_1920x1080-50.00fps - Benjamin YUNG.json @@ -3,7 +3,7 @@ "note": "100mm w Speedbooster", "calibrated_by": "Benjamin YUNG", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Sigma 50-100", "camera_setting": "BRAW", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Sigma 50-100_BRAW_1080p_16by9_1920x1080-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Sigma 50-100_BRAW_1080p_16by9_1920x1080-50.00fps.json index eecd9042..65da1105 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Sigma 50-100_BRAW_1080p_16by9_1920x1080-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Sigma 50-100_BRAW_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "50mm w Speedbooster", "calibrated_by": "Benjamin YUNG", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Sigma 50-100", "camera_setting": "BRAW", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Sigma Art 18-35mm 1_1.8_6K Raw_4k_16by9_3840x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Sigma Art 18-35mm 1_1.8_6K Raw_4k_16by9_3840x2160-25.00fps.json index 51b32869..3aa02cd6 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Sigma Art 18-35mm 1_1.8_6K Raw_4k_16by9_3840x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Sigma Art 18-35mm 1_1.8_6K Raw_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "@ 18mm", "calibrated_by": "Anton Eriksson", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Sigma Art 18-35mm 1:1.8", "camera_setting": "6K Raw", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_TTartisan 17mm f1.4 Sony E__6k_16by9_6144x3456-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_TTartisan 17mm f1.4 Sony E__6k_16by9_6144x3456-25.00fps.json index 2cf6c04c..24b6ae2f 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_TTartisan 17mm f1.4 Sony E__6k_16by9_6144x3456-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_TTartisan 17mm f1.4 Sony E__6k_16by9_6144x3456-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Johannes Hegner", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "TTartisan 17mm f/1.4 Sony E", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Tamron 15-35mm_6k_480p_16by9_960x540-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Tamron 15-35mm_6k_480p_16by9_960x540-25.00fps.json index f800b7f1..1e0261c4 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Tamron 15-35mm_6k_480p_16by9_960x540-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Tamron 15-35mm_6k_480p_16by9_960x540-25.00fps.json @@ -3,7 +3,7 @@ "note": "30mm", "calibrated_by": "hodor zhao", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Tamron 15-35mm", "camera_setting": "6k", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Tokina 11-16 F2.8_BRAW_6k_16by9_6144x3456-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Tokina 11-16 F2.8_BRAW_6k_16by9_6144x3456-50.00fps.json index 47d1d3d2..75a97155 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Tokina 11-16 F2.8_BRAW_6k_16by9_6144x3456-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Tokina 11-16 F2.8_BRAW_6k_16by9_6144x3456-50.00fps.json @@ -3,7 +3,7 @@ "note": "11mm", "calibrated_by": "Georgios Vamvounakis", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Tokina 11-16 F2.8", "camera_setting": "BRAW", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Tokina 11-16 f2.0_16mm_6k_16by9_6144x3456-50.00fps - Georgios Vamvounakis.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Tokina 11-16 f2.0_16mm_6k_16by9_6144x3456-50.00fps - Georgios Vamvounakis.json index e18f2167..d092281e 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Tokina 11-16 f2.0_16mm_6k_16by9_6144x3456-50.00fps - Georgios Vamvounakis.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Tokina 11-16 f2.0_16mm_6k_16by9_6144x3456-50.00fps - Georgios Vamvounakis.json @@ -3,7 +3,7 @@ "note": "16mm", "calibrated_by": "Georgios Vamvounakis", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Tokina 11-16 f2.0", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Tokina 11-16_2.8k_2.7k_1.89by1_2864x1512-60.00fps - Georgios Vamvounakis.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Tokina 11-16_2.8k_2.7k_1.89by1_2864x1512-60.00fps - Georgios Vamvounakis.json index c6fe2403..b2c47978 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Tokina 11-16_2.8k_2.7k_1.89by1_2864x1512-60.00fps - Georgios Vamvounakis.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Tokina 11-16_2.8k_2.7k_1.89by1_2864x1512-60.00fps - Georgios Vamvounakis.json @@ -3,7 +3,7 @@ "note": "11mm 120fps", "calibrated_by": "Georgios Vamvounakis", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Tokina 11-16", "camera_setting": "2.8k", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Tokina 11-16_6K DCI_6k_16by9_6144x3456-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Tokina 11-16_6K DCI_6k_16by9_6144x3456-25.00fps.json index cab29a93..7b3dde59 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Tokina 11-16_6K DCI_6k_16by9_6144x3456-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Tokina 11-16_6K DCI_6k_16by9_6144x3456-25.00fps.json @@ -3,7 +3,7 @@ "note": "@ 16mm", "calibrated_by": "Tomasz Szypryt", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Tokina 11-16", "camera_setting": "6K DCI", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Wallimex 10mm EF_6K BRAW_6k_16by9_6144x3456-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Wallimex 10mm EF_6K BRAW_6k_16by9_6144x3456-50.00fps.json index 79675f44..d2f22f39 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Wallimex 10mm EF_6K BRAW_6k_16by9_6144x3456-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_Wallimex 10mm EF_6K BRAW_6k_16by9_6144x3456-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Marius Ramminger", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Wallimex 10mm EF", "camera_setting": "6K BRAW", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_laowa 12mm_50_4k_16by9_3840x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_laowa 12mm_50_4k_16by9_3840x2160-50.00fps.json index cd930eeb..0fe7405b 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_laowa 12mm_50_4k_16by9_3840x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_laowa 12mm_50_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "proress", "calibrated_by": "Francesco CataFpv", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "laowa 12mm", "camera_setting": "50", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_samyang 14mm_ProRes_C4k_1.90by1_4096x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_samyang 14mm_ProRes_C4k_1.90by1_4096x2160-50.00fps.json index fbf602c7..fa7e26e6 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_samyang 14mm_ProRes_C4k_1.90by1_4096x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_samyang 14mm_ProRes_C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "50p", "calibrated_by": "Camille Audibert", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "samyang 14mm", "camera_setting": "ProRes", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_sigma 10mm f.4__C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_sigma 10mm f.4__C4k_1.90by1_4096x2160-25.00fps.json index 46dc4a03..bb61ebf4 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_sigma 10mm f.4__C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_sigma 10mm f.4__C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "kevin lacroix", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "sigma 10mm f.4", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_sigma 18 35 1 8__C4k_1.90by1_4096x2160-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_sigma 18 35 1 8__C4k_1.90by1_4096x2160-25.00fps.json index e397b6ec..3724cf86 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_sigma 18 35 1 8__C4k_1.90by1_4096x2160-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema Camera 6k_sigma 18 35 1 8__C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Алекс", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema Camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "sigma 18 35 1 8", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket Cinema camera 6k_SamyangRokinon Cine 35mm t1.4__6k_16by9_6144x3456-25.00fps.json b/Blackmagic/Blackmagic_Pocket Cinema camera 6k_SamyangRokinon Cine 35mm t1.4__6k_16by9_6144x3456-25.00fps.json index 88675724..c5846cff 100644 --- a/Blackmagic/Blackmagic_Pocket Cinema camera 6k_SamyangRokinon Cine 35mm t1.4__6k_16by9_6144x3456-25.00fps.json +++ b/Blackmagic/Blackmagic_Pocket Cinema camera 6k_SamyangRokinon Cine 35mm t1.4__6k_16by9_6144x3456-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Thomas", "camera_brand": "Blackmagic", - "camera_model": "Pocket Cinema camera 6k", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Samyang/Rokinon Cine 35mm t1.4", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket cinema Camera 6K_Tokina SD 11-16mm f2.8 (IF) DX_11mm_4k_16by9_3840x2160-30.00fps.json b/Blackmagic/Blackmagic_Pocket cinema Camera 6K_Tokina SD 11-16mm f2.8 (IF) DX_11mm_4k_16by9_3840x2160-30.00fps.json index 904a1416..24aa7ecb 100644 --- a/Blackmagic/Blackmagic_Pocket cinema Camera 6K_Tokina SD 11-16mm f2.8 (IF) DX_11mm_4k_16by9_3840x2160-30.00fps.json +++ b/Blackmagic/Blackmagic_Pocket cinema Camera 6K_Tokina SD 11-16mm f2.8 (IF) DX_11mm_4k_16by9_3840x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Catalog", "camera_brand": "Blackmagic", - "camera_model": "Pocket cinema Camera 6K", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Tokina SD 11-16mm f2.8 (IF) DX", "camera_setting": "11mm", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Pocket cinema camera 6K_Tokina 12-28mm F4_4K_4k_16by9_3840x2160-50.00fps.json b/Blackmagic/Blackmagic_Pocket cinema camera 6K_Tokina 12-28mm F4_4K_4k_16by9_3840x2160-50.00fps.json index f90d1a60..65efa61e 100644 --- a/Blackmagic/Blackmagic_Pocket cinema camera 6K_Tokina 12-28mm F4_4K_4k_16by9_3840x2160-50.00fps.json +++ b/Blackmagic/Blackmagic_Pocket cinema camera 6K_Tokina 12-28mm F4_4K_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "4K", "calibrated_by": "Jan Bric", "camera_brand": "Blackmagic", - "camera_model": "Pocket cinema camera 6K", + "camera_model": "Pocket Cinema Camera 6K", "lens_model": "Tokina 12-28mm F4", "camera_setting": "", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_URSA Mini Pro 4.6k_24-105mm_Prores 422_C4k_16by9_4096x2304-23.98fps.json b/Blackmagic/Blackmagic_URSA Mini Pro 4.6k_24-105mm_Prores 422_C4k_16by9_4096x2304-23.98fps.json index 588ecb0f..32da5e54 100644 --- a/Blackmagic/Blackmagic_URSA Mini Pro 4.6k_24-105mm_Prores 422_C4k_16by9_4096x2304-23.98fps.json +++ b/Blackmagic/Blackmagic_URSA Mini Pro 4.6k_24-105mm_Prores 422_C4k_16by9_4096x2304-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Helena Mckenzie", "camera_brand": "Blackmagic", - "camera_model": "URSA Mini Pro 4.6k", + "camera_model": "URSA Mini Pro 4.6K", "lens_model": "24-105mm", "camera_setting": "Prores 422", "calib_dimension": { diff --git a/Blackmagic/Blackmagic_Ursa Mini Pro 12k_DZO 20-55_4k DCI_C4k_1.90by1_4096x2160-29.97fps.json b/Blackmagic/Blackmagic_Ursa Mini Pro 12k_DZO 20-55_4k DCI_C4k_1.90by1_4096x2160-29.97fps.json index 175ad69e..0b20defc 100644 --- a/Blackmagic/Blackmagic_Ursa Mini Pro 12k_DZO 20-55_4k DCI_C4k_1.90by1_4096x2160-29.97fps.json +++ b/Blackmagic/Blackmagic_Ursa Mini Pro 12k_DZO 20-55_4k DCI_C4k_1.90by1_4096x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "20mm", "calibrated_by": "OCTO", "camera_brand": "Blackmagic", - "camera_model": "Ursa Mini Pro 12k", + "camera_model": "URSA Mini Pro 12K", "lens_model": "DZO 20-55", "camera_setting": "4k DCI", "calib_dimension": { diff --git a/Caddx/Caddx_Loris_1.8mm_Medium_4k_16by9_3840x2160-30.00fps.json b/Caddx/Caddx_Loris_1.8mm_Medium_4k_16by9_3840x2160-30.00fps.json index a2c3d872..33365527 100644 --- a/Caddx/Caddx_Loris_1.8mm_Medium_4k_16by9_3840x2160-30.00fps.json +++ b/Caddx/Caddx_Loris_1.8mm_Medium_4k_16by9_3840x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "anton", "camera_brand": "Caddx", - "camera_model": "Loris", + "camera_model": "LORIS", "lens_model": "1.8mm", "camera_setting": "Medium", "calib_dimension": { diff --git a/Caddx/Caddx_Loris_1.8mm__2.7k_16by9_2704x1520-60.00fps.json b/Caddx/Caddx_Loris_1.8mm__2.7k_16by9_2704x1520-60.00fps.json index 5321b8ca..e09c0bd3 100644 --- a/Caddx/Caddx_Loris_1.8mm__2.7k_16by9_2704x1520-60.00fps.json +++ b/Caddx/Caddx_Loris_1.8mm__2.7k_16by9_2704x1520-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "坂本孝一郎", "camera_brand": "Caddx", - "camera_model": "Loris", + "camera_model": "LORIS", "lens_model": "1.8mm", "camera_setting": "", "calib_dimension": { diff --git a/Caddx/Caddx_Loris_4K_2K_2.7k_16by9_2704x1520-60.00fps.json b/Caddx/Caddx_Loris_4K_2K_2.7k_16by9_2704x1520-60.00fps.json index 5b0f15fa..d6fd3c62 100644 --- a/Caddx/Caddx_Loris_4K_2K_2.7k_16by9_2704x1520-60.00fps.json +++ b/Caddx/Caddx_Loris_4K_2K_2.7k_16by9_2704x1520-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ilia Kuzmin", "camera_brand": "Caddx", - "camera_model": "Loris", + "camera_model": "LORIS", "lens_model": "4K", "camera_setting": "2K", "calib_dimension": { diff --git a/Caddx/Caddx_Loris___2.7k_16by9_2704x1520-60.00fps.json b/Caddx/Caddx_Loris___2.7k_16by9_2704x1520-60.00fps.json index ce9614c2..1eb24313 100644 --- a/Caddx/Caddx_Loris___2.7k_16by9_2704x1520-60.00fps.json +++ b/Caddx/Caddx_Loris___2.7k_16by9_2704x1520-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Benji Forever", "camera_brand": "Caddx", - "camera_model": "Loris", + "camera_model": "LORIS", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Caddx/Caddx_Nebula Pro nano_2.1mm f2.1__480p_4by3_960x720-60.00fps.json b/Caddx/Caddx_Nebula Pro nano_2.1mm f2.1__480p_4by3_960x720-60.00fps.json index 41cddefd..75cbac34 100644 --- a/Caddx/Caddx_Nebula Pro nano_2.1mm f2.1__480p_4by3_960x720-60.00fps.json +++ b/Caddx/Caddx_Nebula Pro nano_2.1mm f2.1__480p_4by3_960x720-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Michael Grippentrog", "camera_brand": "Caddx", - "camera_model": "Nebula Pro nano", + "camera_model": "Nebula Pro Nano", "lens_model": "2.1mm f/2.1", "camera_setting": "", "calib_dimension": { diff --git a/Caddx/Caddx_Nebula pro micro___720p_16by9_1280x720-60.00fps.json b/Caddx/Caddx_Nebula pro micro___720p_16by9_1280x720-60.00fps.json index de81d1bb..63208182 100644 --- a/Caddx/Caddx_Nebula pro micro___720p_16by9_1280x720-60.00fps.json +++ b/Caddx/Caddx_Nebula pro micro___720p_16by9_1280x720-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Fynn Hübner", "camera_brand": "Caddx", - "camera_model": "Nebula pro micro", + "camera_model": "Nebula Pro Micro", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Caddx/Caddx_Orca 4k_Orca 4k_EIS OFF LDC OFF_2.7k_16by9_2704x1520-60.05fps.json b/Caddx/Caddx_Orca 4k_Orca 4k_EIS OFF LDC OFF_2.7k_16by9_2704x1520-60.05fps.json index 17779d1b..8f2fb1c2 100644 --- a/Caddx/Caddx_Orca 4k_Orca 4k_EIS OFF LDC OFF_2.7k_16by9_2704x1520-60.05fps.json +++ b/Caddx/Caddx_Orca 4k_Orca 4k_EIS OFF LDC OFF_2.7k_16by9_2704x1520-60.05fps.json @@ -3,7 +3,7 @@ "note": "EIS OFF LDC OFF", "calibrated_by": "Robson Langona", "camera_brand": "Caddx", - "camera_model": "Orca 4k", + "camera_model": "Orca 4K", "lens_model": "Orca 4k", "camera_setting": "", "calib_dimension": { diff --git a/Caddx/Caddx_Orca_Wide__1080p_16by9_1920x1080-0.00fps.json b/Caddx/Caddx_Orca_Wide__1080p_16by9_1920x1080-0.00fps.json index 778f734b..d8e7164b 100644 --- a/Caddx/Caddx_Orca_Wide__1080p_16by9_1920x1080-0.00fps.json +++ b/Caddx/Caddx_Orca_Wide__1080p_16by9_1920x1080-0.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Anonymous", "camera_brand": "Caddx", - "camera_model": "Orca", + "camera_model": "ORCA", "lens_model": "Wide", "camera_setting": "", "calibrator_version": "0.2.1-alpha", diff --git a/Caddx/Caddx_Orca__50 LDC OFF EIS OFF_2.7k_16by9_2704x1520-0.00fps.json b/Caddx/Caddx_Orca__50 LDC OFF EIS OFF_2.7k_16by9_2704x1520-0.00fps.json index fa5658ea..5fca9180 100644 --- a/Caddx/Caddx_Orca__50 LDC OFF EIS OFF_2.7k_16by9_2704x1520-0.00fps.json +++ b/Caddx/Caddx_Orca__50 LDC OFF EIS OFF_2.7k_16by9_2704x1520-0.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Logicenios", "camera_brand": "Caddx", - "camera_model": "Orca", + "camera_model": "ORCA", "lens_model": "", "camera_setting": "50 LDC OFF EIS OFF", "calibrator_version": "0.2.1-alpha", diff --git a/Caddx/Caddx_Orca__60 fps_1080p_4by3_1920x1440-0.00fps.json b/Caddx/Caddx_Orca__60 fps_1080p_4by3_1920x1440-0.00fps.json index e538aec4..5b21e54c 100644 --- a/Caddx/Caddx_Orca__60 fps_1080p_4by3_1920x1440-0.00fps.json +++ b/Caddx/Caddx_Orca__60 fps_1080p_4by3_1920x1440-0.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Anonymous", "camera_brand": "Caddx", - "camera_model": "Orca", + "camera_model": "ORCA", "lens_model": "", "camera_setting": "60 fps", "calibrator_version": "0.2.0-alpha", diff --git a/Caddx/Caddx_Orca__EIS off_4k_16by9_3840x2160-29.98fps.json b/Caddx/Caddx_Orca__EIS off_4k_16by9_3840x2160-29.98fps.json index 09331a6c..64ed1e47 100644 --- a/Caddx/Caddx_Orca__EIS off_4k_16by9_3840x2160-29.98fps.json +++ b/Caddx/Caddx_Orca__EIS off_4k_16by9_3840x2160-29.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Stanisław Bąk", "camera_brand": "Caddx", - "camera_model": "Orca", + "camera_model": "ORCA", "lens_model": "", "camera_setting": "EIS off", "calib_dimension": { diff --git a/Caddx/Caddx_Orca__Jaune_720p_16by9_1280x720-119.94fps.json b/Caddx/Caddx_Orca__Jaune_720p_16by9_1280x720-119.94fps.json index 4c68f57e..7ec3aee8 100644 --- a/Caddx/Caddx_Orca__Jaune_720p_16by9_1280x720-119.94fps.json +++ b/Caddx/Caddx_Orca__Jaune_720p_16by9_1280x720-119.94fps.json @@ -3,7 +3,7 @@ "note": "Jaune", "calibrated_by": "Florian Cabau", "camera_brand": "Caddx", - "camera_model": "Orca", + "camera_model": "ORCA", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Caddx/Caddx_Orca__Sergey_4k_16by9_3840x2160-24.98fps.json b/Caddx/Caddx_Orca__Sergey_4k_16by9_3840x2160-24.98fps.json index 1cb79a78..4f7b060b 100644 --- a/Caddx/Caddx_Orca__Sergey_4k_16by9_3840x2160-24.98fps.json +++ b/Caddx/Caddx_Orca__Sergey_4k_16by9_3840x2160-24.98fps.json @@ -3,7 +3,7 @@ "note": "Sergey", "calibrated_by": "Сергей Быков", "camera_brand": "Caddx", - "camera_model": "Orca", + "camera_model": "ORCA", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Caddx/Caddx_Orca___1080p_16by9_1920x1080-49.96fps.json b/Caddx/Caddx_Orca___1080p_16by9_1920x1080-49.96fps.json index e16738e2..ecf74880 100644 --- a/Caddx/Caddx_Orca___1080p_16by9_1920x1080-49.96fps.json +++ b/Caddx/Caddx_Orca___1080p_16by9_1920x1080-49.96fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Wojtek Kamiński", "camera_brand": "Caddx", - "camera_model": "Orca", + "camera_model": "ORCA", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Caddx/Caddx_Orca___1080p_16by9_1920x1080-59.24fps.json b/Caddx/Caddx_Orca___1080p_16by9_1920x1080-59.24fps.json index 518fcab8..584fea27 100644 --- a/Caddx/Caddx_Orca___1080p_16by9_1920x1080-59.24fps.json +++ b/Caddx/Caddx_Orca___1080p_16by9_1920x1080-59.24fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "rianblade", "camera_brand": "Caddx", - "camera_model": "Orca", + "camera_model": "ORCA", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Caddx/Caddx_Orca___1080p_4by3_1920x1440-50.57fps.json b/Caddx/Caddx_Orca___1080p_4by3_1920x1440-50.57fps.json index 2015ae15..0637234a 100644 --- a/Caddx/Caddx_Orca___1080p_4by3_1920x1440-50.57fps.json +++ b/Caddx/Caddx_Orca___1080p_4by3_1920x1440-50.57fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Stamatios Galiatsatos", "camera_brand": "Caddx", - "camera_model": "Orca", + "camera_model": "ORCA", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Caddx/Caddx_Orca___2.7k_16by9_2704x1520-59.96fps.json b/Caddx/Caddx_Orca___2.7k_16by9_2704x1520-59.96fps.json index 5d5f1858..ce128938 100644 --- a/Caddx/Caddx_Orca___2.7k_16by9_2704x1520-59.96fps.json +++ b/Caddx/Caddx_Orca___2.7k_16by9_2704x1520-59.96fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Paweł Godlewski", "camera_brand": "Caddx", - "camera_model": "Orca", + "camera_model": "ORCA", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Caddx/Caddx_Orca___4k_16by9_3840x2160-24.98fps.json b/Caddx/Caddx_Orca___4k_16by9_3840x2160-24.98fps.json index 3a0de10d..2e5376f1 100644 --- a/Caddx/Caddx_Orca___4k_16by9_3840x2160-24.98fps.json +++ b/Caddx/Caddx_Orca___4k_16by9_3840x2160-24.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jaco Dielemans", "camera_brand": "Caddx", - "camera_model": "Orca", + "camera_model": "ORCA", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Caddx/Caddx_Orca___4k_16by9_3840x2160-29.98fps.json b/Caddx/Caddx_Orca___4k_16by9_3840x2160-29.98fps.json index 61383006..81d9751e 100644 --- a/Caddx/Caddx_Orca___4k_16by9_3840x2160-29.98fps.json +++ b/Caddx/Caddx_Orca___4k_16by9_3840x2160-29.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "f", "camera_brand": "Caddx", - "camera_model": "Orca", + "camera_model": "ORCA", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Caddx/Caddx_Orca___4k_16by9_3840x2160-29.99fps.json b/Caddx/Caddx_Orca___4k_16by9_3840x2160-29.99fps.json index cabb4811..0ed844d5 100644 --- a/Caddx/Caddx_Orca___4k_16by9_3840x2160-29.99fps.json +++ b/Caddx/Caddx_Orca___4k_16by9_3840x2160-29.99fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Razsmithii_PC", "camera_brand": "Caddx", - "camera_model": "Orca", + "camera_model": "ORCA", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Caddx/Caddx_Orca__no eis_4k_16by9_3840x2160-29.97fps.json b/Caddx/Caddx_Orca__no eis_4k_16by9_3840x2160-29.97fps.json index bb98aaab..16ba911e 100644 --- a/Caddx/Caddx_Orca__no eis_4k_16by9_3840x2160-29.97fps.json +++ b/Caddx/Caddx_Orca__no eis_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "i like shuter speed of 240", "calibrated_by": "grognatou bouffeur", "camera_brand": "Caddx", - "camera_model": "Orca", + "camera_model": "ORCA", "lens_model": "", "camera_setting": "no eis", "calib_dimension": { diff --git a/Caddx/Caddx_Tarsier V2_TARSIER__4k_16by9_3840x2160-25.01fps.json b/Caddx/Caddx_Tarsier V2_TARSIER__4k_16by9_3840x2160-25.01fps.json index 205f941e..2f0ceb8e 100644 --- a/Caddx/Caddx_Tarsier V2_TARSIER__4k_16by9_3840x2160-25.01fps.json +++ b/Caddx/Caddx_Tarsier V2_TARSIER__4k_16by9_3840x2160-25.01fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "christos !", "camera_brand": "Caddx", - "camera_model": "Tarsier V2", + "camera_model": "TARSIER V2", "lens_model": "TARSIER", "camera_setting": "", "calib_dimension": { diff --git a/Caddx/Caddx_Tarsier V2_V2__1080p_4by3_1920x1440-50.10fps.json b/Caddx/Caddx_Tarsier V2_V2__1080p_4by3_1920x1440-50.10fps.json index 639caf92..daad0716 100644 --- a/Caddx/Caddx_Tarsier V2_V2__1080p_4by3_1920x1440-50.10fps.json +++ b/Caddx/Caddx_Tarsier V2_V2__1080p_4by3_1920x1440-50.10fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "christos !", "camera_brand": "Caddx", - "camera_model": "Tarsier V2", + "camera_model": "TARSIER V2", "lens_model": "V2", "camera_setting": "", "calib_dimension": { diff --git a/Caddx/Caddx_Tarsier v2___2.7k_16by9_2704x1520-0.00fps.json b/Caddx/Caddx_Tarsier v2___2.7k_16by9_2704x1520-0.00fps.json index ccdbc6b6..d6bbcbab 100644 --- a/Caddx/Caddx_Tarsier v2___2.7k_16by9_2704x1520-0.00fps.json +++ b/Caddx/Caddx_Tarsier v2___2.7k_16by9_2704x1520-0.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Andrea", "camera_brand": "Caddx", - "camera_model": "Tarsier v2", + "camera_model": "TARSIER V2", "lens_model": "", "camera_setting": "", "calibrator_version": "0.2.1-alpha", diff --git a/Caddx/Caddx_Turtle v2_GoPro__1080p_16by9_1920x1080-60.00fps.json b/Caddx/Caddx_Turtle v2_GoPro__1080p_16by9_1920x1080-60.00fps.json index 0abdd74c..6cd5f5f0 100644 --- a/Caddx/Caddx_Turtle v2_GoPro__1080p_16by9_1920x1080-60.00fps.json +++ b/Caddx/Caddx_Turtle v2_GoPro__1080p_16by9_1920x1080-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Manish", "camera_brand": "Caddx", - "camera_model": "Turtle v2", + "camera_model": "Turtle V2", "lens_model": "GoPro", "camera_setting": "", "calib_dimension": { diff --git a/Caddx/Caddx_nebula pro___720p_16by9_1280x720-60.00fps.json b/Caddx/Caddx_nebula pro___720p_16by9_1280x720-60.00fps.json index d4fdbd3a..4875b33b 100644 --- a/Caddx/Caddx_nebula pro___720p_16by9_1280x720-60.00fps.json +++ b/Caddx/Caddx_nebula pro___720p_16by9_1280x720-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Pavel Bardin", "camera_brand": "Caddx", - "camera_model": "nebula pro", + "camera_model": "Nebula Pro", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Caddx/Caddx_tarsier_v2 lens_v1cam_1080p_4by3_1920x1440-0.00fps.json b/Caddx/Caddx_tarsier_v2 lens_v1cam_1080p_4by3_1920x1440-0.00fps.json index 63a4b079..8d26d042 100644 --- a/Caddx/Caddx_tarsier_v2 lens_v1cam_1080p_4by3_1920x1440-0.00fps.json +++ b/Caddx/Caddx_tarsier_v2 lens_v1cam_1080p_4by3_1920x1440-0.00fps.json @@ -3,7 +3,7 @@ "note": "v1cam", "calibrated_by": "trotter", "camera_brand": "Caddx", - "camera_model": "tarsier", + "camera_model": "Tarsier", "lens_model": "v2 lens", "camera_setting": "", "calibrator_version": "0.2.1-alpha", diff --git a/Caddx/caddx_walnut cam_CaddxCaddx_Walnut_NO-LDC_4k60_4k_16by9_3840x2160-59.94fps wide__4k_16by9_3840x2160-59.94fps - Spark.json b/Caddx/caddx_walnut cam_CaddxCaddx_Walnut_NO-LDC_4k60_4k_16by9_3840x2160-59.94fps wide__4k_16by9_3840x2160-59.94fps - Spark.json index 6e27257e..d15870f2 100644 --- a/Caddx/caddx_walnut cam_CaddxCaddx_Walnut_NO-LDC_4k60_4k_16by9_3840x2160-59.94fps wide__4k_16by9_3840x2160-59.94fps - Spark.json +++ b/Caddx/caddx_walnut cam_CaddxCaddx_Walnut_NO-LDC_4k60_4k_16by9_3840x2160-59.94fps wide__4k_16by9_3840x2160-59.94fps - Spark.json @@ -2,8 +2,8 @@ "name": "caddx_walnut cam_Caddx/Caddx_Walnut_NO-LDC_4k60_4k_16by9_3840x2160-59.94fps wide__4k_16by9_3840x2160-59.94fps", "note": "", "calibrated_by": "Spark", - "camera_brand": "caddx", - "camera_model": "walnut cam", + "camera_brand": "Caddx", + "camera_model": "Walnut cam", "lens_model": "Caddx/Caddx_Walnut_NO-LDC_4k60_4k_16by9_3840x2160-59.94fps wide", "camera_setting": "", "calib_dimension": { diff --git a/Caddx/caddx_walnut cam_CaddxCaddx_Walnut_NO-LDC_4k60_4k_16by9_3840x2160-59.94fps wide__4k_16by9_3840x2160-59.94fps.json b/Caddx/caddx_walnut cam_CaddxCaddx_Walnut_NO-LDC_4k60_4k_16by9_3840x2160-59.94fps wide__4k_16by9_3840x2160-59.94fps.json index 2feea6f8..0a5304da 100644 --- a/Caddx/caddx_walnut cam_CaddxCaddx_Walnut_NO-LDC_4k60_4k_16by9_3840x2160-59.94fps wide__4k_16by9_3840x2160-59.94fps.json +++ b/Caddx/caddx_walnut cam_CaddxCaddx_Walnut_NO-LDC_4k60_4k_16by9_3840x2160-59.94fps wide__4k_16by9_3840x2160-59.94fps.json @@ -2,8 +2,8 @@ "name": "caddx_walnut cam_Caddx/Caddx_Walnut_NO-LDC_4k60_4k_16by9_3840x2160-59.94fps wide__4k_16by9_3840x2160-59.94fps", "note": "", "calibrated_by": "Spark", - "camera_brand": "caddx", - "camera_model": "walnut cam", + "camera_brand": "Caddx", + "camera_model": "Walnut cam", "lens_model": "Caddx/Caddx_Walnut_NO-LDC_4k60_4k_16by9_3840x2160-59.94fps wide", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_200d___1080p_16by9_1920x1080-25.00fps.json b/Canon/Canon_200d___1080p_16by9_1920x1080-25.00fps.json index a6c7ba13..7fb5eaa8 100644 --- a/Canon/Canon_200d___1080p_16by9_1920x1080-25.00fps.json +++ b/Canon/Canon_200d___1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "vishnu prahalathan", "camera_brand": "Canon", - "camera_model": "200d", + "camera_model": "200D", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_5D Mark iii_50 mm f1.8 STM_MagicLantern 14bit RAW_1080p_16by9_1920x1080-25.00fps.json b/Canon/Canon_5D Mark iii_50 mm f1.8 STM_MagicLantern 14bit RAW_1080p_16by9_1920x1080-25.00fps.json index c55a27cd..0da9a159 100644 --- a/Canon/Canon_5D Mark iii_50 mm f1.8 STM_MagicLantern 14bit RAW_1080p_16by9_1920x1080-25.00fps.json +++ b/Canon/Canon_5D Mark iii_50 mm f1.8 STM_MagicLantern 14bit RAW_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Pablo Esc", "camera_brand": "Canon", - "camera_model": "5D Mark iii", + "camera_model": "5D Mark III", "lens_model": "50 mm f1.8 STM", "camera_setting": "MagicLantern 14bit RAW", "calib_dimension": { diff --git a/Canon/Canon_5D Mark iii_50mm f1.8 STM_ML 2. 14bit RAW_2k_16by9_2240x1260-25.00fps.json b/Canon/Canon_5D Mark iii_50mm f1.8 STM_ML 2. 14bit RAW_2k_16by9_2240x1260-25.00fps.json index 4ad62a11..979d9b6d 100644 --- a/Canon/Canon_5D Mark iii_50mm f1.8 STM_ML 2. 14bit RAW_2k_16by9_2240x1260-25.00fps.json +++ b/Canon/Canon_5D Mark iii_50mm f1.8 STM_ML 2. 14bit RAW_2k_16by9_2240x1260-25.00fps.json @@ -3,7 +3,7 @@ "note": "2.57x", "calibrated_by": "Sumit", "camera_brand": "Canon", - "camera_model": "5D Mark iii", + "camera_model": "5D Mark III", "lens_model": "50mm f1.8 STM", "camera_setting": "ML 2. 14bit RAW", "calib_dimension": { diff --git a/Canon/Canon_5D Mark iii_50mm f1.8 STM_ML 3.5k_2k_16by9_2240x1260-25.00fps.json b/Canon/Canon_5D Mark iii_50mm f1.8 STM_ML 3.5k_2k_16by9_2240x1260-25.00fps.json index 95836a93..f17257c8 100644 --- a/Canon/Canon_5D Mark iii_50mm f1.8 STM_ML 3.5k_2k_16by9_2240x1260-25.00fps.json +++ b/Canon/Canon_5D Mark iii_50mm f1.8 STM_ML 3.5k_2k_16by9_2240x1260-25.00fps.json @@ -3,7 +3,7 @@ "note": "5x", "calibrated_by": "Sumit", "camera_brand": "Canon", - "camera_model": "5D Mark iii", + "camera_model": "5D Mark III", "lens_model": "50mm f1.8 STM", "camera_setting": "ML 3.5k", "calib_dimension": { diff --git a/Canon/Canon_5D mark II_24mm_f 2.0_1080p_16by9_1920x1080-25.00fps - huso.json b/Canon/Canon_5D mark II_24mm_f 2.0_1080p_16by9_1920x1080-25.00fps - huso.json index a4b938a1..6a7f2573 100644 --- a/Canon/Canon_5D mark II_24mm_f 2.0_1080p_16by9_1920x1080-25.00fps - huso.json +++ b/Canon/Canon_5D mark II_24mm_f 2.0_1080p_16by9_1920x1080-25.00fps - huso.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "huso", "camera_brand": "Canon", - "camera_model": "5D mark II", + "camera_model": "5D Mark II", "lens_model": "24mm", "camera_setting": "f 2.0", "calib_dimension": { diff --git a/Canon/Canon_5D mark IV_EF 50mm 1.8 STM_50, 1.8, 23.9, FHD_1080p_16by9_1920x1080-23.98fps.json b/Canon/Canon_5D mark IV_EF 50mm 1.8 STM_50, 1.8, 23.9, FHD_1080p_16by9_1920x1080-23.98fps.json index d18694f6..cb7a842b 100644 --- a/Canon/Canon_5D mark IV_EF 50mm 1.8 STM_50, 1.8, 23.9, FHD_1080p_16by9_1920x1080-23.98fps.json +++ b/Canon/Canon_5D mark IV_EF 50mm 1.8 STM_50, 1.8, 23.9, FHD_1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "RLM Freez", "camera_brand": "Canon", - "camera_model": "5D mark IV", + "camera_model": "5D Mark IV", "lens_model": "EF 50mm 1.8 STM", "camera_setting": "50, 1.8, 23.9, FHD", "calib_dimension": { diff --git a/Canon/Canon_5d mark III_canon ef 70-200 L USM__1080p_16by9_1920x1080-25.00fps.json b/Canon/Canon_5d mark III_canon ef 70-200 L USM__1080p_16by9_1920x1080-25.00fps.json index 758a42f3..dbe79844 100644 --- a/Canon/Canon_5d mark III_canon ef 70-200 L USM__1080p_16by9_1920x1080-25.00fps.json +++ b/Canon/Canon_5d mark III_canon ef 70-200 L USM__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "victor gonzalez", "camera_brand": "Canon", - "camera_model": "5d mark III", + "camera_model": "5D Mark III", "lens_model": "canon ef 70-200 L USM", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_5d4_EF 24-70 2.8_HD_1080p_16by9_1920x1080-50.00fps.json b/Canon/Canon_5d4_EF 24-70 2.8_HD_1080p_16by9_1920x1080-50.00fps.json index df137de3..3d692422 100644 --- a/Canon/Canon_5d4_EF 24-70 2.8_HD_1080p_16by9_1920x1080-50.00fps.json +++ b/Canon/Canon_5d4_EF 24-70 2.8_HD_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "24mm", "calibrated_by": "凡人", "camera_brand": "Canon", - "camera_model": "5d4", + "camera_model": "5D4", "lens_model": "EF 24-70 2.8", "camera_setting": "HD", "calib_dimension": { diff --git a/Canon/Canon_600d_Canon kit lenses2__1080p_16by9_1920x1080-25.00fps.json b/Canon/Canon_600d_Canon kit lenses2__1080p_16by9_1920x1080-25.00fps.json index 29f80ea8..07affd60 100644 --- a/Canon/Canon_600d_Canon kit lenses2__1080p_16by9_1920x1080-25.00fps.json +++ b/Canon/Canon_600d_Canon kit lenses2__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "BigBlack", "camera_brand": "Canon", - "camera_model": "600d", + "camera_model": "600D", "lens_model": "Canon kit lenses2", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_6D mark II_24-70__1080p_16by9_1920x1080-23.98fps.json b/Canon/Canon_6D mark II_24-70__1080p_16by9_1920x1080-23.98fps.json index b23c4d9f..0462475d 100644 --- a/Canon/Canon_6D mark II_24-70__1080p_16by9_1920x1080-23.98fps.json +++ b/Canon/Canon_6D mark II_24-70__1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Alex", "camera_brand": "Canon", - "camera_model": "6D mark II", + "camera_model": "6D Mark II", "lens_model": "24-70", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_6D mark II_canon 50mm__1080p_16by9_1920x1080-59.94fps.json b/Canon/Canon_6D mark II_canon 50mm__1080p_16by9_1920x1080-59.94fps.json index 4ac66a0f..cd791367 100644 --- a/Canon/Canon_6D mark II_canon 50mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Canon/Canon_6D mark II_canon 50mm__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Trabajo", "camera_brand": "Canon", - "camera_model": "6D mark II", + "camera_model": "6D Mark II", "lens_model": "canon 50mm", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_6d Mark ii_canon zoom lens ef 24-70 1_2.8 l ii usm_HD_720p_16by9_1280x720-50.00fps.json b/Canon/Canon_6d Mark ii_canon zoom lens ef 24-70 1_2.8 l ii usm_HD_720p_16by9_1280x720-50.00fps.json index 225287d9..6b34776f 100644 --- a/Canon/Canon_6d Mark ii_canon zoom lens ef 24-70 1_2.8 l ii usm_HD_720p_16by9_1280x720-50.00fps.json +++ b/Canon/Canon_6d Mark ii_canon zoom lens ef 24-70 1_2.8 l ii usm_HD_720p_16by9_1280x720-50.00fps.json @@ -3,7 +3,7 @@ "note": "24MM", "calibrated_by": "User", "camera_brand": "Canon", - "camera_model": "6d Mark ii", + "camera_model": "6D Mark II", "lens_model": "canon zoom lens ef 24-70 1:2.8 l ii usm", "camera_setting": "HD", "calib_dimension": { diff --git a/Canon/Canon_6d_28mm__1080p_16by9_1920x1080-29.97fps.json b/Canon/Canon_6d_28mm__1080p_16by9_1920x1080-29.97fps.json index 55a1c84f..ba5648ea 100644 --- a/Canon/Canon_6d_28mm__1080p_16by9_1920x1080-29.97fps.json +++ b/Canon/Canon_6d_28mm__1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "UMR", "camera_brand": "Canon", - "camera_model": "6d", + "camera_model": "6D", "lens_model": "28mm", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_6d_50mm__1080p_16by9_1920x1080-29.97fps.json b/Canon/Canon_6d_50mm__1080p_16by9_1920x1080-29.97fps.json index c523a344..b58d51c4 100644 --- a/Canon/Canon_6d_50mm__1080p_16by9_1920x1080-29.97fps.json +++ b/Canon/Canon_6d_50mm__1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "UMR", "camera_brand": "Canon", - "camera_model": "6d", + "camera_model": "6D", "lens_model": "50mm", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_700D T5i_50mm 1.8__1080p_16by9_1920x1080-29.97fps.json b/Canon/Canon_700D T5i_50mm 1.8__1080p_16by9_1920x1080-29.97fps.json index 8ad5e5e7..4b81d137 100644 --- a/Canon/Canon_700D T5i_50mm 1.8__1080p_16by9_1920x1080-29.97fps.json +++ b/Canon/Canon_700D T5i_50mm 1.8__1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Xunas", "camera_brand": "Canon", - "camera_model": "700D / T5i", + "camera_model": "700D / T5I", "lens_model": "50mm 1.8", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_700d_efs 55-250mm__1080p_16by9_1920x1080-29.97fps.json b/Canon/Canon_700d_efs 55-250mm__1080p_16by9_1920x1080-29.97fps.json index 976bba8d..f2d24e60 100644 --- a/Canon/Canon_700d_efs 55-250mm__1080p_16by9_1920x1080-29.97fps.json +++ b/Canon/Canon_700d_efs 55-250mm__1080p_16by9_1920x1080-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Abel", "calibrator_version": "1.5.4", "camera_brand": "Canon", - "camera_model": "700d", + "camera_model": "700D", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Canon/Canon_70d_18-200_125_1080p_16by9_1920x1080-25.00fps.json b/Canon/Canon_70d_18-200_125_1080p_16by9_1920x1080-25.00fps.json index 8cb51983..fd090bb9 100644 --- a/Canon/Canon_70d_18-200_125_1080p_16by9_1920x1080-25.00fps.json +++ b/Canon/Canon_70d_18-200_125_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "黄仕杭", "camera_brand": "Canon", - "camera_model": "70d", + "camera_model": "70D", "lens_model": "18-200", "camera_setting": "125快门", "calib_dimension": { diff --git a/Canon/Canon_70d_18-200__1080p_16by9_1920x1080-25.00fps.json b/Canon/Canon_70d_18-200__1080p_16by9_1920x1080-25.00fps.json index 80d39131..797bca9d 100644 --- a/Canon/Canon_70d_18-200__1080p_16by9_1920x1080-25.00fps.json +++ b/Canon/Canon_70d_18-200__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "黄仕杭", "camera_brand": "Canon", - "camera_model": "70d", + "camera_model": "70D", "lens_model": "佳能18-200", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_70d_50MM.8_125 1.8_1080p_16by9_1920x1080-25.00fps.json b/Canon/Canon_70d_50MM.8_125 1.8_1080p_16by9_1920x1080-25.00fps.json index 37dedef1..904fe3e1 100644 --- a/Canon/Canon_70d_50MM.8_125 1.8_1080p_16by9_1920x1080-25.00fps.json +++ b/Canon/Canon_70d_50MM.8_125 1.8_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "黄仕杭", "camera_brand": "Canon", - "camera_model": "70d", + "camera_model": "70D", "lens_model": "50MM.8", "camera_setting": "125 1.8", "calib_dimension": { diff --git a/Canon/Canon_70d_50mm1.8__1080p_16by9_1920x1080-25.00fps.json b/Canon/Canon_70d_50mm1.8__1080p_16by9_1920x1080-25.00fps.json index daabfcc3..d029dd2d 100644 --- a/Canon/Canon_70d_50mm1.8__1080p_16by9_1920x1080-25.00fps.json +++ b/Canon/Canon_70d_50mm1.8__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "黄仕杭", "camera_brand": "Canon", - "camera_model": "70d", + "camera_model": "70D", "lens_model": "50mm1.8", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_70d_50mm_125 1.8_1080p_16by9_1920x1080-25.00fps.json b/Canon/Canon_70d_50mm_125 1.8_1080p_16by9_1920x1080-25.00fps.json index a3734585..08a316f8 100644 --- a/Canon/Canon_70d_50mm_125 1.8_1080p_16by9_1920x1080-25.00fps.json +++ b/Canon/Canon_70d_50mm_125 1.8_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "黄仕杭", "camera_brand": "Canon", - "camera_model": "70d", + "camera_model": "70D", "lens_model": "50mm", "camera_setting": "125 1.8", "calib_dimension": { diff --git a/Canon/Canon_70d_50mm_125_1080p_16by9_1920x1080-25.00fps.json b/Canon/Canon_70d_50mm_125_1080p_16by9_1920x1080-25.00fps.json index 66c066d7..509279a8 100644 --- a/Canon/Canon_70d_50mm_125_1080p_16by9_1920x1080-25.00fps.json +++ b/Canon/Canon_70d_50mm_125_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "黄仕杭", "camera_brand": "Canon", - "camera_model": "70d", + "camera_model": "70D", "lens_model": "50mm", "camera_setting": "125", "calib_dimension": { diff --git a/Canon/Canon_750d_conon zoom 55-250__1080p_16by9_1920x1080-29.97fps.json b/Canon/Canon_750d_conon zoom 55-250__1080p_16by9_1920x1080-29.97fps.json index 325c8082..3ca2680b 100644 --- a/Canon/Canon_750d_conon zoom 55-250__1080p_16by9_1920x1080-29.97fps.json +++ b/Canon/Canon_750d_conon zoom 55-250__1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Garcia Joel", "camera_brand": "Canon", - "camera_model": "750d", + "camera_model": "750D", "lens_model": "conon zoom 55-250", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_80d_sigma 18-35_shutter - 1000_1080p_16by9_1920x1080-25.00fps.json b/Canon/Canon_80d_sigma 18-35_shutter - 1000_1080p_16by9_1920x1080-25.00fps.json index 797e02a8..7fbf0932 100644 --- a/Canon/Canon_80d_sigma 18-35_shutter - 1000_1080p_16by9_1920x1080-25.00fps.json +++ b/Canon/Canon_80d_sigma 18-35_shutter - 1000_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "АЭАЭАЭАЭАЭАЭАЭАЭ", "calibrated_by": "Артём Быков", "camera_brand": "Canon", - "camera_model": "80d", + "camera_model": "80D", "lens_model": "sigma 18-35", "camera_setting": "shutter - 1000", "calib_dimension": { diff --git a/Canon/Canon_80d_sigma dc 17-50 2.8__1080p_16by9_1920x1080-59.94fps.json b/Canon/Canon_80d_sigma dc 17-50 2.8__1080p_16by9_1920x1080-59.94fps.json index d3f3a047..72cc0da2 100644 --- a/Canon/Canon_80d_sigma dc 17-50 2.8__1080p_16by9_1920x1080-59.94fps.json +++ b/Canon/Canon_80d_sigma dc 17-50 2.8__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "cube_film", "camera_brand": "Canon", - "camera_model": "80d", + "camera_model": "80D", "lens_model": "sigma dc 17-50 2.8", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_EOS 100d_18-55_18mm 5k 21_9_C4k_2.20by1_4992x2268-23.98fps - jules.p.json b/Canon/Canon_EOS 100d_18-55_18mm 5k 21_9_C4k_2.20by1_4992x2268-23.98fps - jules.p.json index 4283cf47..489b5298 100644 --- a/Canon/Canon_EOS 100d_18-55_18mm 5k 21_9_C4k_2.20by1_4992x2268-23.98fps - jules.p.json +++ b/Canon/Canon_EOS 100d_18-55_18mm 5k 21_9_C4k_2.20by1_4992x2268-23.98fps - jules.p.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "jules.p", "camera_brand": "Canon", - "camera_model": "EOS 100d", + "camera_model": "EOS 100D", "lens_model": "18-55", "camera_setting": "18mm 5k 21:9", "calib_dimension": { diff --git a/Canon/Canon_EOS 2000d_ef-s__720p_16by9_1280x720-59.94fps.json b/Canon/Canon_EOS 2000d_ef-s__720p_16by9_1280x720-59.94fps.json index 913596ad..11bb738c 100644 --- a/Canon/Canon_EOS 2000d_ef-s__720p_16by9_1280x720-59.94fps.json +++ b/Canon/Canon_EOS 2000d_ef-s__720p_16by9_1280x720-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Gabriele", "camera_brand": "Canon", - "camera_model": "EOS 2000d", + "camera_model": "EOS 2000D", "lens_model": "ef-s", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_EOS 200d_efs 18-55__1080p_16by9_1920x1080-50.00fps.json b/Canon/Canon_EOS 200d_efs 18-55__1080p_16by9_1920x1080-50.00fps.json index 02e0a298..f73811bb 100644 --- a/Canon/Canon_EOS 200d_efs 18-55__1080p_16by9_1920x1080-50.00fps.json +++ b/Canon/Canon_EOS 200d_efs 18-55__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "袁永远", "camera_brand": "Canon", - "camera_model": "EOS 200d", + "camera_model": "EOS 200D", "lens_model": "efs 18-55", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_EOS 5d mark iv_Canon 16-35__C4k_1.90by1_4096x2160-29.97fps.json b/Canon/Canon_EOS 5d mark iv_Canon 16-35__C4k_1.90by1_4096x2160-29.97fps.json index db961ff2..1c19fb1b 100644 --- a/Canon/Canon_EOS 5d mark iv_Canon 16-35__C4k_1.90by1_4096x2160-29.97fps.json +++ b/Canon/Canon_EOS 5d mark iv_Canon 16-35__C4k_1.90by1_4096x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Алексей", "camera_brand": "Canon", - "camera_model": "EOS 5d mark iv", + "camera_model": "EOS 5D Mark IV", "lens_model": "Canon 16-35", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_EOS 600d_prinzflex 28mm f2.8__1080p_16by9_1920x1080-25.00fps.json b/Canon/Canon_EOS 600d_prinzflex 28mm f2.8__1080p_16by9_1920x1080-25.00fps.json index 34aad804..c9f934f0 100644 --- a/Canon/Canon_EOS 600d_prinzflex 28mm f2.8__1080p_16by9_1920x1080-25.00fps.json +++ b/Canon/Canon_EOS 600d_prinzflex 28mm f2.8__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Giovanni Riccio", "camera_brand": "Canon", - "camera_model": "EOS 600d", + "camera_model": "EOS 600D", "lens_model": "prinzflex 28mm f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_EOS 6D mark ii_Canon 50mm 1.4__1080p_16by9_1920x1080-59.94fps.json b/Canon/Canon_EOS 6D mark ii_Canon 50mm 1.4__1080p_16by9_1920x1080-59.94fps.json index 50ad42d4..77cff8d5 100644 --- a/Canon/Canon_EOS 6D mark ii_Canon 50mm 1.4__1080p_16by9_1920x1080-59.94fps.json +++ b/Canon/Canon_EOS 6D mark ii_Canon 50mm 1.4__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jonathan Boone", "camera_brand": "Canon", - "camera_model": "EOS 6D mark ii", + "camera_model": "EOS 6D Mark II", "lens_model": "Canon 50mm 1.4", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_EOS 6D mark ii_Canon EF 24-105 f4_Lens IS off_1080p_16by9_1920x1080-59.94fps.json b/Canon/Canon_EOS 6D mark ii_Canon EF 24-105 f4_Lens IS off_1080p_16by9_1920x1080-59.94fps.json index 7a1f6fff..6365e1ed 100644 --- a/Canon/Canon_EOS 6D mark ii_Canon EF 24-105 f4_Lens IS off_1080p_16by9_1920x1080-59.94fps.json +++ b/Canon/Canon_EOS 6D mark ii_Canon EF 24-105 f4_Lens IS off_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "Lens IS off", "calibrated_by": "Jonathan Boone", "camera_brand": "Canon", - "camera_model": "EOS 6D mark ii", + "camera_model": "EOS 6D Mark II", "lens_model": "Canon EF 24-105 f4", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_EOS 80d_Sigma Dc 17-70mm 2.8-4.5__1080p_16by9_1920x1080-59.94fps - Luca Roverati.json b/Canon/Canon_EOS 80d_Sigma Dc 17-70mm 2.8-4.5__1080p_16by9_1920x1080-59.94fps - Luca Roverati.json index e700f1c0..c515a1a4 100644 --- a/Canon/Canon_EOS 80d_Sigma Dc 17-70mm 2.8-4.5__1080p_16by9_1920x1080-59.94fps - Luca Roverati.json +++ b/Canon/Canon_EOS 80d_Sigma Dc 17-70mm 2.8-4.5__1080p_16by9_1920x1080-59.94fps - Luca Roverati.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Luca Roverati", "camera_brand": "Canon", - "camera_model": "EOS 80d", + "camera_model": "EOS 80D", "lens_model": "Sigma Dc 17-70mm 2.8-4.5", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_EOS R5c_24-105 f4_24mm Clog3_4k_16by9_3840x2160-50.00fps.json b/Canon/Canon_EOS R5c_24-105 f4_24mm Clog3_4k_16by9_3840x2160-50.00fps.json index 7ca19dbc..eaa05bb3 100644 --- a/Canon/Canon_EOS R5c_24-105 f4_24mm Clog3_4k_16by9_3840x2160-50.00fps.json +++ b/Canon/Canon_EOS R5c_24-105 f4_24mm Clog3_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "4K", "calibrated_by": "Shawn", "camera_brand": "Canon", - "camera_model": "EOS R5c", + "camera_model": "EOS R5C", "lens_model": "24-105 f4", "camera_setting": "24mm Clog3", "calib_dimension": { diff --git a/Canon/Canon_EOS R5c_Canon 50mm__4k_16by9_3840x2160-50.00fps.json b/Canon/Canon_EOS R5c_Canon 50mm__4k_16by9_3840x2160-50.00fps.json index ee1c9ca1..74482964 100644 --- a/Canon/Canon_EOS R5c_Canon 50mm__4k_16by9_3840x2160-50.00fps.json +++ b/Canon/Canon_EOS R5c_Canon 50mm__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "valentin schennach", "camera_brand": "Canon", - "camera_model": "EOS R5c", + "camera_model": "EOS R5C", "lens_model": "Canon 50mm", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_EOS R5c_Laowa 11mm 4.5 FF_8K RAW LT_6k_16by9_7680x4320-59.94fps.json b/Canon/Canon_EOS R5c_Laowa 11mm 4.5 FF_8K RAW LT_6k_16by9_7680x4320-59.94fps.json index 2ec9f0ec..6e94cd80 100644 --- a/Canon/Canon_EOS R5c_Laowa 11mm 4.5 FF_8K RAW LT_6k_16by9_7680x4320-59.94fps.json +++ b/Canon/Canon_EOS R5c_Laowa 11mm 4.5 FF_8K RAW LT_6k_16by9_7680x4320-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Edward Robison", "camera_brand": "Canon", - "camera_model": "EOS R5c", + "camera_model": "EOS R5C", "lens_model": "Laowa 11mm 4.5 FF", "camera_setting": "8K RAW LT", "calib_dimension": { diff --git a/Canon/Canon_EOS R5c_Laowa 12-24mm_12mm_4k_16by9_3840x2160-50.00fps.json b/Canon/Canon_EOS R5c_Laowa 12-24mm_12mm_4k_16by9_3840x2160-50.00fps.json index 779fdc50..16f39d34 100644 --- a/Canon/Canon_EOS R5c_Laowa 12-24mm_12mm_4k_16by9_3840x2160-50.00fps.json +++ b/Canon/Canon_EOS R5c_Laowa 12-24mm_12mm_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "shawn", "camera_brand": "Canon", - "camera_model": "EOS R5c", + "camera_model": "EOS R5C", "lens_model": "Laowa 12-24mm", "camera_setting": "12mm", "calib_dimension": { diff --git a/Canon/Canon_EOS R5c_Laowa 14mm F2,0 Zero-D_24p_4k_16by9_3840x2160-59.94fps.json b/Canon/Canon_EOS R5c_Laowa 14mm F2,0 Zero-D_24p_4k_16by9_3840x2160-59.94fps.json index 186f24db..b52b5cbf 100644 --- a/Canon/Canon_EOS R5c_Laowa 14mm F2,0 Zero-D_24p_4k_16by9_3840x2160-59.94fps.json +++ b/Canon/Canon_EOS R5c_Laowa 14mm F2,0 Zero-D_24p_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "YeomPD", "camera_brand": "Canon", - "camera_model": "EOS R5c", + "camera_model": "EOS R5C", "lens_model": "Laowa 14mm F2,0 Zero-D", "camera_setting": "24p", "calib_dimension": { diff --git a/Canon/Canon_EOS R5c_Laowa 14mm F4.0_8K_6k_16by9_7680x4320-25.00fps.json b/Canon/Canon_EOS R5c_Laowa 14mm F4.0_8K_6k_16by9_7680x4320-25.00fps.json index c4923d9c..ca82c34c 100644 --- a/Canon/Canon_EOS R5c_Laowa 14mm F4.0_8K_6k_16by9_7680x4320-25.00fps.json +++ b/Canon/Canon_EOS R5c_Laowa 14mm F4.0_8K_6k_16by9_7680x4320-25.00fps.json @@ -3,7 +3,7 @@ "note": "25P", "calibrated_by": "His_FPV", "camera_brand": "Canon", - "camera_model": "EOS R5c", + "camera_model": "EOS R5C", "lens_model": "Laowa 14mm F4.0", "camera_setting": "8K", "calib_dimension": { diff --git a/Canon/Canon_EOS R5c_Laowa 14mm F4.0_8K_6k_16by9_7680x4320-29.97fps.json b/Canon/Canon_EOS R5c_Laowa 14mm F4.0_8K_6k_16by9_7680x4320-29.97fps.json index 05feb2ec..469c9cde 100644 --- a/Canon/Canon_EOS R5c_Laowa 14mm F4.0_8K_6k_16by9_7680x4320-29.97fps.json +++ b/Canon/Canon_EOS R5c_Laowa 14mm F4.0_8K_6k_16by9_7680x4320-29.97fps.json @@ -3,7 +3,7 @@ "note": "30P", "calibrated_by": "His_FPV", "camera_brand": "Canon", - "camera_model": "EOS R5c", + "camera_model": "EOS R5C", "lens_model": "Laowa 14mm F4.0", "camera_setting": "8K", "calib_dimension": { diff --git a/Canon/Canon_EOS R5c_Laowa10mmF4_h265 420 10bit_6k_16by9_7680x4320-25.00fps.json b/Canon/Canon_EOS R5c_Laowa10mmF4_h265 420 10bit_6k_16by9_7680x4320-25.00fps.json index 5e5a9752..9d8b56fc 100644 --- a/Canon/Canon_EOS R5c_Laowa10mmF4_h265 420 10bit_6k_16by9_7680x4320-25.00fps.json +++ b/Canon/Canon_EOS R5c_Laowa10mmF4_h265 420 10bit_6k_16by9_7680x4320-25.00fps.json @@ -3,7 +3,7 @@ "note": "709", "calibrated_by": "His_FPV", "camera_brand": "Canon", - "camera_model": "EOS R5c", + "camera_model": "EOS R5C", "lens_model": "Laowa10mmF4", "camera_setting": "h265 420 10bit", "calib_dimension": { diff --git a/Canon/Canon_EOS R5c_RF 24 105 f4_@105mm_C4k_1.90by1_4096x2160-59.94fps.json b/Canon/Canon_EOS R5c_RF 24 105 f4_@105mm_C4k_1.90by1_4096x2160-59.94fps.json index f90a2488..721b7e0f 100644 --- a/Canon/Canon_EOS R5c_RF 24 105 f4_@105mm_C4k_1.90by1_4096x2160-59.94fps.json +++ b/Canon/Canon_EOS R5c_RF 24 105 f4_@105mm_C4k_1.90by1_4096x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "fullframe", "calibrated_by": "guns120", "camera_brand": "Canon", - "camera_model": "EOS R5c", + "camera_model": "EOS R5C", "lens_model": "RF 24 105 f4", "camera_setting": "@105mm", "calib_dimension": { diff --git a/Canon/Canon_EOS R5c_RF16 2.8_RAW_8k_1.90by1_8192x4320-29.97fps.json b/Canon/Canon_EOS R5c_RF16 2.8_RAW_8k_1.90by1_8192x4320-29.97fps.json index e5552782..4828fd74 100644 --- a/Canon/Canon_EOS R5c_RF16 2.8_RAW_8k_1.90by1_8192x4320-29.97fps.json +++ b/Canon/Canon_EOS R5c_RF16 2.8_RAW_8k_1.90by1_8192x4320-29.97fps.json @@ -3,7 +3,7 @@ "note": "Distorted", "calibrated_by": "guns120", "camera_brand": "Canon", - "camera_model": "EOS R5c", + "camera_model": "EOS R5C", "lens_model": "RF16 2.8", "camera_setting": "RAW", "calib_dimension": { diff --git a/Canon/Canon_EOS R5c_RF16 2.8_S35 crop_5k_1.90by1_5951x3140-29.97fps.json b/Canon/Canon_EOS R5c_RF16 2.8_S35 crop_5k_1.90by1_5951x3140-29.97fps.json index 143f32ec..3b74c319 100644 --- a/Canon/Canon_EOS R5c_RF16 2.8_S35 crop_5k_1.90by1_5951x3140-29.97fps.json +++ b/Canon/Canon_EOS R5c_RF16 2.8_S35 crop_5k_1.90by1_5951x3140-29.97fps.json @@ -3,7 +3,7 @@ "note": "distorted", "calibrated_by": "guns120", "camera_brand": "Canon", - "camera_model": "EOS R5c", + "camera_model": "EOS R5C", "lens_model": "RF16 2.8", "camera_setting": "S35 crop", "calib_dimension": { diff --git a/Canon/Canon_EOS R5c_RF16 2.8_S35 crop_C4k_1.90by1_4096x2160-29.97fps.json b/Canon/Canon_EOS R5c_RF16 2.8_S35 crop_C4k_1.90by1_4096x2160-29.97fps.json index b4127e39..01967172 100644 --- a/Canon/Canon_EOS R5c_RF16 2.8_S35 crop_C4k_1.90by1_4096x2160-29.97fps.json +++ b/Canon/Canon_EOS R5c_RF16 2.8_S35 crop_C4k_1.90by1_4096x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "undistorted", "calibrated_by": "guns120", "camera_brand": "Canon", - "camera_model": "EOS R5c", + "camera_model": "EOS R5C", "lens_model": "RF16 2.8", "camera_setting": "S35 crop", "calib_dimension": { diff --git a/Canon/Canon_EOS R5c_RF16 2.8_xfavc_C4k_1.90by1_4096x2160-59.94fps.json b/Canon/Canon_EOS R5c_RF16 2.8_xfavc_C4k_1.90by1_4096x2160-59.94fps.json index 6504a35c..bcbb28bd 100644 --- a/Canon/Canon_EOS R5c_RF16 2.8_xfavc_C4k_1.90by1_4096x2160-59.94fps.json +++ b/Canon/Canon_EOS R5c_RF16 2.8_xfavc_C4k_1.90by1_4096x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "59.97fps", "calibrated_by": "guns120", "camera_brand": "Canon", - "camera_model": "EOS R5c", + "camera_model": "EOS R5C", "lens_model": "RF16 2.8", "camera_setting": "xfavc", "calib_dimension": { diff --git a/Canon/Canon_EOS R5c_RF24 105 f4_@50mm_C4k_1.90by1_4096x2160-59.94fps.json b/Canon/Canon_EOS R5c_RF24 105 f4_@50mm_C4k_1.90by1_4096x2160-59.94fps.json index d2b7f107..9d0a5e0c 100644 --- a/Canon/Canon_EOS R5c_RF24 105 f4_@50mm_C4k_1.90by1_4096x2160-59.94fps.json +++ b/Canon/Canon_EOS R5c_RF24 105 f4_@50mm_C4k_1.90by1_4096x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "full frame", "calibrated_by": "guns120", "camera_brand": "Canon", - "camera_model": "EOS R5c", + "camera_model": "EOS R5C", "lens_model": "RF24 105 f4", "camera_setting": "@50mm", "calib_dimension": { diff --git a/Canon/Canon_EOS R5c_rf24 105F4L_uhd_4k_16by9_3840x2160-59.94fps.json b/Canon/Canon_EOS R5c_rf24 105F4L_uhd_4k_16by9_3840x2160-59.94fps.json index 646e3650..bcf1b285 100644 --- a/Canon/Canon_EOS R5c_rf24 105F4L_uhd_4k_16by9_3840x2160-59.94fps.json +++ b/Canon/Canon_EOS R5c_rf24 105F4L_uhd_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "distorted", "calibrated_by": "guns120", "camera_brand": "Canon", - "camera_model": "EOS R5c", + "camera_model": "EOS R5C", "lens_model": "rf24 105F4L", "camera_setting": "uhd", "calib_dimension": { diff --git a/Canon/Canon_EOS REBEL T5i_EFS 18-55mm_HD_1080p_16by9_1920x1080-29.97fps.json b/Canon/Canon_EOS REBEL T5i_EFS 18-55mm_HD_1080p_16by9_1920x1080-29.97fps.json index eb92ab28..2526af2d 100644 --- a/Canon/Canon_EOS REBEL T5i_EFS 18-55mm_HD_1080p_16by9_1920x1080-29.97fps.json +++ b/Canon/Canon_EOS REBEL T5i_EFS 18-55mm_HD_1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "18 mm", "calibrated_by": "Aaron", "camera_brand": "Canon", - "camera_model": "EOS REBEL T5i", + "camera_model": "EOS Rebel T5i", "lens_model": "EFS 18-55mm", "camera_setting": "HD", "calib_dimension": { diff --git a/Canon/Canon_EOS Rebel t8i_ef 50 mm f1.8__1080p_16by9_1920x1080-59.94fps.json b/Canon/Canon_EOS Rebel t8i_ef 50 mm f1.8__1080p_16by9_1920x1080-59.94fps.json index 2bb7f7f9..e8a8589c 100644 --- a/Canon/Canon_EOS Rebel t8i_ef 50 mm f1.8__1080p_16by9_1920x1080-59.94fps.json +++ b/Canon/Canon_EOS Rebel t8i_ef 50 mm f1.8__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Antonio Cruz", "camera_brand": "Canon", - "camera_model": "EOS Rebel t8i", + "camera_model": "EOS Rebel T8i", "lens_model": "ef 50 mm f/1.8", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_EOS c200_Sigma 18-35 @35__4k_16by9_3840x2160-59.94fps.json b/Canon/Canon_EOS c200_Sigma 18-35 @35__4k_16by9_3840x2160-59.94fps.json index 20acc02f..2974bd3e 100644 --- a/Canon/Canon_EOS c200_Sigma 18-35 @35__4k_16by9_3840x2160-59.94fps.json +++ b/Canon/Canon_EOS c200_Sigma 18-35 @35__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Brett Kerr", "camera_brand": "Canon", - "camera_model": "EOS c200", + "camera_model": "EOS C200", "lens_model": "Sigma 18-35 @35", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_EOS m_35mm f1.8_14 bin RAW_2.5k_7by3_2520x1080-23.98fps - Michael Voit.json b/Canon/Canon_EOS m_35mm f1.8_14 bin RAW_2.5k_7by3_2520x1080-23.98fps - Michael Voit.json index fa7491f6..4a6c2a8d 100644 --- a/Canon/Canon_EOS m_35mm f1.8_14 bin RAW_2.5k_7by3_2520x1080-23.98fps - Michael Voit.json +++ b/Canon/Canon_EOS m_35mm f1.8_14 bin RAW_2.5k_7by3_2520x1080-23.98fps - Michael Voit.json @@ -3,7 +3,7 @@ "note": "Magic Lantern Firmware", "calibrated_by": "Michael Voit", "camera_brand": "Canon", - "camera_model": "EOS m", + "camera_model": "EOS M", "lens_model": "35mm f/1.8", "camera_setting": "14 bin RAW", "calib_dimension": { diff --git a/Canon/Canon_EOS m_C35mm__2k_16by9_2192x1234-25.00fps.json b/Canon/Canon_EOS m_C35mm__2k_16by9_2192x1234-25.00fps.json index 8a9fd24d..f39a82a9 100644 --- a/Canon/Canon_EOS m_C35mm__2k_16by9_2192x1234-25.00fps.json +++ b/Canon/Canon_EOS m_C35mm__2k_16by9_2192x1234-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "qh sun", "camera_brand": "Canon", - "camera_model": "EOS m", + "camera_model": "EOS M", "lens_model": "C口35mm", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_EOS m_ef-s 24mm 2.8__720p_16by9_1736x976-24.01fps.json b/Canon/Canon_EOS m_ef-s 24mm 2.8__720p_16by9_1736x976-24.01fps.json index 89c487e8..6c2e530d 100644 --- a/Canon/Canon_EOS m_ef-s 24mm 2.8__720p_16by9_1736x976-24.01fps.json +++ b/Canon/Canon_EOS m_ef-s 24mm 2.8__720p_16by9_1736x976-24.01fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "smallbear_M1", "camera_brand": "Canon", - "camera_model": "EOS m", + "camera_model": "EOS M", "lens_model": "ef-s 24mm 2.8", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_EOS r6 mark II_RF24-105mm F4-7.1 IS STM_24mm_1080p_16by9_1920x1080-59.94fps - 2.json b/Canon/Canon_EOS r6 mark II_RF24-105mm F4-7.1 IS STM_24mm_1080p_16by9_1920x1080-59.94fps - 2.json index e25105b0..71ded46a 100644 --- a/Canon/Canon_EOS r6 mark II_RF24-105mm F4-7.1 IS STM_24mm_1080p_16by9_1920x1080-59.94fps - 2.json +++ b/Canon/Canon_EOS r6 mark II_RF24-105mm F4-7.1 IS STM_24mm_1080p_16by9_1920x1080-59.94fps - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "赵良", "camera_brand": "Canon", - "camera_model": "EOS r6 mark II", + "camera_model": "EOS R6 Mark II", "lens_model": "RF24-105mm F4-7.1 IS STM", "camera_setting": "24mm", "calib_dimension": { diff --git a/Canon/Canon_EOS r6_rf24-105 f4__4k_16by9_3840x2160-59.94fps - xm li.json b/Canon/Canon_EOS r6_rf24-105 f4__4k_16by9_3840x2160-59.94fps - xm li.json index 286ccd33..4e40d6fb 100644 --- a/Canon/Canon_EOS r6_rf24-105 f4__4k_16by9_3840x2160-59.94fps - xm li.json +++ b/Canon/Canon_EOS r6_rf24-105 f4__4k_16by9_3840x2160-59.94fps - xm li.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "xm li", "camera_brand": "Canon", - "camera_model": "EOS r6", + "camera_model": "EOS R6", "lens_model": "rf24-105 f4", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_EOS r___4k_16by9_3840x2160-29.97fps - Navid Atrvash.json b/Canon/Canon_EOS r___4k_16by9_3840x2160-29.97fps - Navid Atrvash.json index 5a003f94..bed1c4e0 100644 --- a/Canon/Canon_EOS r___4k_16by9_3840x2160-29.97fps - Navid Atrvash.json +++ b/Canon/Canon_EOS r___4k_16by9_3840x2160-29.97fps - Navid Atrvash.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Navid Atrvash", "camera_brand": "Canon", - "camera_model": "EOS r", + "camera_model": "EOS R", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_EOS rp___1080p_16by9_1920x1080-25.00fps.json b/Canon/Canon_EOS rp___1080p_16by9_1920x1080-25.00fps.json index b84a904a..23570650 100644 --- a/Canon/Canon_EOS rp___1080p_16by9_1920x1080-25.00fps.json +++ b/Canon/Canon_EOS rp___1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Burak Tonç", "camera_brand": "Canon", - "camera_model": "EOS rp", + "camera_model": "EOS RP", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_Eos 70d_13-55_m_1080p_16by9_1920x1080-25.00fps.json b/Canon/Canon_Eos 70d_13-55_m_1080p_16by9_1920x1080-25.00fps.json index 2dfae934..95bef6bc 100644 --- a/Canon/Canon_Eos 70d_13-55_m_1080p_16by9_1920x1080-25.00fps.json +++ b/Canon/Canon_Eos 70d_13-55_m_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Joparei", "camera_brand": "Canon", - "camera_model": "Eos 70d", + "camera_model": "EOS 70D", "lens_model": "13-55", "camera_setting": "m", "calib_dimension": { diff --git a/Canon/Canon_M6 ii_Samyang 12 mm F2_Profile Neutro_4k_16by9_3840x2160-25.00fps.json b/Canon/Canon_M6 ii_Samyang 12 mm F2_Profile Neutro_4k_16by9_3840x2160-25.00fps.json index f93d5d0a..880dfae2 100644 --- a/Canon/Canon_M6 ii_Samyang 12 mm F2_Profile Neutro_4k_16by9_3840x2160-25.00fps.json +++ b/Canon/Canon_M6 ii_Samyang 12 mm F2_Profile Neutro_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "Profile Neutro", "calibrated_by": "José M1", "camera_brand": "Canon", - "camera_model": "M6 ii", + "camera_model": "M6 II", "lens_model": "Samyang 12 mm F2", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_R5c_16F2.8__8k_1.90by1_8192x4320-25.00fps.json b/Canon/Canon_R5c_16F2.8__8k_1.90by1_8192x4320-25.00fps.json index 1ae4ae59..0566f3fb 100644 --- a/Canon/Canon_R5c_16F2.8__8k_1.90by1_8192x4320-25.00fps.json +++ b/Canon/Canon_R5c_16F2.8__8k_1.90by1_8192x4320-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "嗡嗡嗡", "camera_brand": "Canon", - "camera_model": "R5c", + "camera_model": "R5C", "lens_model": "16F2.8", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_R5c_24-70__4k_16by9_3840x2160-50.00fps.json b/Canon/Canon_R5c_24-70__4k_16by9_3840x2160-50.00fps.json index a33ff1c9..6cdec72f 100644 --- a/Canon/Canon_R5c_24-70__4k_16by9_3840x2160-50.00fps.json +++ b/Canon/Canon_R5c_24-70__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Florent LAMON", "camera_brand": "Canon", - "camera_model": "R5c", + "camera_model": "R5C", "lens_model": "24-70", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_R5c_Carl Zeiss Jena Flektogon_60fps_4k_16by9_3840x2160-23.98fps.json b/Canon/Canon_R5c_Carl Zeiss Jena Flektogon_60fps_4k_16by9_3840x2160-23.98fps.json index 976f4e77..271749b3 100644 --- a/Canon/Canon_R5c_Carl Zeiss Jena Flektogon_60fps_4k_16by9_3840x2160-23.98fps.json +++ b/Canon/Canon_R5c_Carl Zeiss Jena Flektogon_60fps_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "35mm", "calibrated_by": "Gianluca", "camera_brand": "Canon", - "camera_model": "R5c", + "camera_model": "R5C", "lens_model": "Carl Zeiss Jena Flektogon", "camera_setting": "60fps", "calib_dimension": { diff --git a/Canon/Canon_R5c_RF24-70F2.8_50mm_4k_16by9_3840x2160-50.00fps.json b/Canon/Canon_R5c_RF24-70F2.8_50mm_4k_16by9_3840x2160-50.00fps.json index 58e40aca..d3216ab4 100644 --- a/Canon/Canon_R5c_RF24-70F2.8_50mm_4k_16by9_3840x2160-50.00fps.json +++ b/Canon/Canon_R5c_RF24-70F2.8_50mm_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "wangyang", "camera_brand": "Canon", - "camera_model": "R5c", + "camera_model": "R5C", "lens_model": "RF24-70F2.8", "camera_setting": "50mm", "calib_dimension": { diff --git a/Canon/Canon_R6 Mark II_16 MM__4k_16by9_3840x2160-50.00fps.json b/Canon/Canon_R6 Mark II_16 MM__4k_16by9_3840x2160-50.00fps.json index 48a5876c..c2948f03 100644 --- a/Canon/Canon_R6 Mark II_16 MM__4k_16by9_3840x2160-50.00fps.json +++ b/Canon/Canon_R6 Mark II_16 MM__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Xiaodan O.Y", "camera_brand": "Canon", - "camera_model": "R6 Mark II", + "camera_model": "R6 MARK II", "lens_model": "16 MM", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_R6 Mark II_24105__1080p_16by9_1920x1080-59.94fps.json b/Canon/Canon_R6 Mark II_24105__1080p_16by9_1920x1080-59.94fps.json index 8c73883e..48ebe928 100644 --- a/Canon/Canon_R6 Mark II_24105__1080p_16by9_1920x1080-59.94fps.json +++ b/Canon/Canon_R6 Mark II_24105__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "J T", "camera_brand": "Canon", - "camera_model": "R6 Mark II", + "camera_model": "R6 MARK II", "lens_model": "24105", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_R6 Mark II_2470RF24mm__4k_16by9_3840x2160-50.00fps.json b/Canon/Canon_R6 Mark II_2470RF24mm__4k_16by9_3840x2160-50.00fps.json index 67b42ff4..477cbcaf 100644 --- a/Canon/Canon_R6 Mark II_2470RF24mm__4k_16by9_3840x2160-50.00fps.json +++ b/Canon/Canon_R6 Mark II_2470RF24mm__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ADMST", "camera_brand": "Canon", - "camera_model": "R6 Mark II", + "camera_model": "R6 MARK II", "lens_model": "2470RF24mm", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_R6 Mark II_EF 16-35mm F2.8 II 16mm__4k_16by9_3840x2160-59.94fps.json b/Canon/Canon_R6 Mark II_EF 16-35mm F2.8 II 16mm__4k_16by9_3840x2160-59.94fps.json index 69ab343f..feee6a58 100644 --- a/Canon/Canon_R6 Mark II_EF 16-35mm F2.8 II 16mm__4k_16by9_3840x2160-59.94fps.json +++ b/Canon/Canon_R6 Mark II_EF 16-35mm F2.8 II 16mm__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Lenovo", "camera_brand": "Canon", - "camera_model": "R6 Mark II", + "camera_model": "R6 MARK II", "lens_model": "EF 16-35mm F2.8 II 16mm", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_R6 Mark II_EF 24-105mm F4 105mm__4k_16by9_3840x2160-59.94fps.json b/Canon/Canon_R6 Mark II_EF 24-105mm F4 105mm__4k_16by9_3840x2160-59.94fps.json index 7313f61d..448b13b2 100644 --- a/Canon/Canon_R6 Mark II_EF 24-105mm F4 105mm__4k_16by9_3840x2160-59.94fps.json +++ b/Canon/Canon_R6 Mark II_EF 24-105mm F4 105mm__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Lenovo", "camera_brand": "Canon", - "camera_model": "R6 Mark II", + "camera_model": "R6 MARK II", "lens_model": "EF 24-105mm F4 105mm", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_R6 Mark II_EF 24-105mm F4 50mm__4k_16by9_3840x2160-59.94fps.json b/Canon/Canon_R6 Mark II_EF 24-105mm F4 50mm__4k_16by9_3840x2160-59.94fps.json index 150297b1..0c85dac1 100644 --- a/Canon/Canon_R6 Mark II_EF 24-105mm F4 50mm__4k_16by9_3840x2160-59.94fps.json +++ b/Canon/Canon_R6 Mark II_EF 24-105mm F4 50mm__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Lenovo", "camera_brand": "Canon", - "camera_model": "R6 Mark II", + "camera_model": "R6 MARK II", "lens_model": "EF 24-105mm F4 50mm", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_R6 Mark II_Rf 24-105 F4_23.98 Standard (IPB)_4k_16by9_3840x2160-23.98fps.json b/Canon/Canon_R6 Mark II_Rf 24-105 F4_23.98 Standard (IPB)_4k_16by9_3840x2160-23.98fps.json index a596225f..5d434f84 100644 --- a/Canon/Canon_R6 Mark II_Rf 24-105 F4_23.98 Standard (IPB)_4k_16by9_3840x2160-23.98fps.json +++ b/Canon/Canon_R6 Mark II_Rf 24-105 F4_23.98 Standard (IPB)_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "24mm", "calibrated_by": "주은성", "camera_brand": "Canon", - "camera_model": "R6 Mark II", + "camera_model": "R6 MARK II", "lens_model": "Rf 24-105 F4", "camera_setting": "23.98 Standard (IPB)", "calib_dimension": { diff --git a/Canon/Canon_R6 Mark II_Rf24-105 F4_24.98 Standard (IPB)_4k_16by9_3840x2160-23.98fps.json b/Canon/Canon_R6 Mark II_Rf24-105 F4_24.98 Standard (IPB)_4k_16by9_3840x2160-23.98fps.json index 15f4cf7f..bca9087b 100644 --- a/Canon/Canon_R6 Mark II_Rf24-105 F4_24.98 Standard (IPB)_4k_16by9_3840x2160-23.98fps.json +++ b/Canon/Canon_R6 Mark II_Rf24-105 F4_24.98 Standard (IPB)_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "24mm", "calibrated_by": "주은성", "camera_brand": "Canon", - "camera_model": "R6 Mark II", + "camera_model": "R6 MARK II", "lens_model": "Rf24-105 F4", "camera_setting": "24.98 Standard (IPB)", "calib_dimension": { diff --git a/Canon/Canon_R6 Mark II__24mm_1080p_16by9_1920x1080-29.97fps.json b/Canon/Canon_R6 Mark II__24mm_1080p_16by9_1920x1080-29.97fps.json index 047da6c8..8c32f634 100644 --- a/Canon/Canon_R6 Mark II__24mm_1080p_16by9_1920x1080-29.97fps.json +++ b/Canon/Canon_R6 Mark II__24mm_1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "王继鑫", "camera_brand": "Canon", - "camera_model": "R6 Mark II", + "camera_model": "R6 MARK II", "lens_model": "", "camera_setting": "24mm", "calib_dimension": { diff --git a/Canon/Canon_R6 Mark II___4k_16by9_3840x2160-59.94fps.json b/Canon/Canon_R6 Mark II___4k_16by9_3840x2160-59.94fps.json index 332e5367..86e6af74 100644 --- a/Canon/Canon_R6 Mark II___4k_16by9_3840x2160-59.94fps.json +++ b/Canon/Canon_R6 Mark II___4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Lenovo", "camera_brand": "Canon", - "camera_model": "R6 Mark II", + "camera_model": "R6 MARK II", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_R6 Mark II_rf 24-105 F4_Standard(IPB) C-log_4k_16by9_3840x2160-23.98fps.json b/Canon/Canon_R6 Mark II_rf 24-105 F4_Standard(IPB) C-log_4k_16by9_3840x2160-23.98fps.json index 07464a97..5fa54412 100644 --- a/Canon/Canon_R6 Mark II_rf 24-105 F4_Standard(IPB) C-log_4k_16by9_3840x2160-23.98fps.json +++ b/Canon/Canon_R6 Mark II_rf 24-105 F4_Standard(IPB) C-log_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "24mm", "calibrated_by": "주은성", "camera_brand": "Canon", - "camera_model": "R6 Mark II", + "camera_model": "R6 MARK II", "lens_model": "rf 24-105 F4", "camera_setting": "Standard(IPB) C-log", "calib_dimension": { diff --git a/Canon/Canon_R6 Mark II_rf 24-105 f4_59.94_4k_16by9_3840x2160-59.94fps.json b/Canon/Canon_R6 Mark II_rf 24-105 f4_59.94_4k_16by9_3840x2160-59.94fps.json index a4124a2b..1138021e 100644 --- a/Canon/Canon_R6 Mark II_rf 24-105 f4_59.94_4k_16by9_3840x2160-59.94fps.json +++ b/Canon/Canon_R6 Mark II_rf 24-105 f4_59.94_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "mac", "camera_brand": "Canon", - "camera_model": "R6 Mark II", + "camera_model": "R6 MARK II", "lens_model": "rf 24-105 f4", "camera_setting": "59.94", "calib_dimension": { diff --git a/Canon/Canon_Rp_Canon RF 24-105mm_ISO 1600 F11 1125_1080p_16by9_1920x1080-59.94fps.json b/Canon/Canon_Rp_Canon RF 24-105mm_ISO 1600 F11 1125_1080p_16by9_1920x1080-59.94fps.json index ed6eb99b..319a5542 100644 --- a/Canon/Canon_Rp_Canon RF 24-105mm_ISO 1600 F11 1125_1080p_16by9_1920x1080-59.94fps.json +++ b/Canon/Canon_Rp_Canon RF 24-105mm_ISO 1600 F11 1125_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ignac", "camera_brand": "Canon", - "camera_model": "Rp", + "camera_model": "RP", "lens_model": "Canon RF 24-105mm", "camera_setting": "ISO 1600 F11 1/125", "calib_dimension": { diff --git a/Canon/Canon_m50 mark II_Canon 24-70 mm_CP_1080p_16by9_1920x1080-25.00fps.json b/Canon/Canon_m50 mark II_Canon 24-70 mm_CP_1080p_16by9_1920x1080-25.00fps.json index 91526ab8..ef036c75 100644 --- a/Canon/Canon_m50 mark II_Canon 24-70 mm_CP_1080p_16by9_1920x1080-25.00fps.json +++ b/Canon/Canon_m50 mark II_Canon 24-70 mm_CP_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "24 mm", "calibrated_by": "Jeisson Caro", "camera_brand": "Canon", - "camera_model": "m50 mark II", + "camera_model": "M50 Mark II", "lens_model": "Canon 24-70 mm", "camera_setting": "CP", "calib_dimension": { diff --git a/Canon/Canon_m50_Canon EF-M 22mm f2 STM_22mm_1080p_16by9_1920x1080-59.94fps.json b/Canon/Canon_m50_Canon EF-M 22mm f2 STM_22mm_1080p_16by9_1920x1080-59.94fps.json index 438975f5..30581eed 100644 --- a/Canon/Canon_m50_Canon EF-M 22mm f2 STM_22mm_1080p_16by9_1920x1080-59.94fps.json +++ b/Canon/Canon_m50_Canon EF-M 22mm f2 STM_22mm_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "22mm", "calibrated_by": "Сергей Мальгота", "camera_brand": "Canon", - "camera_model": "m50", + "camera_model": "M50", "lens_model": "Canon EF-M 22mm f/2 STM", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_m50_EF-M 11-22mm f4-5.6 IS STM_11mm_1080p_16by9_1920x1080-59.94fps.json b/Canon/Canon_m50_EF-M 11-22mm f4-5.6 IS STM_11mm_1080p_16by9_1920x1080-59.94fps.json index 4be34278..35e1a117 100644 --- a/Canon/Canon_m50_EF-M 11-22mm f4-5.6 IS STM_11mm_1080p_16by9_1920x1080-59.94fps.json +++ b/Canon/Canon_m50_EF-M 11-22mm f4-5.6 IS STM_11mm_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "11mm", "calibrated_by": "Сергей Мальгота", "camera_brand": "Canon", - "camera_model": "m50", + "camera_model": "M50", "lens_model": "EF-M 11-22mm f/4-5.6 IS STM", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_m50___1080p_16by9_1920x1080-59.94fps.json b/Canon/Canon_m50___1080p_16by9_1920x1080-59.94fps.json index 0eba156d..cd2e1154 100644 --- a/Canon/Canon_m50___1080p_16by9_1920x1080-59.94fps.json +++ b/Canon/Canon_m50___1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Сергей Мальгота", "camera_brand": "Canon", - "camera_model": "m50", + "camera_model": "M50", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_r5_ef16-35_24_4k_16by9_3840x2160-25.00fps.json b/Canon/Canon_r5_ef16-35_24_4k_16by9_3840x2160-25.00fps.json index ffa1e64e..35fd7319 100644 --- a/Canon/Canon_r5_ef16-35_24_4k_16by9_3840x2160-25.00fps.json +++ b/Canon/Canon_r5_ef16-35_24_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "山本十四郎", "camera_brand": "Canon", - "camera_model": "r5", + "camera_model": "R5", "lens_model": "ef16-35", "camera_setting": "24", "calib_dimension": { diff --git a/Canon/Canon_r5c_35__720p_16by9_1280x720-30.00fps.json b/Canon/Canon_r5c_35__720p_16by9_1280x720-30.00fps.json index 57ee43f8..97327866 100644 --- a/Canon/Canon_r5c_35__720p_16by9_1280x720-30.00fps.json +++ b/Canon/Canon_r5c_35__720p_16by9_1280x720-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "admins", "camera_brand": "Canon", - "camera_model": "r5c", + "camera_model": "R5C", "lens_model": "35", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_r5c_35___9by16_336x640-24.00fps.json b/Canon/Canon_r5c_35___9by16_336x640-24.00fps.json index e01ecfc4..c92b3c84 100644 --- a/Canon/Canon_r5c_35___9by16_336x640-24.00fps.json +++ b/Canon/Canon_r5c_35___9by16_336x640-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "admins", "camera_brand": "Canon", - "camera_model": "r5c", + "camera_model": "R5C", "lens_model": "35", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_r5c_Canon_16mm_C4k_1.90by1_4096x2160-23.98fps.json b/Canon/Canon_r5c_Canon_16mm_C4k_1.90by1_4096x2160-23.98fps.json index 01e5746a..9f3058ab 100644 --- a/Canon/Canon_r5c_Canon_16mm_C4k_1.90by1_4096x2160-23.98fps.json +++ b/Canon/Canon_r5c_Canon_16mm_C4k_1.90by1_4096x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "23.98 8.1k 180", "calibrated_by": "Ethan Fortney", "camera_brand": "Canon", - "camera_model": "r5c", + "camera_model": "R5C", "lens_model": "Canon", "camera_setting": "16mm", "calib_dimension": { diff --git a/Canon/Canon_r5c_rf 24-70mm__C4k_1.90by1_4096x2160-24.00fps.json b/Canon/Canon_r5c_rf 24-70mm__C4k_1.90by1_4096x2160-24.00fps.json index 0bfb2d26..2bc88b8d 100644 --- a/Canon/Canon_r5c_rf 24-70mm__C4k_1.90by1_4096x2160-24.00fps.json +++ b/Canon/Canon_r5c_rf 24-70mm__C4k_1.90by1_4096x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Lev", "camera_brand": "Canon", - "camera_model": "r5c", + "camera_model": "R5C", "lens_model": "rf 24-70mm", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_r6_24-105__4k_16by9_3840x2160-25.00fps.json b/Canon/Canon_r6_24-105__4k_16by9_3840x2160-25.00fps.json index b4a6d98d..bf6820ec 100644 --- a/Canon/Canon_r6_24-105__4k_16by9_3840x2160-25.00fps.json +++ b/Canon/Canon_r6_24-105__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Auhad", "camera_brand": "Canon", - "camera_model": "r6", + "camera_model": "R6", "lens_model": "24-105", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_r6_50mm stm__1080p_16by9_1920x1080-50.00fps.json b/Canon/Canon_r6_50mm stm__1080p_16by9_1920x1080-50.00fps.json index 53fcd3a0..0106fc49 100644 --- a/Canon/Canon_r6_50mm stm__1080p_16by9_1920x1080-50.00fps.json +++ b/Canon/Canon_r6_50mm stm__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Mu'izz Zahari", "camera_brand": "Canon", - "camera_model": "r6", + "camera_model": "R6", "lens_model": "50mm stm", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_r6_sigma 24-70__1080p_16by9_1920x1080-50.00fps.json b/Canon/Canon_r6_sigma 24-70__1080p_16by9_1920x1080-50.00fps.json index 7b3037a9..07e8d87f 100644 --- a/Canon/Canon_r6_sigma 24-70__1080p_16by9_1920x1080-50.00fps.json +++ b/Canon/Canon_r6_sigma 24-70__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ROG", "camera_brand": "Canon", - "camera_model": "r6", + "camera_model": "R6", "lens_model": "sigma 24-70", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_r7_7Artisans 7.5mm_off stabilizer_4k_16by9_3840x2160-29.97fps.json b/Canon/Canon_r7_7Artisans 7.5mm_off stabilizer_4k_16by9_3840x2160-29.97fps.json index 15a3be8d..778b41a5 100644 --- a/Canon/Canon_r7_7Artisans 7.5mm_off stabilizer_4k_16by9_3840x2160-29.97fps.json +++ b/Canon/Canon_r7_7Artisans 7.5mm_off stabilizer_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "cmj", "camera_brand": "Canon", - "camera_model": "r7", + "camera_model": "R7", "lens_model": "7Artisans 7.5mm", "camera_setting": "off stabilizer", "calib_dimension": { diff --git a/Canon/Canon_r7_7Artisans__4k_16by9_3840x2160-29.97fps.json b/Canon/Canon_r7_7Artisans__4k_16by9_3840x2160-29.97fps.json index a6b12db0..53f19737 100644 --- a/Canon/Canon_r7_7Artisans__4k_16by9_3840x2160-29.97fps.json +++ b/Canon/Canon_r7_7Artisans__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "cmj", "camera_brand": "Canon", - "camera_model": "r7", + "camera_model": "R7", "lens_model": "7Artisans", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_r8_ef24-70f2.8_is_4k_16by9_3840x2160-29.97fps.json b/Canon/Canon_r8_ef24-70f2.8_is_4k_16by9_3840x2160-29.97fps.json index a75d48e4..05aa87ce 100644 --- a/Canon/Canon_r8_ef24-70f2.8_is_4k_16by9_3840x2160-29.97fps.json +++ b/Canon/Canon_r8_ef24-70f2.8_is_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "is", "calibrated_by": "hong chen", "camera_brand": "Canon", - "camera_model": "r8", + "camera_model": "R8", "lens_model": "ef24-70f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_rebel t7_18-55__1080p_16by9_1920x1080-29.97fps.json b/Canon/Canon_rebel t7_18-55__1080p_16by9_1920x1080-29.97fps.json index 9c54d0df..2201fc5f 100644 --- a/Canon/Canon_rebel t7_18-55__1080p_16by9_1920x1080-29.97fps.json +++ b/Canon/Canon_rebel t7_18-55__1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "cody anderson", "camera_brand": "Canon", - "camera_model": "rebel t7", + "camera_model": "REBEL T7", "lens_model": "18-55", "camera_setting": "", "calib_dimension": { diff --git a/Canon/Canon_rp_canon rf 24-50 f4-6.3 is stm_fhd_1080p_16by9_1920x1080-29.97fps.json b/Canon/Canon_rp_canon rf 24-50 f4-6.3 is stm_fhd_1080p_16by9_1920x1080-29.97fps.json index 7d407946..14da8200 100644 --- a/Canon/Canon_rp_canon rf 24-50 f4-6.3 is stm_fhd_1080p_16by9_1920x1080-29.97fps.json +++ b/Canon/Canon_rp_canon rf 24-50 f4-6.3 is stm_fhd_1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Fausto P.", "camera_brand": "Canon", - "camera_model": "rp", + "camera_model": "RP", "lens_model": "canon rf 24-50 f4-6.3 is stm", "camera_setting": "fhd", "calib_dimension": { diff --git a/Canon/Canon_t7i_10-15 verttical 10__1080p_16by9_1920x1080-23.98fps.json b/Canon/Canon_t7i_10-15 verttical 10__1080p_16by9_1920x1080-23.98fps.json index 240171bf..ffb1cc23 100644 --- a/Canon/Canon_t7i_10-15 verttical 10__1080p_16by9_1920x1080-23.98fps.json +++ b/Canon/Canon_t7i_10-15 verttical 10__1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Nathan khouri", "camera_brand": "Canon", - "camera_model": "t7i", + "camera_model": "T7i", "lens_model": "10-15 verttical 10", "camera_setting": "", "calib_dimension": { diff --git a/DJI/DJI_AIR 2S___4k_16by9_3840x2160-29.97fps.json b/DJI/DJI_AIR 2S___4k_16by9_3840x2160-29.97fps.json index d1e0d8d1..61ffe593 100644 --- a/DJI/DJI_AIR 2S___4k_16by9_3840x2160-29.97fps.json +++ b/DJI/DJI_AIR 2S___4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "allen issac", "camera_brand": "DJI", - "camera_model": "AIR 2S", + "camera_model": "Air 2S", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/DJI/DJI_Air Unit_14.66__1080p_16by9_1920x1080-0.00fps.json b/DJI/DJI_Air Unit_14.66__1080p_16by9_1920x1080-0.00fps.json index 77889b42..fd3ff01e 100644 --- a/DJI/DJI_Air Unit_14.66__1080p_16by9_1920x1080-0.00fps.json +++ b/DJI/DJI_Air Unit_14.66__1080p_16by9_1920x1080-0.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Fersy", "camera_brand": "DJI", - "camera_model": "Air Unit", + "camera_model": "AIR UNIT", "lens_model": "14.66", "camera_setting": "", "calibrator_version": "0.2.1-alpha", diff --git a/DJI/DJI_Air Unit_DJI 2.1 mm, f2.1_Wide_1080p_16by9_1920x1080-0.00fps.json b/DJI/DJI_Air Unit_DJI 2.1 mm, f2.1_Wide_1080p_16by9_1920x1080-0.00fps.json index 1c10be2d..76054fdf 100644 --- a/DJI/DJI_Air Unit_DJI 2.1 mm, f2.1_Wide_1080p_16by9_1920x1080-0.00fps.json +++ b/DJI/DJI_Air Unit_DJI 2.1 mm, f2.1_Wide_1080p_16by9_1920x1080-0.00fps.json @@ -3,7 +3,7 @@ "note": "Crop 1120x630 with 2x scale for calm flying", "calibrated_by": "G42L", "camera_brand": "DJI", - "camera_model": "Air Unit", + "camera_model": "AIR UNIT", "lens_model": "DJI 2.1 mm, f/2.1", "camera_setting": "Wide", "calibrator_version": "0.2.1-alpha", diff --git a/DJI/DJI_Air Unit__Crop 1120x630 with 2x scale for calm flying_720p_4by3_1440x1080-0.00fps.json b/DJI/DJI_Air Unit__Crop 1120x630 with 2x scale for calm flying_720p_4by3_1440x1080-0.00fps.json index ec2b8a4e..778ef811 100644 --- a/DJI/DJI_Air Unit__Crop 1120x630 with 2x scale for calm flying_720p_4by3_1440x1080-0.00fps.json +++ b/DJI/DJI_Air Unit__Crop 1120x630 with 2x scale for calm flying_720p_4by3_1440x1080-0.00fps.json @@ -3,7 +3,7 @@ "note": "Crop 1120x630 with 2x scale for calm flying", "calibrated_by": "Amzd", "camera_brand": "DJI", - "camera_model": "Air Unit", + "camera_model": "AIR UNIT", "lens_model": "", "camera_setting": "", "calibrator_version": "0.2.1-alpha", diff --git a/DJI/DJI_Air Unit___480p_4by3_960x720-60.00fps - Leo Barua.json b/DJI/DJI_Air Unit___480p_4by3_960x720-60.00fps - Leo Barua.json index aeb1fa6f..ff814345 100644 --- a/DJI/DJI_Air Unit___480p_4by3_960x720-60.00fps - Leo Barua.json +++ b/DJI/DJI_Air Unit___480p_4by3_960x720-60.00fps - Leo Barua.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Leo Barua", "camera_brand": "DJI", - "camera_model": "Air Unit", + "camera_model": "AIR UNIT", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/DJI/DJI_Air Unit___480p_4by3_960x720-60.00fps.json b/DJI/DJI_Air Unit___480p_4by3_960x720-60.00fps.json index 2d7ed3cc..f0dd7f88 100644 --- a/DJI/DJI_Air Unit___480p_4by3_960x720-60.00fps.json +++ b/DJI/DJI_Air Unit___480p_4by3_960x720-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "lenovo", "camera_brand": "DJI", - "camera_model": "Air Unit", + "camera_model": "AIR UNIT", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/DJI/DJI_Air Unit___720p_16by9_1280x720-60.00fps.json b/DJI/DJI_Air Unit___720p_16by9_1280x720-60.00fps.json index e7094605..73d1e56d 100644 --- a/DJI/DJI_Air Unit___720p_16by9_1280x720-60.00fps.json +++ b/DJI/DJI_Air Unit___720p_16by9_1280x720-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "DRONE4IT_FG", "camera_brand": "DJI", - "camera_model": "Air Unit", + "camera_model": "AIR UNIT", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/DJI/DJI_Air Unit___720p_4by3_1440x1080-60.00fps.json b/DJI/DJI_Air Unit___720p_4by3_1440x1080-60.00fps.json index 983a60e5..62f86858 100644 --- a/DJI/DJI_Air Unit___720p_4by3_1440x1080-60.00fps.json +++ b/DJI/DJI_Air Unit___720p_4by3_1440x1080-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Froggy", "camera_brand": "DJI", - "camera_model": "Air Unit", + "camera_model": "AIR UNIT", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/DJI/DJI_Air2___4k_16by9_3840x2160-29.97fps.json b/DJI/DJI_Air2___4k_16by9_3840x2160-29.97fps.json index eccb46c0..a96ea508 100644 --- a/DJI/DJI_Air2___4k_16by9_3840x2160-29.97fps.json +++ b/DJI/DJI_Air2___4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jason Levy", "camera_brand": "DJI", - "camera_model": "Air2", + "camera_model": "AIR2", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/DJI/DJI_Air2s___4k_16by9_3840x2160-29.97fps (2).json b/DJI/DJI_Air2s___4k_16by9_3840x2160-29.97fps (2).json index 928acd6d..84119be3 100644 --- a/DJI/DJI_Air2s___4k_16by9_3840x2160-29.97fps (2).json +++ b/DJI/DJI_Air2s___4k_16by9_3840x2160-29.97fps (2).json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ron Shuller", "camera_brand": "DJI", - "camera_model": "Air2s", + "camera_model": "AIR2s", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/DJI/DJI_MINI 3 PRO__29.97 frames per sec._1080p_16by9_1920x1080-29.97fps.json b/DJI/DJI_MINI 3 PRO__29.97 frames per sec._1080p_16by9_1920x1080-29.97fps.json index 0f4162ab..de3cf6c0 100644 --- a/DJI/DJI_MINI 3 PRO__29.97 frames per sec._1080p_16by9_1920x1080-29.97fps.json +++ b/DJI/DJI_MINI 3 PRO__29.97 frames per sec._1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "29.97 frames per sec.", "calibrated_by": "Dre Dabars", "camera_brand": "DJI", - "camera_model": "MINI 3 PRO", + "camera_model": "Mini 3 Pro", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/DJI/DJI_Mavic Air 2__2.7k_2.5k_16by9_2688x1512-25.00fps.json b/DJI/DJI_Mavic Air 2__2.7k_2.5k_16by9_2688x1512-25.00fps.json index e0b5b50a..bbb66bb9 100644 --- a/DJI/DJI_Mavic Air 2__2.7k_2.5k_16by9_2688x1512-25.00fps.json +++ b/DJI/DJI_Mavic Air 2__2.7k_2.5k_16by9_2688x1512-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Czmielik", "camera_brand": "DJI", - "camera_model": "Mavic Air 2", + "camera_model": "MAVIC AIR 2", "lens_model": "", "camera_setting": "2.7k", "calib_dimension": { diff --git a/DJI/DJI_Mini 2_12.3 CMOS FOV_ 83_2K 25f_4k_16by9_3840x2160-25.00fps.json b/DJI/DJI_Mini 2_12.3 CMOS FOV_ 83_2K 25f_4k_16by9_3840x2160-25.00fps.json index 7bce8f4b..eaf6904f 100644 --- a/DJI/DJI_Mini 2_12.3 CMOS FOV_ 83_2K 25f_4k_16by9_3840x2160-25.00fps.json +++ b/DJI/DJI_Mini 2_12.3 CMOS FOV_ 83_2K 25f_4k_16by9_3840x2160-25.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Benicio", "calibrator_version": "1.5.4", "camera_brand": "DJI", - "camera_model": "Mini 2", + "camera_model": "MINI 2", "camera_setting": "2K 25f", "compatible_settings": [], "crop": null, diff --git a/DJI/DJI_Mini 2_12.3 CMOS FOV_ 83_2K 60f_2.7k_16by9_2720x1530-59.94fps.json b/DJI/DJI_Mini 2_12.3 CMOS FOV_ 83_2K 60f_2.7k_16by9_2720x1530-59.94fps.json index 3fb87c2d..14e2ee6b 100644 --- a/DJI/DJI_Mini 2_12.3 CMOS FOV_ 83_2K 60f_2.7k_16by9_2720x1530-59.94fps.json +++ b/DJI/DJI_Mini 2_12.3 CMOS FOV_ 83_2K 60f_2.7k_16by9_2720x1530-59.94fps.json @@ -3,7 +3,7 @@ "note": "n/a", "calibrated_by": "Thomasinstockport", "camera_brand": "DJI", - "camera_model": "Mini 2", + "camera_model": "MINI 2", "lens_model": "1/2.3” CMOS FOV: 83°", "camera_setting": "2K 60f", "calib_dimension": { diff --git a/DJI/DJI_Mini 2_12.3 CMOS_3 axis gimbal 4K_1080p_16by9_1920x1080-59.94fps.json b/DJI/DJI_Mini 2_12.3 CMOS_3 axis gimbal 4K_1080p_16by9_1920x1080-59.94fps.json index abc688ee..d1652e21 100644 --- a/DJI/DJI_Mini 2_12.3 CMOS_3 axis gimbal 4K_1080p_16by9_1920x1080-59.94fps.json +++ b/DJI/DJI_Mini 2_12.3 CMOS_3 axis gimbal 4K_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "3 axis gimbal 4K", "calibrated_by": "chris jones", "camera_brand": "DJI", - "camera_model": "Mini 2", + "camera_model": "MINI 2", "lens_model": "1/2.3\" CMOS", "camera_setting": "", "calib_dimension": { diff --git a/DJI/DJI_Mini 2_FOV_ 83_Single Shot_1080p_16by9_1920x1080-59.94fps.json b/DJI/DJI_Mini 2_FOV_ 83_Single Shot_1080p_16by9_1920x1080-59.94fps.json index 0e7cb176..a8f753fa 100644 --- a/DJI/DJI_Mini 2_FOV_ 83_Single Shot_1080p_16by9_1920x1080-59.94fps.json +++ b/DJI/DJI_Mini 2_FOV_ 83_Single Shot_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "israel romero", "camera_brand": "DJI", - "camera_model": "Mini 2", + "camera_model": "MINI 2", "lens_model": "FOV: 83°", "camera_setting": "Single Shot", "calib_dimension": { diff --git a/DJI/DJI_Mini 2___4k_16by9_3840x2160-29.97fps.json b/DJI/DJI_Mini 2___4k_16by9_3840x2160-29.97fps.json index 5da720c6..f2303d6d 100644 --- a/DJI/DJI_Mini 2___4k_16by9_3840x2160-29.97fps.json +++ b/DJI/DJI_Mini 2___4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Steve", "camera_brand": "DJI", - "camera_model": "Mini 2", + "camera_model": "MINI 2", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/DJI/DJI_Mini 3_CMOS 11.3__2.7k_16by9_2720x1530-59.94fps.json b/DJI/DJI_Mini 3_CMOS 11.3__2.7k_16by9_2720x1530-59.94fps.json index 85702887..08e466ba 100644 --- a/DJI/DJI_Mini 3_CMOS 11.3__2.7k_16by9_2720x1530-59.94fps.json +++ b/DJI/DJI_Mini 3_CMOS 11.3__2.7k_16by9_2720x1530-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Reyes Guadalupe Puente Balcázar", "camera_brand": "DJI", - "camera_model": "Mini 3", + "camera_model": "MINI 3", "lens_model": "CMOS 1/1.3\"", "camera_setting": "", "calib_dimension": { diff --git a/DJI/DJI_action 3__50_4k_16by9_3840x2160-25.00fps.json b/DJI/DJI_action 3__50_4k_16by9_3840x2160-25.00fps.json index 44f1e5e2..0259a3ea 100644 --- a/DJI/DJI_action 3__50_4k_16by9_3840x2160-25.00fps.json +++ b/DJI/DJI_action 3__50_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "宋志刚", "camera_brand": "DJI", - "camera_model": "action 3", + "camera_model": "Action 3", "lens_model": "", "camera_setting": "50", "calib_dimension": { diff --git a/DJI/Dji_Air Unit___480p_4by3_960x720-60.00fps - PraewVee.json b/DJI/Dji_Air Unit___480p_4by3_960x720-60.00fps - PraewVee.json index e98c19d7..b70db073 100644 --- a/DJI/Dji_Air Unit___480p_4by3_960x720-60.00fps - PraewVee.json +++ b/DJI/Dji_Air Unit___480p_4by3_960x720-60.00fps - PraewVee.json @@ -2,8 +2,8 @@ "name": "Dji_Air Unit___480p_4by3_960x720-60.00fps", "note": "", "calibrated_by": "PraewVee", - "camera_brand": "Dji", - "camera_model": "Air Unit", + "camera_brand": "DJI", + "camera_model": "AIR UNIT", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Eken/Eken_H9R_170FOV_60 fps_1080p_16by9_1920x1080-0.00fps.json b/Eken/Eken_H9R_170FOV_60 fps_1080p_16by9_1920x1080-0.00fps.json index e96967aa..a0c99f7e 100644 --- a/Eken/Eken_H9R_170FOV_60 fps_1080p_16by9_1920x1080-0.00fps.json +++ b/Eken/Eken_H9R_170FOV_60 fps_1080p_16by9_1920x1080-0.00fps.json @@ -2,7 +2,7 @@ "name": "Eken_H9R_170FOV_60 fps_1080p_16by9_1920x1080-0.00fps", "note": "", "calibrated_by": "RotorOxio", - "camera_brand": "Eken", + "camera_brand": "EKEN", "camera_model": "H9R", "lens_model": "170FOV", "camera_setting": "60 fps", diff --git a/Foxeer/Foxeer_Box 2_Default__4k_16by9_3840x2160-29.97fps.json b/Foxeer/Foxeer_Box 2_Default__4k_16by9_3840x2160-29.97fps.json index 42623cf7..85a108ab 100644 --- a/Foxeer/Foxeer_Box 2_Default__4k_16by9_3840x2160-29.97fps.json +++ b/Foxeer/Foxeer_Box 2_Default__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "andym", "camera_brand": "Foxeer", - "camera_model": "Box 2", + "camera_model": "BOX 2", "lens_model": "Default", "camera_setting": "", "calib_dimension": { diff --git a/Foxeer/Foxeer_Box 2_Wide__1080p_4by3_1920x1440-59.94fps.json b/Foxeer/Foxeer_Box 2_Wide__1080p_4by3_1920x1440-59.94fps.json index 802d49dc..c59c8ba5 100644 --- a/Foxeer/Foxeer_Box 2_Wide__1080p_4by3_1920x1440-59.94fps.json +++ b/Foxeer/Foxeer_Box 2_Wide__1080p_4by3_1920x1440-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "PASQUALE ERCOLINO", "camera_brand": "Foxeer", - "camera_model": "Box 2", + "camera_model": "BOX 2", "lens_model": "Wide", "camera_setting": "", "calib_dimension": { diff --git a/Foxeer/Foxeer_Box 2_Wide__2.5k_16by9_2560x1440-50.00fps.json b/Foxeer/Foxeer_Box 2_Wide__2.5k_16by9_2560x1440-50.00fps.json index d30d9fa9..04ef27bb 100644 --- a/Foxeer/Foxeer_Box 2_Wide__2.5k_16by9_2560x1440-50.00fps.json +++ b/Foxeer/Foxeer_Box 2_Wide__2.5k_16by9_2560x1440-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Fabio", "camera_brand": "Foxeer", - "camera_model": "Box 2", + "camera_model": "BOX 2", "lens_model": "Wide", "camera_setting": "", "calib_dimension": { diff --git a/Foxeer/Foxeer_Box 2__can't believe potatoes can record videos_2.5k_16by9_2560x1440-0.00fps.json b/Foxeer/Foxeer_Box 2__can't believe potatoes can record videos_2.5k_16by9_2560x1440-0.00fps.json index babe4329..12930f45 100644 --- a/Foxeer/Foxeer_Box 2__can't believe potatoes can record videos_2.5k_16by9_2560x1440-0.00fps.json +++ b/Foxeer/Foxeer_Box 2__can't believe potatoes can record videos_2.5k_16by9_2560x1440-0.00fps.json @@ -3,7 +3,7 @@ "note": "can't believe potatoes can record videos", "calibrated_by": "Anonymous", "camera_brand": "Foxeer", - "camera_model": "Box 2", + "camera_model": "BOX 2", "lens_model": "", "camera_setting": "", "calibrator_version": "0.2.1-alpha", diff --git a/Foxeer/Foxeer_Box 2_stock__1080p_16by9_1920x1080-59.93fps.json b/Foxeer/Foxeer_Box 2_stock__1080p_16by9_1920x1080-59.93fps.json index 8c8a9478..12becbbb 100644 --- a/Foxeer/Foxeer_Box 2_stock__1080p_16by9_1920x1080-59.93fps.json +++ b/Foxeer/Foxeer_Box 2_stock__1080p_16by9_1920x1080-59.93fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Danilo S.", "camera_brand": "Foxeer", - "camera_model": "Box 2", + "camera_model": "BOX 2", "lens_model": "stock", "camera_setting": "", "calib_dimension": { diff --git a/Foxeer/Foxeer_Box2_stock__1080p_4by3_1920x1440-59.94fps.json b/Foxeer/Foxeer_Box2_stock__1080p_4by3_1920x1440-59.94fps.json index edafffa2..0a62aaa4 100644 --- a/Foxeer/Foxeer_Box2_stock__1080p_4by3_1920x1440-59.94fps.json +++ b/Foxeer/Foxeer_Box2_stock__1080p_4by3_1920x1440-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Danilo S.", "camera_brand": "Foxeer", - "camera_model": "Box2", + "camera_model": "BOX2", "lens_model": "stock", "camera_setting": "", "calib_dimension": { diff --git a/Foxeer/Foxeer_box_v1_25 fps_2.7k_4by3_2704x2028-25.00fps.json b/Foxeer/Foxeer_box_v1_25 fps_2.7k_4by3_2704x2028-25.00fps.json index 6debb773..0e5b612c 100644 --- a/Foxeer/Foxeer_box_v1_25 fps_2.7k_4by3_2704x2028-25.00fps.json +++ b/Foxeer/Foxeer_box_v1_25 fps_2.7k_4by3_2704x2028-25.00fps.json @@ -3,7 +3,7 @@ "note": "25 fps", "calibrated_by": "Martin K", "camera_brand": "Foxeer", - "camera_model": "box", + "camera_model": "Box", "lens_model": "v1", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fufifilm_XT200_KIT 15-45__1080p_16by9_1920x1080-25.00fps.json b/Fujifilm/Fufifilm_XT200_KIT 15-45__1080p_16by9_1920x1080-25.00fps.json index 9954f82f..7bcb98c2 100644 --- a/Fujifilm/Fufifilm_XT200_KIT 15-45__1080p_16by9_1920x1080-25.00fps.json +++ b/Fujifilm/Fufifilm_XT200_KIT 15-45__1080p_16by9_1920x1080-25.00fps.json @@ -2,7 +2,7 @@ "name": "Fufifilm_XT200_KIT 15-45__1080p_16by9_1920x1080-25.00fps", "note": "", "calibrated_by": "Veleri", - "camera_brand": "Fufifilm", + "camera_brand": "Fujifilm", "camera_model": "XT200", "lens_model": "KIT 15-45", "camera_setting": "", diff --git a/Fujifilm/FujiFilm_X-T3_Kamlan 50mm f1.1__4k_16by9_3840x2160-50.00fps.json b/Fujifilm/FujiFilm_X-T3_Kamlan 50mm f1.1__4k_16by9_3840x2160-50.00fps.json index c49fdfe4..e338a749 100644 --- a/Fujifilm/FujiFilm_X-T3_Kamlan 50mm f1.1__4k_16by9_3840x2160-50.00fps.json +++ b/Fujifilm/FujiFilm_X-T3_Kamlan 50mm f1.1__4k_16by9_3840x2160-50.00fps.json @@ -2,7 +2,7 @@ "name": "FujiFilm_X-T3_Kamlan 50mm f1.1__4k_16by9_3840x2160-50.00fps", "note": "", "calibrated_by": "Dmitry Kalinin", - "camera_brand": "FujiFilm", + "camera_brand": "Fujifilm", "camera_model": "X-T3", "lens_model": "Kamlan 50mm f1.1", "camera_setting": "", diff --git a/Fujifilm/Fujifilm_X-H2s_18__4k_16by9_3840x2160-59.94fps - cm q - 2.json b/Fujifilm/Fujifilm_X-H2s_18__4k_16by9_3840x2160-59.94fps - cm q - 2.json index 89cb45e5..f854eef4 100644 --- a/Fujifilm/Fujifilm_X-H2s_18__4k_16by9_3840x2160-59.94fps - cm q - 2.json +++ b/Fujifilm/Fujifilm_X-H2s_18__4k_16by9_3840x2160-59.94fps - cm q - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "cm q", "camera_brand": "Fujifilm", - "camera_model": "X-H2s", + "camera_model": "X-H2S", "lens_model": "18", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_X-H2s_18__4k_16by9_3840x2160-59.94fps.json b/Fujifilm/Fujifilm_X-H2s_18__4k_16by9_3840x2160-59.94fps.json index 4757f764..114e0bda 100644 --- a/Fujifilm/Fujifilm_X-H2s_18__4k_16by9_3840x2160-59.94fps.json +++ b/Fujifilm/Fujifilm_X-H2s_18__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "cm q", "camera_brand": "Fujifilm", - "camera_model": "X-H2s", + "camera_model": "X-H2S", "lens_model": "18", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_X-H2s_35mm f1.4__1080p_16by9_1920x1080-30.00fps.json b/Fujifilm/Fujifilm_X-H2s_35mm f1.4__1080p_16by9_1920x1080-30.00fps.json index 2c9a228d..4e5a2047 100644 --- a/Fujifilm/Fujifilm_X-H2s_35mm f1.4__1080p_16by9_1920x1080-30.00fps.json +++ b/Fujifilm/Fujifilm_X-H2s_35mm f1.4__1080p_16by9_1920x1080-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Wenbin", "camera_brand": "Fujifilm", - "camera_model": "X-H2s", + "camera_model": "X-H2S", "lens_model": "35mm f1.4", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_X-H2s_75mm f1.2__4k_16by9_3840x2160-59.94fps.json b/Fujifilm/Fujifilm_X-H2s_75mm f1.2__4k_16by9_3840x2160-59.94fps.json index a9d2add4..c19b3f51 100644 --- a/Fujifilm/Fujifilm_X-H2s_75mm f1.2__4k_16by9_3840x2160-59.94fps.json +++ b/Fujifilm/Fujifilm_X-H2s_75mm f1.2__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Wenbin", "camera_brand": "Fujifilm", - "camera_model": "X-H2s", + "camera_model": "X-H2S", "lens_model": "唯卓仕75mm f1.2", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_X-H2s_Canon EF 17-40mm f4L USM_Open Gate_6k_3by2_6240x4160-29.97fps.json b/Fujifilm/Fujifilm_X-H2s_Canon EF 17-40mm f4L USM_Open Gate_6k_3by2_6240x4160-29.97fps.json index 86e3c17d..a613c869 100644 --- a/Fujifilm/Fujifilm_X-H2s_Canon EF 17-40mm f4L USM_Open Gate_6k_3by2_6240x4160-29.97fps.json +++ b/Fujifilm/Fujifilm_X-H2s_Canon EF 17-40mm f4L USM_Open Gate_6k_3by2_6240x4160-29.97fps.json @@ -3,7 +3,7 @@ "note": "Viltrox EF-FX2 0.71x", "calibrated_by": "jaime augusto", "camera_brand": "Fujifilm", - "camera_model": "X-H2s", + "camera_model": "X-H2S", "lens_model": "Canon EF 17-40mm f/4L USM", "camera_setting": "Open Gate", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 25mmf2.8 via Metabones Speedbooster__4k_16by9_3840x2160-25.00fps.json b/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 25mmf2.8 via Metabones Speedbooster__4k_16by9_3840x2160-25.00fps.json index d7e5060e..085ab51b 100644 --- a/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 25mmf2.8 via Metabones Speedbooster__4k_16by9_3840x2160-25.00fps.json +++ b/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 25mmf2.8 via Metabones Speedbooster__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eduard Germis", "camera_brand": "Fujifilm", - "camera_model": "X-H2s", + "camera_model": "X-H2S", "lens_model": "Contax Zeiss 25mm/f2.8 via Metabones Speedbooster", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 25mmf2.8 via Metabones Speedbooster__6k_3by2_6240x4160-25.00fps.json b/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 25mmf2.8 via Metabones Speedbooster__6k_3by2_6240x4160-25.00fps.json index d505f0d9..ecbd5dad 100644 --- a/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 25mmf2.8 via Metabones Speedbooster__6k_3by2_6240x4160-25.00fps.json +++ b/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 25mmf2.8 via Metabones Speedbooster__6k_3by2_6240x4160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eduard Germis", "camera_brand": "Fujifilm", - "camera_model": "X-H2s", + "camera_model": "X-H2S", "lens_model": "Contax Zeiss 25mm/f2.8 via Metabones Speedbooster", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 25mmf2.8 via Metabones Speedbooster__C4k_1.90by1_4096x2160-25.00fps.json b/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 25mmf2.8 via Metabones Speedbooster__C4k_1.90by1_4096x2160-25.00fps.json index 9bd6b8fb..9c05ec3b 100644 --- a/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 25mmf2.8 via Metabones Speedbooster__C4k_1.90by1_4096x2160-25.00fps.json +++ b/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 25mmf2.8 via Metabones Speedbooster__C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eduard Germis", "camera_brand": "Fujifilm", - "camera_model": "X-H2s", + "camera_model": "X-H2S", "lens_model": "Contax Zeiss 25mm/f2.8 via Metabones Speedbooster", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 35mmf2.8 via Metabones Speedbooster__4k_16by9_3840x2160-25.00fps.json b/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 35mmf2.8 via Metabones Speedbooster__4k_16by9_3840x2160-25.00fps.json index 1d01b582..6754ca7c 100644 --- a/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 35mmf2.8 via Metabones Speedbooster__4k_16by9_3840x2160-25.00fps.json +++ b/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 35mmf2.8 via Metabones Speedbooster__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eduard Germis", "camera_brand": "Fujifilm", - "camera_model": "X-H2s", + "camera_model": "X-H2S", "lens_model": "Contax Zeiss 35mm/f2.8 via Metabones Speedbooster", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 35mmf2.8 via Metabones Speedbooster__6k_3by2_6240x4160-25.00fps.json b/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 35mmf2.8 via Metabones Speedbooster__6k_3by2_6240x4160-25.00fps.json index 767c0c0f..3d050145 100644 --- a/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 35mmf2.8 via Metabones Speedbooster__6k_3by2_6240x4160-25.00fps.json +++ b/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 35mmf2.8 via Metabones Speedbooster__6k_3by2_6240x4160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eduard Germis", "camera_brand": "Fujifilm", - "camera_model": "X-H2s", + "camera_model": "X-H2S", "lens_model": "Contax Zeiss 35mm/f2.8 via Metabones Speedbooster", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 35mmf2.8 via Metabones Speedbooster__C4k_1.90by1_4096x2160-25.00fps.json b/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 35mmf2.8 via Metabones Speedbooster__C4k_1.90by1_4096x2160-25.00fps.json index 8736bc65..1c4bcd28 100644 --- a/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 35mmf2.8 via Metabones Speedbooster__C4k_1.90by1_4096x2160-25.00fps.json +++ b/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 35mmf2.8 via Metabones Speedbooster__C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eduard Germis", "camera_brand": "Fujifilm", - "camera_model": "X-H2s", + "camera_model": "X-H2S", "lens_model": "Contax Zeiss 35mm/f2.8 via Metabones Speedbooster", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 50mmf1.4 via Metabones Speedbooster__4k_16by9_3840x2160-25.00fps.json b/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 50mmf1.4 via Metabones Speedbooster__4k_16by9_3840x2160-25.00fps.json index b8b9240e..e27cf111 100644 --- a/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 50mmf1.4 via Metabones Speedbooster__4k_16by9_3840x2160-25.00fps.json +++ b/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 50mmf1.4 via Metabones Speedbooster__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eduard Germis", "camera_brand": "Fujifilm", - "camera_model": "X-H2s", + "camera_model": "X-H2S", "lens_model": "Contax Zeiss 50mm/f1.4 via Metabones Speedbooster", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 50mmf1.4 via Metabones Speedbooster__6k_3by2_6240x4160-25.00fps.json b/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 50mmf1.4 via Metabones Speedbooster__6k_3by2_6240x4160-25.00fps.json index 3592f5ec..64887327 100644 --- a/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 50mmf1.4 via Metabones Speedbooster__6k_3by2_6240x4160-25.00fps.json +++ b/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 50mmf1.4 via Metabones Speedbooster__6k_3by2_6240x4160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eduard Germis", "camera_brand": "Fujifilm", - "camera_model": "X-H2s", + "camera_model": "X-H2S", "lens_model": "Contax Zeiss 50mm/f1.4 via Metabones Speedbooster", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 50mmf1.4 via Metabones Speedbooster__C4k_1.90by1_4096x2160-25.00fps.json b/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 50mmf1.4 via Metabones Speedbooster__C4k_1.90by1_4096x2160-25.00fps.json index 6a0e34e8..5758ac0a 100644 --- a/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 50mmf1.4 via Metabones Speedbooster__C4k_1.90by1_4096x2160-25.00fps.json +++ b/Fujifilm/Fujifilm_X-H2s_Contax Zeiss 50mmf1.4 via Metabones Speedbooster__C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eduard Germis", "camera_brand": "Fujifilm", - "camera_model": "X-H2s", + "camera_model": "X-H2S", "lens_model": "Contax Zeiss 50mm/f1.4 via Metabones Speedbooster", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_X-H2s_FujiFilm XF 16-80F4__1080p_16by9_1920x1080-59.94fps.json b/Fujifilm/Fujifilm_X-H2s_FujiFilm XF 16-80F4__1080p_16by9_1920x1080-59.94fps.json index 0671ab3c..a8be798e 100644 --- a/Fujifilm/Fujifilm_X-H2s_FujiFilm XF 16-80F4__1080p_16by9_1920x1080-59.94fps.json +++ b/Fujifilm/Fujifilm_X-H2s_FujiFilm XF 16-80F4__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "lwd", "camera_brand": "Fujifilm", - "camera_model": "X-H2s", + "camera_model": "X-H2S", "lens_model": "FujiFilm XF 16-80F4", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_X-H2s_Fujifilm 16mm 2.8__4k_16by9_3840x2160-59.94fps - ACH Digital Photography.json b/Fujifilm/Fujifilm_X-H2s_Fujifilm 16mm 2.8__4k_16by9_3840x2160-59.94fps - ACH Digital Photography.json index 16cb9d79..8d30fe5d 100644 --- a/Fujifilm/Fujifilm_X-H2s_Fujifilm 16mm 2.8__4k_16by9_3840x2160-59.94fps - ACH Digital Photography.json +++ b/Fujifilm/Fujifilm_X-H2s_Fujifilm 16mm 2.8__4k_16by9_3840x2160-59.94fps - ACH Digital Photography.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ACH Digital Photography", "camera_brand": "Fujifilm", - "camera_model": "X-H2s", + "camera_model": "X-H2S", "lens_model": "Fujifilm 16mm 2.8", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_X-H2s_Fujinon XF 16-55mm F2.8 R LM WR @ 16mm_Flog2 All-I H265_6k_3by2_6240x4160-24.00fps.json b/Fujifilm/Fujifilm_X-H2s_Fujinon XF 16-55mm F2.8 R LM WR @ 16mm_Flog2 All-I H265_6k_3by2_6240x4160-24.00fps.json index fa235d78..177c4fe3 100644 --- a/Fujifilm/Fujifilm_X-H2s_Fujinon XF 16-55mm F2.8 R LM WR @ 16mm_Flog2 All-I H265_6k_3by2_6240x4160-24.00fps.json +++ b/Fujifilm/Fujifilm_X-H2s_Fujinon XF 16-55mm F2.8 R LM WR @ 16mm_Flog2 All-I H265_6k_3by2_6240x4160-24.00fps.json @@ -3,7 +3,7 @@ "note": "16mm", "calibrated_by": "David Reß", "camera_brand": "Fujifilm", - "camera_model": "X-H2s", + "camera_model": "X-H2S", "lens_model": "Fujinon XF 16-55mm F2.8 R LM WR @ 16mm", "camera_setting": "Flog2 All-I H265", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_X-H2s_Sigma 18-50 (18mm)__1080p_16by9_1920x1080-24.00fps.json b/Fujifilm/Fujifilm_X-H2s_Sigma 18-50 (18mm)__1080p_16by9_1920x1080-24.00fps.json index 2ffd066e..d9163099 100644 --- a/Fujifilm/Fujifilm_X-H2s_Sigma 18-50 (18mm)__1080p_16by9_1920x1080-24.00fps.json +++ b/Fujifilm/Fujifilm_X-H2s_Sigma 18-50 (18mm)__1080p_16by9_1920x1080-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Roman Gryndii", "camera_brand": "Fujifilm", - "camera_model": "X-H2s", + "camera_model": "X-H2S", "lens_model": "Sigma 18-50 (18mm)", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_X-H2s_Sigma18-50__4k_16by9_3840x2160-29.97fps.json b/Fujifilm/Fujifilm_X-H2s_Sigma18-50__4k_16by9_3840x2160-29.97fps.json index 63a284b4..68629e17 100644 --- a/Fujifilm/Fujifilm_X-H2s_Sigma18-50__4k_16by9_3840x2160-29.97fps.json +++ b/Fujifilm/Fujifilm_X-H2s_Sigma18-50__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "cm q", "camera_brand": "Fujifilm", - "camera_model": "X-H2s", + "camera_model": "X-H2S", "lens_model": "Sigma18-50", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_X-H2s_Tamron 17-70mm f2.8_17mm 60ss f2.8_6k_3by2_6240x4160-29.97fps.json b/Fujifilm/Fujifilm_X-H2s_Tamron 17-70mm f2.8_17mm 60ss f2.8_6k_3by2_6240x4160-29.97fps.json index 363efca1..9f185075 100644 --- a/Fujifilm/Fujifilm_X-H2s_Tamron 17-70mm f2.8_17mm 60ss f2.8_6k_3by2_6240x4160-29.97fps.json +++ b/Fujifilm/Fujifilm_X-H2s_Tamron 17-70mm f2.8_17mm 60ss f2.8_6k_3by2_6240x4160-29.97fps.json @@ -3,7 +3,7 @@ "note": "Open Gate", "calibrated_by": "jaime augusto", "camera_brand": "Fujifilm", - "camera_model": "X-H2s", + "camera_model": "X-H2S", "lens_model": "Tamron 17-70mm f2.8", "camera_setting": "17mm 60ss f2.8", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_X-H2s_XF35mm F1.4__4k_16by9_3840x2160-59.94fps.json b/Fujifilm/Fujifilm_X-H2s_XF35mm F1.4__4k_16by9_3840x2160-59.94fps.json index 9deff8b3..4930d2da 100644 --- a/Fujifilm/Fujifilm_X-H2s_XF35mm F1.4__4k_16by9_3840x2160-59.94fps.json +++ b/Fujifilm/Fujifilm_X-H2s_XF35mm F1.4__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Wenbin", "camera_brand": "Fujifilm", - "camera_model": "X-H2s", + "camera_model": "X-H2S", "lens_model": "XF35mm F1.4", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_X-H2s_sigma 18-50__4k_16by9_3840x2160-59.94fps.json b/Fujifilm/Fujifilm_X-H2s_sigma 18-50__4k_16by9_3840x2160-59.94fps.json index 1633c774..9a1ae880 100644 --- a/Fujifilm/Fujifilm_X-H2s_sigma 18-50__4k_16by9_3840x2160-59.94fps.json +++ b/Fujifilm/Fujifilm_X-H2s_sigma 18-50__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "关钛元", "camera_brand": "Fujifilm", - "camera_model": "X-H2s", + "camera_model": "X-H2S", "lens_model": "sigma 18-50", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_X-H2s_viltrox 23mm f1.4_48_4k_16by9_3840x2160-24.00fps.json b/Fujifilm/Fujifilm_X-H2s_viltrox 23mm f1.4_48_4k_16by9_3840x2160-24.00fps.json index 00ea168b..68c935ef 100644 --- a/Fujifilm/Fujifilm_X-H2s_viltrox 23mm f1.4_48_4k_16by9_3840x2160-24.00fps.json +++ b/Fujifilm/Fujifilm_X-H2s_viltrox 23mm f1.4_48_4k_16by9_3840x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "4k24P", "calibrated_by": "Tommy", "camera_brand": "Fujifilm", - "camera_model": "X-H2s", + "camera_model": "X-H2S", "lens_model": "viltrox 23mm f1.4", "camera_setting": "48", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_X-h2S_DZ50mm__C4k_1.90by1_4096x2160-24.00fps.json b/Fujifilm/Fujifilm_X-h2S_DZ50mm__C4k_1.90by1_4096x2160-24.00fps.json index 16d9e4f0..811bf1ef 100644 --- a/Fujifilm/Fujifilm_X-h2S_DZ50mm__C4k_1.90by1_4096x2160-24.00fps.json +++ b/Fujifilm/Fujifilm_X-h2S_DZ50mm__C4k_1.90by1_4096x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "apple", "camera_brand": "Fujifilm", - "camera_model": "X-h2S", + "camera_model": "X-H2S", "lens_model": "DZ50mm", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_X-h2S_TTArtisan_6.2k_6k_3by2_6240x4160-25.00fps.json b/Fujifilm/Fujifilm_X-h2S_TTArtisan_6.2k_6k_3by2_6240x4160-25.00fps.json index b98e3341..0877b257 100644 --- a/Fujifilm/Fujifilm_X-h2S_TTArtisan_6.2k_6k_3by2_6240x4160-25.00fps.json +++ b/Fujifilm/Fujifilm_X-h2S_TTArtisan_6.2k_6k_3by2_6240x4160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "baxi", "camera_brand": "Fujifilm", - "camera_model": "X-h2S", + "camera_model": "X-H2S", "lens_model": "TTArtisan", "camera_setting": "6.2k", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_X-h2S_dz35__1080p_16by9_1920x1080-50.00fps.json b/Fujifilm/Fujifilm_X-h2S_dz35__1080p_16by9_1920x1080-50.00fps.json index 5ddfa7cc..7630bb65 100644 --- a/Fujifilm/Fujifilm_X-h2S_dz35__1080p_16by9_1920x1080-50.00fps.json +++ b/Fujifilm/Fujifilm_X-h2S_dz35__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "apple", "camera_brand": "Fujifilm", - "camera_model": "X-h2S", + "camera_model": "X-H2S", "lens_model": "dz35", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_X-h2S_xf 56 1.2__4k_16by9_3840x2160-24.00fps.json b/Fujifilm/Fujifilm_X-h2S_xf 56 1.2__4k_16by9_3840x2160-24.00fps.json index f77302a2..581064c7 100644 --- a/Fujifilm/Fujifilm_X-h2S_xf 56 1.2__4k_16by9_3840x2160-24.00fps.json +++ b/Fujifilm/Fujifilm_X-h2S_xf 56 1.2__4k_16by9_3840x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "rocky", "camera_brand": "Fujifilm", - "camera_model": "X-h2S", + "camera_model": "X-H2S", "lens_model": "xf 56 1.2", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_XH-2s_18mm__4k_16by9_3840x2160-50.00fps - tree.json b/Fujifilm/Fujifilm_XH-2s_18mm__4k_16by9_3840x2160-50.00fps - tree.json index f74077b7..cb7c4863 100644 --- a/Fujifilm/Fujifilm_XH-2s_18mm__4k_16by9_3840x2160-50.00fps - tree.json +++ b/Fujifilm/Fujifilm_XH-2s_18mm__4k_16by9_3840x2160-50.00fps - tree.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "tree", "camera_brand": "Fujifilm", - "camera_model": "XH-2s", + "camera_model": "XH-2S", "lens_model": "18mm", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_XH-2s_xf18-200mmF4__4k_16by9_3840x2160-50.00fps - tree.json b/Fujifilm/Fujifilm_XH-2s_xf18-200mmF4__4k_16by9_3840x2160-50.00fps - tree.json index e4e50978..68c801cb 100644 --- a/Fujifilm/Fujifilm_XH-2s_xf18-200mmF4__4k_16by9_3840x2160-50.00fps - tree.json +++ b/Fujifilm/Fujifilm_XH-2s_xf18-200mmF4__4k_16by9_3840x2160-50.00fps - tree.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "tree", "camera_brand": "Fujifilm", - "camera_model": "XH-2s", + "camera_model": "XH-2S", "lens_model": "xf18-200mmF4", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_XH2s_13mm Viltrox_F8_6k_3by2_6240x4160-24.00fps.json b/Fujifilm/Fujifilm_XH2s_13mm Viltrox_F8_6k_3by2_6240x4160-24.00fps.json index 228cd188..aed6f6bd 100644 --- a/Fujifilm/Fujifilm_XH2s_13mm Viltrox_F8_6k_3by2_6240x4160-24.00fps.json +++ b/Fujifilm/Fujifilm_XH2s_13mm Viltrox_F8_6k_3by2_6240x4160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Clive Dickerson", "camera_brand": "Fujifilm", - "camera_model": "XH2s", + "camera_model": "XH2S", "lens_model": "13mm Viltrox", "camera_setting": "F8", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_XH2s_16-55 2.8_23.97_C4k_1.90by1_4096x2160-24.00fps.json b/Fujifilm/Fujifilm_XH2s_16-55 2.8_23.97_C4k_1.90by1_4096x2160-24.00fps.json index b4251390..5fe62529 100644 --- a/Fujifilm/Fujifilm_XH2s_16-55 2.8_23.97_C4k_1.90by1_4096x2160-24.00fps.json +++ b/Fujifilm/Fujifilm_XH2s_16-55 2.8_23.97_C4k_1.90by1_4096x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ravi Hosseini", "camera_brand": "Fujifilm", - "camera_model": "XH2s", + "camera_model": "XH2S", "lens_model": "16-55 2.8", "camera_setting": "23.97", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_Xh2s_75mm Viltrox_F8_6k_3by2_6240x4160-24.00fps.json b/Fujifilm/Fujifilm_Xh2s_75mm Viltrox_F8_6k_3by2_6240x4160-24.00fps.json index 3abdd89c..304139e5 100644 --- a/Fujifilm/Fujifilm_Xh2s_75mm Viltrox_F8_6k_3by2_6240x4160-24.00fps.json +++ b/Fujifilm/Fujifilm_Xh2s_75mm Viltrox_F8_6k_3by2_6240x4160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Clive Dickerson", "camera_brand": "Fujifilm", - "camera_model": "Xh2s", + "camera_model": "XH2S", "lens_model": "75mm Viltrox", "camera_setting": "F8", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_x-S10_15-45__1080p_16by9_1920x1080-24.00fps - Yang - 2.json b/Fujifilm/Fujifilm_x-S10_15-45__1080p_16by9_1920x1080-24.00fps - Yang - 2.json index c675350c..efef172a 100644 --- a/Fujifilm/Fujifilm_x-S10_15-45__1080p_16by9_1920x1080-24.00fps - Yang - 2.json +++ b/Fujifilm/Fujifilm_x-S10_15-45__1080p_16by9_1920x1080-24.00fps - Yang - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Yang", "camera_brand": "Fujifilm", - "camera_model": "x-S10", + "camera_model": "X-S10", "lens_model": "15-45", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_x-S10_15-45__1080p_16by9_1920x1080-24.00fps - Yang.json b/Fujifilm/Fujifilm_x-S10_15-45__1080p_16by9_1920x1080-24.00fps - Yang.json index 8fe85a32..7883c498 100644 --- a/Fujifilm/Fujifilm_x-S10_15-45__1080p_16by9_1920x1080-24.00fps - Yang.json +++ b/Fujifilm/Fujifilm_x-S10_15-45__1080p_16by9_1920x1080-24.00fps - Yang.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Yang", "camera_brand": "Fujifilm", - "camera_model": "x-S10", + "camera_model": "X-S10", "lens_model": "15-45", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_x-T2_50mm__1080p_16by9_1920x1080-50.00fps.json b/Fujifilm/Fujifilm_x-T2_50mm__1080p_16by9_1920x1080-50.00fps.json index 6f529eff..4570681f 100644 --- a/Fujifilm/Fujifilm_x-T2_50mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Fujifilm/Fujifilm_x-T2_50mm__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "kottayamli", "camera_brand": "Fujifilm", - "camera_model": "x-T2", + "camera_model": "X-T2", "lens_model": "50mm", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_x-T30_samyang 12mm__4k_16by9_3840x2160-25.00fps.json b/Fujifilm/Fujifilm_x-T30_samyang 12mm__4k_16by9_3840x2160-25.00fps.json index 1b3d8831..86185332 100644 --- a/Fujifilm/Fujifilm_x-T30_samyang 12mm__4k_16by9_3840x2160-25.00fps.json +++ b/Fujifilm/Fujifilm_x-T30_samyang 12mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Cedric Raulet", "camera_brand": "Fujifilm", - "camera_model": "x-T30", + "camera_model": "X-T30", "lens_model": "samyang 12mm", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_x-T4_laowa 24mm_c_4k_16by9_3840x2160-59.94fps.json b/Fujifilm/Fujifilm_x-T4_laowa 24mm_c_4k_16by9_3840x2160-59.94fps.json index 3ef07117..1d20f7dd 100644 --- a/Fujifilm/Fujifilm_x-T4_laowa 24mm_c_4k_16by9_3840x2160-59.94fps.json +++ b/Fujifilm/Fujifilm_x-T4_laowa 24mm_c_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "邱华庚", "camera_brand": "Fujifilm", - "camera_model": "x-T4", + "camera_model": "X-T4", "lens_model": "laowa 24mm", "camera_setting": "c", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_x-s10_18-55mm f2.8_manual_1080p_16by9_1920x1080-59.94fps.json b/Fujifilm/Fujifilm_x-s10_18-55mm f2.8_manual_1080p_16by9_1920x1080-59.94fps.json index f1e3c4fa..b34265d9 100644 --- a/Fujifilm/Fujifilm_x-s10_18-55mm f2.8_manual_1080p_16by9_1920x1080-59.94fps.json +++ b/Fujifilm/Fujifilm_x-s10_18-55mm f2.8_manual_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Peyman HB", "camera_brand": "Fujifilm", - "camera_model": "x-s10", + "camera_model": "X-S10", "lens_model": "18-55mm f2.8", "camera_setting": "manual", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_x-t5_18-55_manual_1080p_16by9_1920x1080-50.00fps.json b/Fujifilm/Fujifilm_x-t5_18-55_manual_1080p_16by9_1920x1080-50.00fps.json index f5ebb31e..53297548 100644 --- a/Fujifilm/Fujifilm_x-t5_18-55_manual_1080p_16by9_1920x1080-50.00fps.json +++ b/Fujifilm/Fujifilm_x-t5_18-55_manual_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "PC", "camera_brand": "Fujifilm", - "camera_model": "x-t5", + "camera_model": "X-T5", "lens_model": "18-55", "camera_setting": "manual", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_xh2_18-35_18_4k_16by9_3840x2160-29.97fps.json b/Fujifilm/Fujifilm_xh2_18-35_18_4k_16by9_3840x2160-29.97fps.json index 66d383d7..5a581893 100644 --- a/Fujifilm/Fujifilm_xh2_18-35_18_4k_16by9_3840x2160-29.97fps.json +++ b/Fujifilm/Fujifilm_xh2_18-35_18_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "yun yun", "camera_brand": "Fujifilm", - "camera_model": "xh2", + "camera_model": "XH2", "lens_model": "18-35", "camera_setting": "18端", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_xh2_1835__1080p_16by9_1920x1080-25.00fps.json b/Fujifilm/Fujifilm_xh2_1835__1080p_16by9_1920x1080-25.00fps.json index c5a92a95..99850a6c 100644 --- a/Fujifilm/Fujifilm_xh2_1835__1080p_16by9_1920x1080-25.00fps.json +++ b/Fujifilm/Fujifilm_xh2_1835__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "yun yun", "camera_brand": "Fujifilm", - "camera_model": "xh2", + "camera_model": "XH2", "lens_model": "1835", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_xh2s_Touit12 2.8_59.94_4k_16by9_3840x2160-59.94fps.json b/Fujifilm/Fujifilm_xh2s_Touit12 2.8_59.94_4k_16by9_3840x2160-59.94fps.json index c56f6f61..bcaaa0c5 100644 --- a/Fujifilm/Fujifilm_xh2s_Touit12 2.8_59.94_4k_16by9_3840x2160-59.94fps.json +++ b/Fujifilm/Fujifilm_xh2s_Touit12 2.8_59.94_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "赵宇宏", "camera_brand": "Fujifilm", - "camera_model": "xh2s", + "camera_model": "XH2S", "lens_model": "Touit12 2.8", "camera_setting": "59.94", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_xh2s_vzs 27 1.2_4k_1080p_16by9_1920x1080-59.94fps.json b/Fujifilm/Fujifilm_xh2s_vzs 27 1.2_4k_1080p_16by9_1920x1080-59.94fps.json index 1a9d8a2f..117b23f5 100644 --- a/Fujifilm/Fujifilm_xh2s_vzs 27 1.2_4k_1080p_16by9_1920x1080-59.94fps.json +++ b/Fujifilm/Fujifilm_xh2s_vzs 27 1.2_4k_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "胡振锋", "camera_brand": "Fujifilm", - "camera_model": "xh2s", + "camera_model": "XH2S", "lens_model": "vzs 27 1.2", "camera_setting": "4k", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_xh2s_xf18-200 f4 18mm__4k_16by9_3840x2160-59.94fps.json b/Fujifilm/Fujifilm_xh2s_xf18-200 f4 18mm__4k_16by9_3840x2160-59.94fps.json index 346a2e4d..b6652807 100644 --- a/Fujifilm/Fujifilm_xh2s_xf18-200 f4 18mm__4k_16by9_3840x2160-59.94fps.json +++ b/Fujifilm/Fujifilm_xh2s_xf18-200 f4 18mm__4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "赵宇宏", "calibrator_version": "1.5.4", "camera_brand": "Fujifilm", - "camera_model": "xh2s", + "camera_model": "XH2S", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Fujifilm/Fujifilm_xt-3_fujinon 18-55__4k_16by9_3840x2160-59.94fps.json b/Fujifilm/Fujifilm_xt-3_fujinon 18-55__4k_16by9_3840x2160-59.94fps.json index 7f065556..edc1b5f6 100644 --- a/Fujifilm/Fujifilm_xt-3_fujinon 18-55__4k_16by9_3840x2160-59.94fps.json +++ b/Fujifilm/Fujifilm_xt-3_fujinon 18-55__4k_16by9_3840x2160-59.94fps.json @@ -2,8 +2,8 @@ "name": "fujifilm_xt-3_fujinon 18-55__4k_16by9_3840x2160-59.94fps", "note": "", "calibrated_by": "KuCeJIb", - "camera_brand": "fujifilm", - "camera_model": "xt-3", + "camera_brand": "Fujifilm", + "camera_model": "XT-3", "lens_model": "fujinon 18-55", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_xt3_16-55__2k_1.90by1_2048x1080-59.94fps.json b/Fujifilm/Fujifilm_xt3_16-55__2k_1.90by1_2048x1080-59.94fps.json index 92d4c0b0..f3da3a1f 100644 --- a/Fujifilm/Fujifilm_xt3_16-55__2k_1.90by1_2048x1080-59.94fps.json +++ b/Fujifilm/Fujifilm_xt3_16-55__2k_1.90by1_2048x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ljm", "camera_brand": "Fujifilm", - "camera_model": "xt3", + "camera_model": "XT3", "lens_model": "16-55", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_xt3_16-55__4k_16by9_3840x2160-59.94fps.json b/Fujifilm/Fujifilm_xt3_16-55__4k_16by9_3840x2160-59.94fps.json index 5489d2f3..a58ed527 100644 --- a/Fujifilm/Fujifilm_xt3_16-55__4k_16by9_3840x2160-59.94fps.json +++ b/Fujifilm/Fujifilm_xt3_16-55__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ljm", "camera_brand": "Fujifilm", - "camera_model": "xt3", + "camera_model": "XT3", "lens_model": "16-55", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_xt3_viltrox 13f1.4__4k_16by9_3840x2160-50.00fps.json b/Fujifilm/Fujifilm_xt3_viltrox 13f1.4__4k_16by9_3840x2160-50.00fps.json index 2cceb3f8..909aa5e9 100644 --- a/Fujifilm/Fujifilm_xt3_viltrox 13f1.4__4k_16by9_3840x2160-50.00fps.json +++ b/Fujifilm/Fujifilm_xt3_viltrox 13f1.4__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "HCW", "camera_brand": "Fujifilm", - "camera_model": "xt3", + "camera_model": "XT3", "lens_model": "viltrox 13f1.4", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_xt3_viltrox 85mm 1.8__4k_16by9_3840x2160-29.97fps.json b/Fujifilm/Fujifilm_xt3_viltrox 85mm 1.8__4k_16by9_3840x2160-29.97fps.json index 12ed12cb..32b6f409 100644 --- a/Fujifilm/Fujifilm_xt3_viltrox 85mm 1.8__4k_16by9_3840x2160-29.97fps.json +++ b/Fujifilm/Fujifilm_xt3_viltrox 85mm 1.8__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Daniel López Orvañanos", "camera_brand": "Fujifilm", - "camera_model": "xt3", + "camera_model": "XT3", "lens_model": "viltrox 85mm 1.8", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_xt3_xc35mm_25_4k_16by9_3840x2160-25.00fps.json b/Fujifilm/Fujifilm_xt3_xc35mm_25_4k_16by9_3840x2160-25.00fps.json index ea1a4020..1f51ef07 100644 --- a/Fujifilm/Fujifilm_xt3_xc35mm_25_4k_16by9_3840x2160-25.00fps.json +++ b/Fujifilm/Fujifilm_xt3_xc35mm_25_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "倪定朔", "camera_brand": "Fujifilm", - "camera_model": "xt3", + "camera_model": "XT3", "lens_model": "xc35mm", "camera_setting": "25", "calib_dimension": { diff --git a/Fujifilm/Fujifilm_xt4_16-55 (16)__C4k_1.90by1_4096x2160-29.97fps.json b/Fujifilm/Fujifilm_xt4_16-55 (16)__C4k_1.90by1_4096x2160-29.97fps.json index 8e1809ee..06eee087 100644 --- a/Fujifilm/Fujifilm_xt4_16-55 (16)__C4k_1.90by1_4096x2160-29.97fps.json +++ b/Fujifilm/Fujifilm_xt4_16-55 (16)__C4k_1.90by1_4096x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Orosz Viktoria", "camera_brand": "Fujifilm", - "camera_model": "xt4", + "camera_model": "XT4", "lens_model": "16-55 (16)", "camera_setting": "", "calib_dimension": { diff --git a/Fujifilm/fujifilm_X-T100_xc 50 203__1080p_16by9_1920x1080-59.94fps.json b/Fujifilm/fujifilm_X-T100_xc 50 203__1080p_16by9_1920x1080-59.94fps.json index 88a116e9..d51e0690 100644 --- a/Fujifilm/fujifilm_X-T100_xc 50 203__1080p_16by9_1920x1080-59.94fps.json +++ b/Fujifilm/fujifilm_X-T100_xc 50 203__1080p_16by9_1920x1080-59.94fps.json @@ -2,7 +2,7 @@ "name": "fujifilm_X-T100_xc 50 203__1080p_16by9_1920x1080-59.94fps", "note": "", "calibrated_by": "ENZO", - "camera_brand": "fujifilm", + "camera_brand": "Fujifilm", "camera_model": "X-T100", "lens_model": "xc 50 203", "camera_setting": "", diff --git a/GoPro/GoPro_HERO10 Black_Anamorphic 1.2121x_NO-EIS_2.7k_2.16by1_3277x1520-50.00fps.json b/GoPro/GoPro_HERO10 Black_Anamorphic 1.2121x_NO-EIS_2.7k_2.16by1_3277x1520-50.00fps.json index f1cb7ed4..ff5b018c 100644 --- a/GoPro/GoPro_HERO10 Black_Anamorphic 1.2121x_NO-EIS_2.7k_2.16by1_3277x1520-50.00fps.json +++ b/GoPro/GoPro_HERO10 Black_Anamorphic 1.2121x_NO-EIS_2.7k_2.16by1_3277x1520-50.00fps.json @@ -3,7 +3,7 @@ "note": "NO-EIS", "calibrated_by": "Mylez Molo", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Anamorphic 1.2121x", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Anamorphic 1.2121x_NO-EIS_6k_2.15by1_6438x2988-50.00fps.json b/GoPro/GoPro_HERO10 Black_Anamorphic 1.2121x_NO-EIS_6k_2.15by1_6438x2988-50.00fps.json index d716fa80..bc0052f0 100644 --- a/GoPro/GoPro_HERO10 Black_Anamorphic 1.2121x_NO-EIS_6k_2.15by1_6438x2988-50.00fps.json +++ b/GoPro/GoPro_HERO10 Black_Anamorphic 1.2121x_NO-EIS_6k_2.15by1_6438x2988-50.00fps.json @@ -3,7 +3,7 @@ "note": "NO-EIS", "calibrated_by": "Mylez Molo", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Anamorphic 1.2121x", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Anamorphic 1.2121x_NO-EIS_C4k_2.15by1_4654x2160-50.00fps.json b/GoPro/GoPro_HERO10 Black_Anamorphic 1.2121x_NO-EIS_C4k_2.15by1_4654x2160-50.00fps.json index 03a142e9..31f49605 100644 --- a/GoPro/GoPro_HERO10 Black_Anamorphic 1.2121x_NO-EIS_C4k_2.15by1_4654x2160-50.00fps.json +++ b/GoPro/GoPro_HERO10 Black_Anamorphic 1.2121x_NO-EIS_C4k_2.15by1_4654x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "NO-EIS", "calibrated_by": "Mylez Molo", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Anamorphic 1.2121x", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Anamorphic 1.212_NO-EIS_2k_2.15by1_2327x1080-50.00fps.json b/GoPro/GoPro_HERO10 Black_Anamorphic 1.212_NO-EIS_2k_2.15by1_2327x1080-50.00fps.json index dbaa66e3..c2c0210c 100644 --- a/GoPro/GoPro_HERO10 Black_Anamorphic 1.212_NO-EIS_2k_2.15by1_2327x1080-50.00fps.json +++ b/GoPro/GoPro_HERO10 Black_Anamorphic 1.212_NO-EIS_2k_2.15by1_2327x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "NO-EIS", "calibrated_by": "Mylez Molo", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Anamorphic 1.212", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Kase 1.33x Anamorphic Lens_5.3K Wide_5k_16by9_5312x2988-59.94fps.json b/GoPro/GoPro_HERO10 Black_Kase 1.33x Anamorphic Lens_5.3K Wide_5k_16by9_5312x2988-59.94fps.json index 6433d5b4..68f1cb32 100644 --- a/GoPro/GoPro_HERO10 Black_Kase 1.33x Anamorphic Lens_5.3K Wide_5k_16by9_5312x2988-59.94fps.json +++ b/GoPro/GoPro_HERO10 Black_Kase 1.33x Anamorphic Lens_5.3K Wide_5k_16by9_5312x2988-59.94fps.json @@ -3,7 +3,7 @@ "note": "NO-EIS", "calibrated_by": "Kwong Kan", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Kase 1.33x Anamorphic Lens", "camera_setting": "5.3K Wide", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Kase 1.33x Anamorphic Lens_5.3K Linear_5k_16by9_5312x2988-59.94fps.json b/GoPro/GoPro_HERO10 Black_Kase 1.33x Anamorphic Lens_5.3K Linear_5k_16by9_5312x2988-59.94fps.json index 0d5199ed..a1a8d98b 100644 --- a/GoPro/GoPro_HERO10 Black_Kase 1.33x Anamorphic Lens_5.3K Linear_5k_16by9_5312x2988-59.94fps.json +++ b/GoPro/GoPro_HERO10 Black_Kase 1.33x Anamorphic Lens_5.3K Linear_5k_16by9_5312x2988-59.94fps.json @@ -3,7 +3,7 @@ "note": "NO-EIS", "calibrated_by": "Kwong Kan", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Kase 1.33x Anamorphic Lens", "camera_setting": "5.3K Linear", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Kase 1.33x Anamorphic Lens_Linear_5k_16by9_5312x2988-29.97fps.json b/GoPro/GoPro_HERO10 Black_Kase 1.33x Anamorphic Lens_Linear_5k_16by9_5312x2988-29.97fps.json index 69acbfb0..3cf58f09 100644 --- a/GoPro/GoPro_HERO10 Black_Kase 1.33x Anamorphic Lens_Linear_5k_16by9_5312x2988-29.97fps.json +++ b/GoPro/GoPro_HERO10 Black_Kase 1.33x Anamorphic Lens_Linear_5k_16by9_5312x2988-29.97fps.json @@ -3,7 +3,7 @@ "note": "NO-EIS", "calibrated_by": "Kwong Kan", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Kase 1.33x Anamorphic Lens", "camera_setting": "Linear", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Linear_1.21x Neewer Anamorphic Lens_C4k_2.15by1_4650x2160-50.00fps.json b/GoPro/GoPro_HERO10 Black_Linear_1.21x Neewer Anamorphic Lens_C4k_2.15by1_4650x2160-50.00fps.json index b87aef44..aca20ffb 100644 --- a/GoPro/GoPro_HERO10 Black_Linear_1.21x Neewer Anamorphic Lens_C4k_2.15by1_4650x2160-50.00fps.json +++ b/GoPro/GoPro_HERO10 Black_Linear_1.21x Neewer Anamorphic Lens_C4k_2.15by1_4650x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "NO-EIS", "calibrated_by": "Mylez Molo", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Linear", "camera_setting": "1.21x Neewer Anamorphic Lens", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Linear_16by9.json b/GoPro/GoPro_HERO10 Black_Linear_16by9.json index 0b6dda2c..b6c24832 100644 --- a/GoPro/GoPro_HERO10 Black_Linear_16by9.json +++ b/GoPro/GoPro_HERO10 Black_Linear_16by9.json @@ -2,7 +2,7 @@ "name": "GoPro_HERO10 Black_Linear_16by9", "calibrated_by": "Eddy", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Linear", "calib_dimension": { "w": 5312, "h": 2988 }, "orig_dimension": { "w": 5312, "h": 2988 }, diff --git a/GoPro/GoPro_HERO10 Black_Linear_4by3.json b/GoPro/GoPro_HERO10 Black_Linear_4by3.json index 98d8c099..1e075e6a 100644 --- a/GoPro/GoPro_HERO10 Black_Linear_4by3.json +++ b/GoPro/GoPro_HERO10 Black_Linear_4by3.json @@ -2,7 +2,7 @@ "name": "GoPro_HERO10 Black_Linear_4by3", "calibrated_by": "Eddy", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Linear", "calib_dimension": { "w": 5120, "h": 3840 }, "orig_dimension": { "w": 5120, "h": 3840 }, diff --git a/GoPro/GoPro_HERO10 Black_Linear_4k Neweer Anamorphic 1.33_5k_16by9_5320x3000-50.00fps.json b/GoPro/GoPro_HERO10 Black_Linear_4k Neweer Anamorphic 1.33_5k_16by9_5320x3000-50.00fps.json index 6fd11d3e..1ab06548 100644 --- a/GoPro/GoPro_HERO10 Black_Linear_4k Neweer Anamorphic 1.33_5k_16by9_5320x3000-50.00fps.json +++ b/GoPro/GoPro_HERO10 Black_Linear_4k Neweer Anamorphic 1.33_5k_16by9_5320x3000-50.00fps.json @@ -3,7 +3,7 @@ "note": "NO-EIS", "calibrated_by": "Mone", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Linear", "camera_setting": "4k Neweer Anamorphic 1.33", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Linear_Anamorphic 1.21x_4k_16by9_3840x2160-50.00fps.json b/GoPro/GoPro_HERO10 Black_Linear_Anamorphic 1.21x_4k_16by9_3840x2160-50.00fps.json index 0334a8e7..27c90c34 100644 --- a/GoPro/GoPro_HERO10 Black_Linear_Anamorphic 1.21x_4k_16by9_3840x2160-50.00fps.json +++ b/GoPro/GoPro_HERO10 Black_Linear_Anamorphic 1.21x_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "NO-EIS", "calibrated_by": "Mylez Molo", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Linear", "camera_setting": "Anamorphic 1.21x", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Linear_Linear Anamorhpic 1.21x_4k_3by2_3840x2616-50.00fps.json b/GoPro/GoPro_HERO10 Black_Linear_Linear Anamorhpic 1.21x_4k_3by2_3840x2616-50.00fps.json index 5c281aea..8e0aedf1 100644 --- a/GoPro/GoPro_HERO10 Black_Linear_Linear Anamorhpic 1.21x_4k_3by2_3840x2616-50.00fps.json +++ b/GoPro/GoPro_HERO10 Black_Linear_Linear Anamorhpic 1.21x_4k_3by2_3840x2616-50.00fps.json @@ -3,7 +3,7 @@ "note": "NO-EIS", "calibrated_by": "Mylez Molo", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Linear", "camera_setting": "Linear Anamorhpic 1.21x", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Max Wide_HS Boost_2.7k_16by9.json b/GoPro/GoPro_HERO10 Black_Max Wide_HS Boost_2.7k_16by9.json index 8f60124b..470e04da 100644 --- a/GoPro/GoPro_HERO10 Black_Max Wide_HS Boost_2.7k_16by9.json +++ b/GoPro/GoPro_HERO10 Black_Max Wide_HS Boost_2.7k_16by9.json @@ -3,7 +3,7 @@ "note": "HS Boost", "calibrated_by": "Eddy", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Wide", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Max Wide_HS EIS_2.7k_16by9-239.76fps.json b/GoPro/GoPro_HERO10 Black_Max Wide_HS EIS_2.7k_16by9-239.76fps.json index 14fa5526..2e6ed475 100644 --- a/GoPro/GoPro_HERO10 Black_Max Wide_HS EIS_2.7k_16by9-239.76fps.json +++ b/GoPro/GoPro_HERO10 Black_Max Wide_HS EIS_2.7k_16by9-239.76fps.json @@ -3,7 +3,7 @@ "note": "HS EIS", "calibrated_by": "Eddy", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Wide", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Max Wide_HS EIS_2.7k_16by9.json b/GoPro/GoPro_HERO10 Black_Max Wide_HS EIS_2.7k_16by9.json index 113eb7b8..758768af 100644 --- a/GoPro/GoPro_HERO10 Black_Max Wide_HS EIS_2.7k_16by9.json +++ b/GoPro/GoPro_HERO10 Black_Max Wide_HS EIS_2.7k_16by9.json @@ -3,7 +3,7 @@ "note": "HS EIS", "calibrated_by": "Eddy", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Wide", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Max Wide_HS EIS_2.7k_4by3.json b/GoPro/GoPro_HERO10 Black_Max Wide_HS EIS_2.7k_4by3.json index e0bbe7f9..5e4bbd22 100644 --- a/GoPro/GoPro_HERO10 Black_Max Wide_HS EIS_2.7k_4by3.json +++ b/GoPro/GoPro_HERO10 Black_Max Wide_HS EIS_2.7k_4by3.json @@ -3,7 +3,7 @@ "note": "HS EIS", "calibrated_by": "Eddy", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Wide", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Max Wide_NO-EIS_2.7k_16by9-239.76fps.json b/GoPro/GoPro_HERO10 Black_Max Wide_NO-EIS_2.7k_16by9-239.76fps.json index af1d369a..c814c8b4 100644 --- a/GoPro/GoPro_HERO10 Black_Max Wide_NO-EIS_2.7k_16by9-239.76fps.json +++ b/GoPro/GoPro_HERO10 Black_Max Wide_NO-EIS_2.7k_16by9-239.76fps.json @@ -3,7 +3,7 @@ "note": "NO-EIS", "calibrated_by": "Eddy", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Wide", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Max Wide_NO-EIS_2.7k_16by9.json b/GoPro/GoPro_HERO10 Black_Max Wide_NO-EIS_2.7k_16by9.json index 977326ca..f1837201 100644 --- a/GoPro/GoPro_HERO10 Black_Max Wide_NO-EIS_2.7k_16by9.json +++ b/GoPro/GoPro_HERO10 Black_Max Wide_NO-EIS_2.7k_16by9.json @@ -3,7 +3,7 @@ "note": "NO-EIS", "calibrated_by": "Eddy", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Wide", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Max Wide_NO-EIS_2.7k_16by9_2704x1520-59.94fps.json b/GoPro/GoPro_HERO10 Black_Max Wide_NO-EIS_2.7k_16by9_2704x1520-59.94fps.json index 39cbc71e..e3597bc0 100644 --- a/GoPro/GoPro_HERO10 Black_Max Wide_NO-EIS_2.7k_16by9_2704x1520-59.94fps.json +++ b/GoPro/GoPro_HERO10 Black_Max Wide_NO-EIS_2.7k_16by9_2704x1520-59.94fps.json @@ -3,7 +3,7 @@ "note": "NO-EIS", "calibrated_by": "H610M-KD4", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Max Wide", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Max Wide_NO-EIS_2.7k_4by3.json b/GoPro/GoPro_HERO10 Black_Max Wide_NO-EIS_2.7k_4by3.json index 82cd2488..6b4281bb 100644 --- a/GoPro/GoPro_HERO10 Black_Max Wide_NO-EIS_2.7k_4by3.json +++ b/GoPro/GoPro_HERO10 Black_Max Wide_NO-EIS_2.7k_4by3.json @@ -3,7 +3,7 @@ "note": "NO-EIS", "calibrated_by": "Eddy", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Wide", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Max Wide_NO-EIS_2.7k_4by3_2704x2028-59.94fps.json b/GoPro/GoPro_HERO10 Black_Max Wide_NO-EIS_2.7k_4by3_2704x2028-59.94fps.json index fe45e2c6..4ec59fea 100644 --- a/GoPro/GoPro_HERO10 Black_Max Wide_NO-EIS_2.7k_4by3_2704x2028-59.94fps.json +++ b/GoPro/GoPro_HERO10 Black_Max Wide_NO-EIS_2.7k_4by3_2704x2028-59.94fps.json @@ -3,7 +3,7 @@ "note": "NO-EIS", "calibrated_by": "Liam Bristow-Hanna", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Max Wide", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Max_HS EIS_2.7k_16by9.json b/GoPro/GoPro_HERO10 Black_Max_HS EIS_2.7k_16by9.json index 359ceb1d..a6ab7704 100644 --- a/GoPro/GoPro_HERO10 Black_Max_HS EIS_2.7k_16by9.json +++ b/GoPro/GoPro_HERO10 Black_Max_HS EIS_2.7k_16by9.json @@ -3,7 +3,7 @@ "note": "HS EIS", "calibrated_by": "Eddy", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Max", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Max_HS EIS_2.7k_4by3.json b/GoPro/GoPro_HERO10 Black_Max_HS EIS_2.7k_4by3.json index ede1a3d5..de4cdac9 100644 --- a/GoPro/GoPro_HERO10 Black_Max_HS EIS_2.7k_4by3.json +++ b/GoPro/GoPro_HERO10 Black_Max_HS EIS_2.7k_4by3.json @@ -3,7 +3,7 @@ "note": "HS EIS", "calibrated_by": "Eddy", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Max", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Max_NO-EIS_2.7k_16by9.json b/GoPro/GoPro_HERO10 Black_Max_NO-EIS_2.7k_16by9.json index fe3a8644..c067e614 100644 --- a/GoPro/GoPro_HERO10 Black_Max_NO-EIS_2.7k_16by9.json +++ b/GoPro/GoPro_HERO10 Black_Max_NO-EIS_2.7k_16by9.json @@ -3,7 +3,7 @@ "note": "NO-EIS", "calibrated_by": "Eddy", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Max", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Max_NO-EIS_2.7k_4by3.json b/GoPro/GoPro_HERO10 Black_Max_NO-EIS_2.7k_4by3.json index 4282bf40..a82a7f9d 100644 --- a/GoPro/GoPro_HERO10 Black_Max_NO-EIS_2.7k_4by3.json +++ b/GoPro/GoPro_HERO10 Black_Max_NO-EIS_2.7k_4by3.json @@ -3,7 +3,7 @@ "note": "NO-EIS", "calibrated_by": "Eddy", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Max", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Narrow_HS Boost_16by9.json b/GoPro/GoPro_HERO10 Black_Narrow_HS Boost_16by9.json index 0fa7a0d6..0687673e 100644 --- a/GoPro/GoPro_HERO10 Black_Narrow_HS Boost_16by9.json +++ b/GoPro/GoPro_HERO10 Black_Narrow_HS Boost_16by9.json @@ -3,7 +3,7 @@ "note": "HS Boost", "calibrated_by": "Eddy", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Narrow", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Narrow_HS Boost_4by3.json b/GoPro/GoPro_HERO10 Black_Narrow_HS Boost_4by3.json index 1e5dbb98..a6ea653e 100644 --- a/GoPro/GoPro_HERO10 Black_Narrow_HS Boost_4by3.json +++ b/GoPro/GoPro_HERO10 Black_Narrow_HS Boost_4by3.json @@ -3,7 +3,7 @@ "note": "HS Boost", "calibrated_by": "Eddy", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Narrow", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Narrow_NO-EIS_16by9.json b/GoPro/GoPro_HERO10 Black_Narrow_NO-EIS_16by9.json index 7b7fd44a..f87b98cf 100644 --- a/GoPro/GoPro_HERO10 Black_Narrow_NO-EIS_16by9.json +++ b/GoPro/GoPro_HERO10 Black_Narrow_NO-EIS_16by9.json @@ -3,7 +3,7 @@ "note": "NO-EIS", "calibrated_by": "Eddy", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Narrow", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Narrow_NO-EIS_4by3.json b/GoPro/GoPro_HERO10 Black_Narrow_NO-EIS_4by3.json index 15b621df..0e35a9e6 100644 --- a/GoPro/GoPro_HERO10 Black_Narrow_NO-EIS_4by3.json +++ b/GoPro/GoPro_HERO10 Black_Narrow_NO-EIS_4by3.json @@ -3,7 +3,7 @@ "note": "NO-EIS", "calibrated_by": "Eddy", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Narrow", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO10 Black_Wide_16by9.json b/GoPro/GoPro_HERO10 Black_Wide_16by9.json index 44455b16..0d343a95 100644 --- a/GoPro/GoPro_HERO10 Black_Wide_16by9.json +++ b/GoPro/GoPro_HERO10 Black_Wide_16by9.json @@ -2,7 +2,7 @@ "name": "GoPro_HERO10 Black_Wide_16by9", "calibrated_by": "Eddy", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Wide", "calib_dimension": { "w": 3840, "h": 2160 }, "orig_dimension": { "w": 3840, "h": 2160 }, diff --git a/GoPro/GoPro_HERO10 Black_Wide_4by3.json b/GoPro/GoPro_HERO10 Black_Wide_4by3.json index f079bb55..595dd84d 100644 --- a/GoPro/GoPro_HERO10 Black_Wide_4by3.json +++ b/GoPro/GoPro_HERO10 Black_Wide_4by3.json @@ -2,7 +2,7 @@ "name": "GoPro_HERO10 Black_Wide_4by3", "calibrated_by": "Eddy", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Wide", "calib_dimension": { "w": 5312, "h": 3984 }, "orig_dimension": { "w": 5312, "h": 3984 }, diff --git a/GoPro/GoPro_HERO10 Black_Wide_neewer anamorphic wide_5k_16by9_5332x3000-50.00fps.json b/GoPro/GoPro_HERO10 Black_Wide_neewer anamorphic wide_5k_16by9_5332x3000-50.00fps.json index 523a3598..3ec8ad1e 100644 --- a/GoPro/GoPro_HERO10 Black_Wide_neewer anamorphic wide_5k_16by9_5332x3000-50.00fps.json +++ b/GoPro/GoPro_HERO10 Black_Wide_neewer anamorphic wide_5k_16by9_5332x3000-50.00fps.json @@ -3,7 +3,7 @@ "note": "NO-EIS", "calibrated_by": "Simone Locci", "camera_brand": "GoPro", - "camera_model": "HERO10 Black", + "camera_model": "Hero10 black", "lens_model": "Wide", "camera_setting": "neewer anamorphic wide", "calib_dimension": { diff --git a/GoPro/GoPro_HERO11 Black_Linear + anamorph_NO-EIS_4k_4by3_4000x3000-50.00fps.json b/GoPro/GoPro_HERO11 Black_Linear + anamorph_NO-EIS_4k_4by3_4000x3000-50.00fps.json index 88cd8960..3619f545 100644 --- a/GoPro/GoPro_HERO11 Black_Linear + anamorph_NO-EIS_4k_4by3_4000x3000-50.00fps.json +++ b/GoPro/GoPro_HERO11 Black_Linear + anamorph_NO-EIS_4k_4by3_4000x3000-50.00fps.json @@ -3,7 +3,7 @@ "note": "NO-EIS", "calibrated_by": "Vladimir Konon", "camera_brand": "GoPro", - "camera_model": "HERO11 Black", + "camera_model": "Hero11 Black", "lens_model": "Linear + anamorph", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO11 Black_Linear_16by9.json b/GoPro/GoPro_HERO11 Black_Linear_16by9.json index bcf193a4..4bad75d3 100644 --- a/GoPro/GoPro_HERO11 Black_Linear_16by9.json +++ b/GoPro/GoPro_HERO11 Black_Linear_16by9.json @@ -2,7 +2,7 @@ "name": "GoPro_HERO11 Black_Linear_16by9", "calibrated_by": "Eddy", "camera_brand": "GoPro", - "camera_model": "HERO11 Black", + "camera_model": "Hero11 Black", "lens_model": "Linear", "calib_dimension": { "w": 5312, "h": 2988 }, "orig_dimension": { "w": 5312, "h": 2988 }, diff --git a/GoPro/GoPro_HERO11 Black_Linear_4by3.json b/GoPro/GoPro_HERO11 Black_Linear_4by3.json index 7710307e..3f8af276 100644 --- a/GoPro/GoPro_HERO11 Black_Linear_4by3.json +++ b/GoPro/GoPro_HERO11 Black_Linear_4by3.json @@ -2,7 +2,7 @@ "name": "GoPro_HERO11 Black_Linear_4by3", "calibrated_by": "Eddy", "camera_brand": "GoPro", - "camera_model": "HERO11 Black", + "camera_model": "Hero11 Black", "lens_model": "Linear", "calib_dimension": { "w": 5312, "h": 3984 }, "orig_dimension": { "w": 5312, "h": 3984 }, diff --git a/GoPro/GoPro_HERO11 Black_Max Wide_HS EIS_2.7k_4by3_2704x2028-59.94fps.json b/GoPro/GoPro_HERO11 Black_Max Wide_HS EIS_2.7k_4by3_2704x2028-59.94fps.json index 0467de81..d613f66b 100644 --- a/GoPro/GoPro_HERO11 Black_Max Wide_HS EIS_2.7k_4by3_2704x2028-59.94fps.json +++ b/GoPro/GoPro_HERO11 Black_Max Wide_HS EIS_2.7k_4by3_2704x2028-59.94fps.json @@ -3,7 +3,7 @@ "note": "HS EIS", "calibrated_by": "Marek Horak", "camera_brand": "GoPro", - "camera_model": "HERO11 Black", + "camera_model": "Hero11 Black", "lens_model": "Max Wide", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO11 Black_Narrow_HS Boost_5k_16by9_5312x2988-50.00fps.json b/GoPro/GoPro_HERO11 Black_Narrow_HS Boost_5k_16by9_5312x2988-50.00fps.json index aaaeb4b4..61c6e519 100644 --- a/GoPro/GoPro_HERO11 Black_Narrow_HS Boost_5k_16by9_5312x2988-50.00fps.json +++ b/GoPro/GoPro_HERO11 Black_Narrow_HS Boost_5k_16by9_5312x2988-50.00fps.json @@ -3,7 +3,7 @@ "note": "HS Boost", "calibrated_by": "Павел Пятигорский", "camera_brand": "GoPro", - "camera_model": "HERO11 Black", + "camera_model": "Hero11 Black", "lens_model": "Narrow", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO11 Black_Wide + Neweer Anamorphic 1.33x_5.3k 8_7 10-bit_6k_3by2_7065x4648-23.98fps.json b/GoPro/GoPro_HERO11 Black_Wide + Neweer Anamorphic 1.33x_5.3k 8_7 10-bit_6k_3by2_7065x4648-23.98fps.json index 32707f7c..c2f815c3 100644 --- a/GoPro/GoPro_HERO11 Black_Wide + Neweer Anamorphic 1.33x_5.3k 8_7 10-bit_6k_3by2_7065x4648-23.98fps.json +++ b/GoPro/GoPro_HERO11 Black_Wide + Neweer Anamorphic 1.33x_5.3k 8_7 10-bit_6k_3by2_7065x4648-23.98fps.json @@ -3,7 +3,7 @@ "note": "NO-EIS", "calibrated_by": "Luis Cardenas (SKYLABS)", "camera_brand": "GoPro", - "camera_model": "HERO11 Black", + "camera_model": "Hero11 Black", "lens_model": "Wide + Neweer Anamorphic 1.33x", "camera_setting": "5.3k 8:7 10-bit", "calib_dimension": { diff --git a/GoPro/GoPro_HERO11 Black_Wide_16by9.json b/GoPro/GoPro_HERO11 Black_Wide_16by9.json index 52416c5a..7fa80c08 100644 --- a/GoPro/GoPro_HERO11 Black_Wide_16by9.json +++ b/GoPro/GoPro_HERO11 Black_Wide_16by9.json @@ -2,7 +2,7 @@ "name": "GoPro_HERO11 Black_Wide_16by9", "calibrated_by": "Eddy", "camera_brand": "GoPro", - "camera_model": "HERO11 Black", + "camera_model": "Hero11 Black", "lens_model": "Wide", "calib_dimension": { "w": 3840, "h": 2160 }, "orig_dimension": { "w": 3840, "h": 2160 }, diff --git a/GoPro/GoPro_HERO11 Black_Wide_4by3.json b/GoPro/GoPro_HERO11 Black_Wide_4by3.json index de6ac238..607c4375 100644 --- a/GoPro/GoPro_HERO11 Black_Wide_4by3.json +++ b/GoPro/GoPro_HERO11 Black_Wide_4by3.json @@ -2,7 +2,7 @@ "name": "GoPro_HERO11 Black_Wide_4by3", "calibrated_by": "Eddy", "camera_brand": "GoPro", - "camera_model": "HERO11 Black", + "camera_model": "Hero11 Black", "lens_model": "Wide", "calib_dimension": { "w": 5312, "h": 3984 }, "orig_dimension": { "w": 5312, "h": 3984 }, diff --git a/GoPro/GoPro_HERO11 Black_Wide_8by7.json b/GoPro/GoPro_HERO11 Black_Wide_8by7.json index 882111f1..79ab0088 100644 --- a/GoPro/GoPro_HERO11 Black_Wide_8by7.json +++ b/GoPro/GoPro_HERO11 Black_Wide_8by7.json @@ -2,7 +2,7 @@ "name": "GoPro_HERO11 Black_Wide_8by7", "calibrated_by": "Eddy", "camera_brand": "GoPro", - "camera_model": "HERO11 Black", + "camera_model": "Hero11 Black", "lens_model": "Wide", "calib_dimension": { "w": 5312, "h": 4648 }, "orig_dimension": { "w": 5312, "h": 4648 }, diff --git a/GoPro/GoPro_HERO11 Black_Wide_HS EIS_720p_8by7_1280x1120-29.97fps.json b/GoPro/GoPro_HERO11 Black_Wide_HS EIS_720p_8by7_1280x1120-29.97fps.json index ef55777e..139b6b00 100644 --- a/GoPro/GoPro_HERO11 Black_Wide_HS EIS_720p_8by7_1280x1120-29.97fps.json +++ b/GoPro/GoPro_HERO11 Black_Wide_HS EIS_720p_8by7_1280x1120-29.97fps.json @@ -3,7 +3,7 @@ "note": "HS EIS", "calibrated_by": "Eric John Gangob", "camera_brand": "GoPro", - "camera_model": "HERO11 Black", + "camera_model": "Hero11 Black", "lens_model": "Wide", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO11 Black_Wide_NO-EIS_1440p_4by3_1920x1440-59.94fps.json b/GoPro/GoPro_HERO11 Black_Wide_NO-EIS_1440p_4by3_1920x1440-59.94fps.json index a8659ec4..56f3d0e7 100644 --- a/GoPro/GoPro_HERO11 Black_Wide_NO-EIS_1440p_4by3_1920x1440-59.94fps.json +++ b/GoPro/GoPro_HERO11 Black_Wide_NO-EIS_1440p_4by3_1920x1440-59.94fps.json @@ -3,7 +3,7 @@ "note": "NO-EIS", "calibrated_by": "Eric John Gangob", "camera_brand": "GoPro", - "camera_model": "HERO11 Black", + "camera_model": "Hero11 Black", "lens_model": "Wide", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO11 Black_Wide_NO-EIS_2k_8by7_2464x2156-29.98fps.json b/GoPro/GoPro_HERO11 Black_Wide_NO-EIS_2k_8by7_2464x2156-29.98fps.json index 388055a0..b4aaa68f 100644 --- a/GoPro/GoPro_HERO11 Black_Wide_NO-EIS_2k_8by7_2464x2156-29.98fps.json +++ b/GoPro/GoPro_HERO11 Black_Wide_NO-EIS_2k_8by7_2464x2156-29.98fps.json @@ -3,7 +3,7 @@ "note": "NO-EIS", "calibrated_by": "Julia Mathussek", "camera_brand": "GoPro", - "camera_model": "HERO11 Black", + "camera_model": "Hero11 Black", "lens_model": "Wide", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO3+ Black__27041524_2.7k_16by9_2704x1524-29.97fps.json b/GoPro/GoPro_HERO3+ Black__27041524_2.7k_16by9_2704x1524-29.97fps.json index 6394edae..edfd0cbc 100644 --- a/GoPro/GoPro_HERO3+ Black__27041524_2.7k_16by9_2704x1524-29.97fps.json +++ b/GoPro/GoPro_HERO3+ Black__27041524_2.7k_16by9_2704x1524-29.97fps.json @@ -3,7 +3,7 @@ "note": "2704×1524", "calibrated_by": "Shen Dong Qing", "camera_brand": "GoPro", - "camera_model": "HERO3+ Black", + "camera_model": "Hero3+ black", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_HERO4 session___1080p_16by9_1920x1080-59.94fps (2).json b/GoPro/GoPro_HERO4 session___1080p_16by9_1920x1080-59.94fps (2).json index 2dd24899..2eeeafac 100644 --- a/GoPro/GoPro_HERO4 session___1080p_16by9_1920x1080-59.94fps (2).json +++ b/GoPro/GoPro_HERO4 session___1080p_16by9_1920x1080-59.94fps (2).json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "GoPro", - "camera_model": "HERO4 session", + "camera_model": "HERO4 Session", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_Hero3___1080p_4by3_1920x1440-47.95fps.json b/GoPro/GoPro_Hero3___1080p_4by3_1920x1440-47.95fps.json index 7cf2777f..be48dc1a 100644 --- a/GoPro/GoPro_Hero3___1080p_4by3_1920x1440-47.95fps.json +++ b/GoPro/GoPro_Hero3___1080p_4by3_1920x1440-47.95fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "user", "camera_brand": "GoPro", - "camera_model": "Hero3", + "camera_model": "HERO3", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_Hero3___2.7k_1.88by1_2704x1440-23.98fps.json b/GoPro/GoPro_Hero3___2.7k_1.88by1_2704x1440-23.98fps.json index 22eef52b..c52cd1dc 100644 --- a/GoPro/GoPro_Hero3___2.7k_1.88by1_2704x1440-23.98fps.json +++ b/GoPro/GoPro_Hero3___2.7k_1.88by1_2704x1440-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Владислав Киселёв", "camera_brand": "GoPro", - "camera_model": "Hero3", + "camera_model": "HERO3", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/GoPro/GoPro_Hero4 Black___2.7k_4by3_2704x2028-0.00fps.json b/GoPro/GoPro_Hero4 Black___2.7k_4by3_2704x2028-0.00fps.json index b37bb89e..36f526ca 100644 --- a/GoPro/GoPro_Hero4 Black___2.7k_4by3_2704x2028-0.00fps.json +++ b/GoPro/GoPro_Hero4 Black___2.7k_4by3_2704x2028-0.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "WizzX", "camera_brand": "GoPro", - "camera_model": "Hero4 Black", + "camera_model": "HERO4 Black", "lens_model": "", "camera_setting": "", "calibrator_version": "0.3.0-beta", diff --git a/GoPro/GoPro_Hero4_Wide_60 fps_1080p_16by9_1920x1080-0.00fps.json b/GoPro/GoPro_Hero4_Wide_60 fps_1080p_16by9_1920x1080-0.00fps.json index 8a98107c..ca62dc46 100644 --- a/GoPro/GoPro_Hero4_Wide_60 fps_1080p_16by9_1920x1080-0.00fps.json +++ b/GoPro/GoPro_Hero4_Wide_60 fps_1080p_16by9_1920x1080-0.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Nicola", "camera_brand": "GoPro", - "camera_model": "Hero4", + "camera_model": "HERO4", "lens_model": "Wide", "camera_setting": "60 fps", "calibrator_version": "0.2.1-alpha", diff --git a/GoPro/GoPro_hero3 Silver___1080p_16by9_1920x1080-29.97fps.json b/GoPro/GoPro_hero3 Silver___1080p_16by9_1920x1080-29.97fps.json index 6aa5507a..326242b6 100644 --- a/GoPro/GoPro_hero3 Silver___1080p_16by9_1920x1080-29.97fps.json +++ b/GoPro/GoPro_hero3 Silver___1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Luc Poupel", "camera_brand": "GoPro", - "camera_model": "hero3 Silver", + "camera_model": "HERO3 Silver", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Hawkeye/Firefly_Xlite2 ___4k_4by3_3840x2880-25.00fps.json b/Hawkeye/Firefly_Xlite2 ___4k_4by3_3840x2880-25.00fps.json index 1bed1d79..7ce8d4d8 100644 --- a/Hawkeye/Firefly_Xlite2 ___4k_4by3_3840x2880-25.00fps.json +++ b/Hawkeye/Firefly_Xlite2 ___4k_4by3_3840x2880-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Pavel FPV", "camera_brand": "Firefly", - "camera_model": "Xlite2 ", + "camera_model": "Xlite2", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Hawkeye/Hawkeye_Firefly 6s___1080p_16by9_1920x1080-30.00fps.json b/Hawkeye/Hawkeye_Firefly 6s___1080p_16by9_1920x1080-30.00fps.json index 145e78b1..f92bd2d4 100644 --- a/Hawkeye/Hawkeye_Firefly 6s___1080p_16by9_1920x1080-30.00fps.json +++ b/Hawkeye/Hawkeye_Firefly 6s___1080p_16by9_1920x1080-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Shmulik", "camera_brand": "Hawkeye", - "camera_model": "Firefly 6s", + "camera_model": "Firefly 6S", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Hawkeye/Hawkeye_Firefly 8se__1440_1440p_4by3_1920x1440-59.94fps.json b/Hawkeye/Hawkeye_Firefly 8se__1440_1440p_4by3_1920x1440-59.94fps.json index 4f11bc15..9d86a890 100644 --- a/Hawkeye/Hawkeye_Firefly 8se__1440_1440p_4by3_1920x1440-59.94fps.json +++ b/Hawkeye/Hawkeye_Firefly 8se__1440_1440p_4by3_1920x1440-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Hawkeye", - "camera_model": "Firefly 8se", + "camera_model": "Firefly 8SE", "lens_model": "", "camera_setting": "1440", "calib_dimension": { diff --git a/Hawkeye/Hawkeye_Firefly X Lite_150_Wide_2.7k_16by9_2704x1520-59.94fps.json b/Hawkeye/Hawkeye_Firefly X Lite_150_Wide_2.7k_16by9_2704x1520-59.94fps.json index ec0553e6..75ab451d 100644 --- a/Hawkeye/Hawkeye_Firefly X Lite_150_Wide_2.7k_16by9_2704x1520-59.94fps.json +++ b/Hawkeye/Hawkeye_Firefly X Lite_150_Wide_2.7k_16by9_2704x1520-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "MarkFpv", "camera_brand": "Hawkeye", - "camera_model": "Firefly X Lite", + "camera_model": "FireFly X Lite", "lens_model": "150", "camera_setting": "Wide", "calib_dimension": { diff --git a/Hawkeye/Hawkeye_Firefly X Lite_Sony__2.7k_4by3_2704x2028-59.94fps.json b/Hawkeye/Hawkeye_Firefly X Lite_Sony__2.7k_4by3_2704x2028-59.94fps.json index 668d94da..8114862e 100644 --- a/Hawkeye/Hawkeye_Firefly X Lite_Sony__2.7k_4by3_2704x2028-59.94fps.json +++ b/Hawkeye/Hawkeye_Firefly X Lite_Sony__2.7k_4by3_2704x2028-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "David Dery", "camera_brand": "Hawkeye", - "camera_model": "Firefly X Lite", + "camera_model": "FireFly X Lite", "lens_model": "Sony", "camera_setting": "", "calib_dimension": { diff --git a/Hawkeye/Hawkeye_Firefly X Lite_Ultra Wide_50 fps_2.7k_16by9_2704x1520-0.00fps.json b/Hawkeye/Hawkeye_Firefly X Lite_Ultra Wide_50 fps_2.7k_16by9_2704x1520-0.00fps.json index 36ee3eed..d3bd0a64 100644 --- a/Hawkeye/Hawkeye_Firefly X Lite_Ultra Wide_50 fps_2.7k_16by9_2704x1520-0.00fps.json +++ b/Hawkeye/Hawkeye_Firefly X Lite_Ultra Wide_50 fps_2.7k_16by9_2704x1520-0.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Soukron", "camera_brand": "Hawkeye", - "camera_model": "Firefly X Lite", + "camera_model": "FireFly X Lite", "lens_model": "Ultra Wide", "camera_setting": "50 fps", "calibrator_version": "0.3.0-beta/dev", diff --git a/Hawkeye/Hawkeye_Firefly X Lite_Ultra Wide__1080p_16by9_1920x1080-59.94fps.json b/Hawkeye/Hawkeye_Firefly X Lite_Ultra Wide__1080p_16by9_1920x1080-59.94fps.json index a3b1178f..c88eb72a 100644 --- a/Hawkeye/Hawkeye_Firefly X Lite_Ultra Wide__1080p_16by9_1920x1080-59.94fps.json +++ b/Hawkeye/Hawkeye_Firefly X Lite_Ultra Wide__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "XRISTOS malitoudis", "camera_brand": "Hawkeye", - "camera_model": "Firefly X Lite", + "camera_model": "FireFly X Lite", "lens_model": "Ultra Wide", "camera_setting": "", "calib_dimension": { diff --git a/Hawkeye/Hawkeye_Firefly X Lite_Ultra Wide__4k_16by9_3840x2160-0.00fps.json b/Hawkeye/Hawkeye_Firefly X Lite_Ultra Wide__4k_16by9_3840x2160-0.00fps.json index 5e97f046..a1a6463f 100644 --- a/Hawkeye/Hawkeye_Firefly X Lite_Ultra Wide__4k_16by9_3840x2160-0.00fps.json +++ b/Hawkeye/Hawkeye_Firefly X Lite_Ultra Wide__4k_16by9_3840x2160-0.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "deadmoo", "camera_brand": "Hawkeye", - "camera_model": "Firefly X Lite", + "camera_model": "FireFly X Lite", "lens_model": "Ultra Wide", "camera_setting": "", "calibrator_version": "0.2.1-alpha", diff --git a/Hawkeye/Hawkeye_Firefly X Lite_Wide_50 fps_2.5k_16by9_2560x1440-0.00fps.json b/Hawkeye/Hawkeye_Firefly X Lite_Wide_50 fps_2.5k_16by9_2560x1440-0.00fps.json index 03e1b345..9e46cb9a 100644 --- a/Hawkeye/Hawkeye_Firefly X Lite_Wide_50 fps_2.5k_16by9_2560x1440-0.00fps.json +++ b/Hawkeye/Hawkeye_Firefly X Lite_Wide_50 fps_2.5k_16by9_2560x1440-0.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Soukron", "camera_brand": "Hawkeye", - "camera_model": "Firefly X Lite", + "camera_model": "FireFly X Lite", "lens_model": "Wide", "camera_setting": "50 fps", "calibrator_version": "0.3.0-beta/dev", diff --git a/Hawkeye/Hawkeye_Firefly X Lite_Wide_50 fps_4k_16by9_3840x2160-0.00fps.json b/Hawkeye/Hawkeye_Firefly X Lite_Wide_50 fps_4k_16by9_3840x2160-0.00fps.json index 93f7925b..64ac745f 100644 --- a/Hawkeye/Hawkeye_Firefly X Lite_Wide_50 fps_4k_16by9_3840x2160-0.00fps.json +++ b/Hawkeye/Hawkeye_Firefly X Lite_Wide_50 fps_4k_16by9_3840x2160-0.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Soukron", "camera_brand": "Hawkeye", - "camera_model": "Firefly X Lite", + "camera_model": "FireFly X Lite", "lens_model": "Wide", "camera_setting": "50 fps", "calibrator_version": "0.3.0-beta/dev", diff --git a/Hawkeye/Hawkeye_Firefly X Lite__2.7k 60fps 16by9_2.7k_16by9_2752x1548-59.94fps.json b/Hawkeye/Hawkeye_Firefly X Lite__2.7k 60fps 16by9_2.7k_16by9_2752x1548-59.94fps.json index 1e043377..4f8a4c3d 100644 --- a/Hawkeye/Hawkeye_Firefly X Lite__2.7k 60fps 16by9_2.7k_16by9_2752x1548-59.94fps.json +++ b/Hawkeye/Hawkeye_Firefly X Lite__2.7k 60fps 16by9_2.7k_16by9_2752x1548-59.94fps.json @@ -3,7 +3,7 @@ "note": "2.7k 60fps 16by9", "calibrated_by": "Kelemen Peter", "camera_brand": "Hawkeye", - "camera_model": "Firefly X Lite", + "camera_model": "FireFly X Lite", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Hawkeye/Hawkeye_Firefly X Lite__60 fps_4k_16by9_3840x2160-0.00fps.json b/Hawkeye/Hawkeye_Firefly X Lite__60 fps_4k_16by9_3840x2160-0.00fps.json index 7f756d1c..d3eaa204 100644 --- a/Hawkeye/Hawkeye_Firefly X Lite__60 fps_4k_16by9_3840x2160-0.00fps.json +++ b/Hawkeye/Hawkeye_Firefly X Lite__60 fps_4k_16by9_3840x2160-0.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "KhoPhi", "camera_brand": "Hawkeye", - "camera_model": "Firefly X Lite", + "camera_model": "FireFly X Lite", "lens_model": "", "camera_setting": "60 fps", "calibrator_version": "0.3.0-beta", diff --git a/Hawkeye/Hawkeye_Firefly X Lite___1080p_4by3_1920x1440-59.94fps.json b/Hawkeye/Hawkeye_Firefly X Lite___1080p_4by3_1920x1440-59.94fps.json index 3c3d03ed..5e597a14 100644 --- a/Hawkeye/Hawkeye_Firefly X Lite___1080p_4by3_1920x1440-59.94fps.json +++ b/Hawkeye/Hawkeye_Firefly X Lite___1080p_4by3_1920x1440-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Pawel Turon", "camera_brand": "Hawkeye", - "camera_model": "Firefly X Lite", + "camera_model": "FireFly X Lite", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Hawkeye/Hawkeye_Firefly X Lite___2.5k_16by9_2560x1440-59.94fps.json b/Hawkeye/Hawkeye_Firefly X Lite___2.5k_16by9_2560x1440-59.94fps.json index f4c0565f..f2d9bfd6 100644 --- a/Hawkeye/Hawkeye_Firefly X Lite___2.5k_16by9_2560x1440-59.94fps.json +++ b/Hawkeye/Hawkeye_Firefly X Lite___2.5k_16by9_2560x1440-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "alexis morin", "camera_brand": "Hawkeye", - "camera_model": "Firefly X Lite", + "camera_model": "FireFly X Lite", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Hawkeye/Hawkeye_Firefly X Lite___2.7k_4by3_2704x2028-59.94fps - 2.json b/Hawkeye/Hawkeye_Firefly X Lite___2.7k_4by3_2704x2028-59.94fps - 2.json index 6da47628..7c7f8454 100644 --- a/Hawkeye/Hawkeye_Firefly X Lite___2.7k_4by3_2704x2028-59.94fps - 2.json +++ b/Hawkeye/Hawkeye_Firefly X Lite___2.7k_4by3_2704x2028-59.94fps - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "群", "camera_brand": "Hawkeye", - "camera_model": "Firefly X Lite", + "camera_model": "FireFly X Lite", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Hawkeye/Hawkeye_Firefly X Lite___2.7k_4by3_2704x2028-59.94fps.json b/Hawkeye/Hawkeye_Firefly X Lite___2.7k_4by3_2704x2028-59.94fps.json index fc9eda3e..524856f5 100644 --- a/Hawkeye/Hawkeye_Firefly X Lite___2.7k_4by3_2704x2028-59.94fps.json +++ b/Hawkeye/Hawkeye_Firefly X Lite___2.7k_4by3_2704x2028-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "MarkFpv", "camera_brand": "Hawkeye", - "camera_model": "Firefly X Lite", + "camera_model": "FireFly X Lite", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Hawkeye/Hawkeye_Firefly X Lite___4k_4by3_4000x3000-29.97fps.json b/Hawkeye/Hawkeye_Firefly X Lite___4k_4by3_4000x3000-29.97fps.json index e749f6fc..d4a04f9d 100644 --- a/Hawkeye/Hawkeye_Firefly X Lite___4k_4by3_4000x3000-29.97fps.json +++ b/Hawkeye/Hawkeye_Firefly X Lite___4k_4by3_4000x3000-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Vladimir Sobolev", "camera_brand": "Hawkeye", - "camera_model": "Firefly X Lite", + "camera_model": "FireFly X Lite", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Hawkeye/Hawkeye_Firefly micro 2__reglage final_2.5k_16by9_2560x1440-29.97fps.json b/Hawkeye/Hawkeye_Firefly micro 2__reglage final_2.5k_16by9_2560x1440-29.97fps.json index fcbbdef5..3606e992 100644 --- a/Hawkeye/Hawkeye_Firefly micro 2__reglage final_2.5k_16by9_2560x1440-29.97fps.json +++ b/Hawkeye/Hawkeye_Firefly micro 2__reglage final_2.5k_16by9_2560x1440-29.97fps.json @@ -3,7 +3,7 @@ "note": "reglage final", "calibrated_by": "OneBadFPV", "camera_brand": "Hawkeye", - "camera_model": "Firefly micro 2", + "camera_model": "Firefly Micro 2", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Hawkeye/Hawkeye_firefly Split_170'_0_4k_16by9_3840x2160-30.00fps.json b/Hawkeye/Hawkeye_firefly Split_170'_0_4k_16by9_3840x2160-30.00fps.json index fcc5b60c..3f719036 100644 --- a/Hawkeye/Hawkeye_firefly Split_170'_0_4k_16by9_3840x2160-30.00fps.json +++ b/Hawkeye/Hawkeye_firefly Split_170'_0_4k_16by9_3840x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "0", "calibrated_by": "U0 A255", "camera_brand": "Hawkeye", - "camera_model": "firefly Split", + "camera_model": "Firefly Split", "lens_model": "170'", "camera_setting": "", "calib_dimension": { diff --git a/Insta360/Insta360_One R_1 inch_Ultrawide_4k_16by9_3840x2160-59.94fps.json b/Insta360/Insta360_One R_1 inch_Ultrawide_4k_16by9_3840x2160-59.94fps.json index 4b06c32c..95740de2 100644 --- a/Insta360/Insta360_One R_1 inch_Ultrawide_4k_16by9_3840x2160-59.94fps.json +++ b/Insta360/Insta360_One R_1 inch_Ultrawide_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "V1", "calibrated_by": "alexjania", "camera_brand": "Insta360", - "camera_model": "One R", + "camera_model": "ONE R", "lens_model": "1 inch", "camera_setting": "Ultrawide", "calib_dimension": { diff --git a/Insta360/Insta360_SMO 4k_Ultrawide_30 fps_2.7k_4by3_3072x2304-0.00fps.json b/Insta360/Insta360_SMO 4k_Ultrawide_30 fps_2.7k_4by3_3072x2304-0.00fps.json index abcd438c..1d39e97f 100644 --- a/Insta360/Insta360_SMO 4k_Ultrawide_30 fps_2.7k_4by3_3072x2304-0.00fps.json +++ b/Insta360/Insta360_SMO 4k_Ultrawide_30 fps_2.7k_4by3_3072x2304-0.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Fabien Devaux", "camera_brand": "Insta360", - "camera_model": "SMO 4k", + "camera_model": "SMO 4K", "lens_model": "Ultrawide", "camera_setting": "30 fps", "calibrator_version": "0.3.0-beta", diff --git a/Insta360/Insta360_oneR_1inch__2.7k_16by9_3072x1728-0.00fps.json b/Insta360/Insta360_oneR_1inch__2.7k_16by9_3072x1728-0.00fps.json index 5a8bcb7c..0734d551 100644 --- a/Insta360/Insta360_oneR_1inch__2.7k_16by9_3072x1728-0.00fps.json +++ b/Insta360/Insta360_oneR_1inch__2.7k_16by9_3072x1728-0.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Dronotron", "camera_brand": "Insta360", - "camera_model": "oneR", + "camera_model": "OneR", "lens_model": "1inch", "camera_setting": "", "calibrator_version": "0.3.0-beta", diff --git a/Kinefinity/Kinefinity_TERRA 4k_DULENS 31mm_4k DCI_C4k_1.90by1_4096x2160-25.00fps.json b/Kinefinity/Kinefinity_TERRA 4k_DULENS 31mm_4k DCI_C4k_1.90by1_4096x2160-25.00fps.json index 96d787b2..81ab9f49 100644 --- a/Kinefinity/Kinefinity_TERRA 4k_DULENS 31mm_4k DCI_C4k_1.90by1_4096x2160-25.00fps.json +++ b/Kinefinity/Kinefinity_TERRA 4k_DULENS 31mm_4k DCI_C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "BenCoope", "camera_brand": "Kinefinity", - "camera_model": "TERRA 4k", + "camera_model": "TERRA 4K", "lens_model": "DULENS 31mm", "camera_setting": "4k DCI", "calib_dimension": { diff --git a/Kinefinity/kinefinity_terra4k_canonEF24-105(24mm)__C4k_1.90by1_4096x2160-25.00fps.json b/Kinefinity/kinefinity_terra4k_canonEF24-105(24mm)__C4k_1.90by1_4096x2160-25.00fps.json index 8a5cb32f..73f92280 100644 --- a/Kinefinity/kinefinity_terra4k_canonEF24-105(24mm)__C4k_1.90by1_4096x2160-25.00fps.json +++ b/Kinefinity/kinefinity_terra4k_canonEF24-105(24mm)__C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Javier John", "camera_brand": "kinefinity", - "camera_model": "terra4k", + "camera_model": "Terra4k", "lens_model": "canonEF24-105(24mm)", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/ASUS/ASUS_Zenfone6 ZS630KL_Main Cam_60 Hz_4k_16by9_3840x2160-60.03fps.json b/Mobile phones/ASUS/ASUS_Zenfone6 ZS630KL_Main Cam_60 Hz_4k_16by9_3840x2160-60.03fps.json index 36bd477f..d877f01a 100644 --- a/Mobile phones/ASUS/ASUS_Zenfone6 ZS630KL_Main Cam_60 Hz_4k_16by9_3840x2160-60.03fps.json +++ b/Mobile phones/ASUS/ASUS_Zenfone6 ZS630KL_Main Cam_60 Hz_4k_16by9_3840x2160-60.03fps.json @@ -2,7 +2,7 @@ "name": "ASUS_Zenfone6 ZS630KL_Main Cam_60 Hz_4k_16by9_3840x2160-60.03fps", "note": "", "calibrated_by": "User987654321", - "camera_brand": "ASUS", + "camera_brand": "Asus", "camera_model": "Zenfone6 ZS630KL", "lens_model": "Main Cam", "camera_setting": "60 Hz", diff --git a/Mobile phones/ASUS/ASUS_Zenfone6 ZS630KL_Wide Cam_FHD 60Hz_1080p_16by9_1920x1080-59.86fps.json b/Mobile phones/ASUS/ASUS_Zenfone6 ZS630KL_Wide Cam_FHD 60Hz_1080p_16by9_1920x1080-59.86fps.json index ab508e7d..98a03116 100644 --- a/Mobile phones/ASUS/ASUS_Zenfone6 ZS630KL_Wide Cam_FHD 60Hz_1080p_16by9_1920x1080-59.86fps.json +++ b/Mobile phones/ASUS/ASUS_Zenfone6 ZS630KL_Wide Cam_FHD 60Hz_1080p_16by9_1920x1080-59.86fps.json @@ -2,7 +2,7 @@ "name": "ASUS_Zenfone6 ZS630KL_Wide Cam_FHD 60Hz_1080p_16by9_1920x1080-59.86fps", "note": "", "calibrated_by": "User987654321", - "camera_brand": "ASUS", + "camera_brand": "Asus", "camera_model": "Zenfone6 ZS630KL", "lens_model": "Wide Cam", "camera_setting": "FHD 60Hz", diff --git a/Mobile phones/ASUS_ROG Phone 7 Ultimate_Sony IMX766__4k_16by9_3840x2160-29.01fps.json b/Mobile phones/ASUS_ROG Phone 7 Ultimate_Sony IMX766__4k_16by9_3840x2160-29.01fps.json index 0c5ffe83..30111f87 100644 --- a/Mobile phones/ASUS_ROG Phone 7 Ultimate_Sony IMX766__4k_16by9_3840x2160-29.01fps.json +++ b/Mobile phones/ASUS_ROG Phone 7 Ultimate_Sony IMX766__4k_16by9_3840x2160-29.01fps.json @@ -2,7 +2,7 @@ "name": "ASUS_ROG Phone 7 Ultimate_Sony IMX766__4k_16by9_3840x2160-29.01fps", "note": "", "calibrated_by": "Tom M", - "camera_brand": "ASUS", + "camera_brand": "Asus", "camera_model": "ROG Phone 7 Ultimate", "lens_model": "Sony IMX766", "camera_setting": "", diff --git a/Mobile phones/Apple/Apple_iPhone 11 pro max__dji Mimo_4k_16by9_3840x2160-59.99fps.json b/Mobile phones/Apple/Apple_iPhone 11 pro max__dji Mimo_4k_16by9_3840x2160-59.99fps.json index bdb936fa..34bbe8fc 100644 --- a/Mobile phones/Apple/Apple_iPhone 11 pro max__dji Mimo_4k_16by9_3840x2160-59.99fps.json +++ b/Mobile phones/Apple/Apple_iPhone 11 pro max__dji Mimo_4k_16by9_3840x2160-59.99fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Darllan Moreira da Costa", "camera_brand": "Apple", - "camera_model": "iPhone 11 pro max", + "camera_model": "iPhone 11 Pro Max", "lens_model": "", "camera_setting": "dji Mimo", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone 11 pro_med lensHD 1080__1080p_16by9_1920x1080-29.97fps.json b/Mobile phones/Apple/Apple_iPhone 11 pro_med lensHD 1080__1080p_16by9_1920x1080-29.97fps.json index e2b1633a..968e73f0 100644 --- a/Mobile phones/Apple/Apple_iPhone 11 pro_med lensHD 1080__1080p_16by9_1920x1080-29.97fps.json +++ b/Mobile phones/Apple/Apple_iPhone 11 pro_med lensHD 1080__1080p_16by9_1920x1080-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Eric Lor", "calibrator_version": "1.5.4", "camera_brand": "Apple", - "camera_model": "iPhone 11 pro", + "camera_model": "iPhone 11 Pro", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Mobile phones/Apple/Apple_iPhone 12 Pro Max_0.5X__4k_16by9_3840x2160-59.93fps.json b/Mobile phones/Apple/Apple_iPhone 12 Pro Max_0.5X__4k_16by9_3840x2160-59.93fps.json index cb067a1e..e24dee07 100644 --- a/Mobile phones/Apple/Apple_iPhone 12 Pro Max_0.5X__4k_16by9_3840x2160-59.93fps.json +++ b/Mobile phones/Apple/Apple_iPhone 12 Pro Max_0.5X__4k_16by9_3840x2160-59.93fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "To Pao", "camera_brand": "Apple", - "camera_model": "iPhone 12 Pro Max", + "camera_model": "iPhone 12 Pro MAX", "lens_model": "0.5X", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone 12 Pro Max_0.5x_HD - 30_1080p_16by9_1920x1080-29.99fps.json b/Mobile phones/Apple/Apple_iPhone 12 Pro Max_0.5x_HD - 30_1080p_16by9_1920x1080-29.99fps.json index db2983d3..a9e7a8ca 100644 --- a/Mobile phones/Apple/Apple_iPhone 12 Pro Max_0.5x_HD - 30_1080p_16by9_1920x1080-29.99fps.json +++ b/Mobile phones/Apple/Apple_iPhone 12 Pro Max_0.5x_HD - 30_1080p_16by9_1920x1080-29.99fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Raphael", "camera_brand": "Apple", - "camera_model": "iPhone 12 Pro Max", + "camera_model": "iPhone 12 Pro MAX", "lens_model": "0.5x", "camera_setting": "HD - 30", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone 12 Pro Max_1x__4k_16by9_3840x2160-30.00fps.json b/Mobile phones/Apple/Apple_iPhone 12 Pro Max_1x__4k_16by9_3840x2160-30.00fps.json index 64d45cf2..83eac95f 100644 --- a/Mobile phones/Apple/Apple_iPhone 12 Pro Max_1x__4k_16by9_3840x2160-30.00fps.json +++ b/Mobile phones/Apple/Apple_iPhone 12 Pro Max_1x__4k_16by9_3840x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Kerry Garrison", "camera_brand": "Apple", - "camera_model": "iPhone 12 Pro Max", + "camera_model": "iPhone 12 Pro MAX", "lens_model": "1x", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone 12 Pro Max_Wide lense__4k_16by9_3840x2160-30.00fps.json b/Mobile phones/Apple/Apple_iPhone 12 Pro Max_Wide lense__4k_16by9_3840x2160-30.00fps.json index 2f9c65da..486b690c 100644 --- a/Mobile phones/Apple/Apple_iPhone 12 Pro Max_Wide lense__4k_16by9_3840x2160-30.00fps.json +++ b/Mobile phones/Apple/Apple_iPhone 12 Pro Max_Wide lense__4k_16by9_3840x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "duke", "camera_brand": "Apple", - "camera_model": "iPhone 12 Pro Max", + "camera_model": "iPhone 12 Pro MAX", "lens_model": "Wide lense", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone 12 Pro Max___4k_16by9_3840x2160-30.04fps.json b/Mobile phones/Apple/Apple_iPhone 12 Pro Max___4k_16by9_3840x2160-30.04fps.json index 1121d9bd..38d06a4b 100644 --- a/Mobile phones/Apple/Apple_iPhone 12 Pro Max___4k_16by9_3840x2160-30.04fps.json +++ b/Mobile phones/Apple/Apple_iPhone 12 Pro Max___4k_16by9_3840x2160-30.04fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "TORRES", "camera_brand": "Apple", - "camera_model": "iPhone 12 Pro Max", + "camera_model": "iPhone 12 Pro MAX", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone 12 Pro Max___720p_16by9_1280x720-29.98fps.json b/Mobile phones/Apple/Apple_iPhone 12 Pro Max___720p_16by9_1280x720-29.98fps.json index 295d6b8c..c3121262 100644 --- a/Mobile phones/Apple/Apple_iPhone 12 Pro Max___720p_16by9_1280x720-29.98fps.json +++ b/Mobile phones/Apple/Apple_iPhone 12 Pro Max___720p_16by9_1280x720-29.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jesse Smith", "camera_brand": "Apple", - "camera_model": "iPhone 12 Pro Max", + "camera_model": "iPhone 12 Pro MAX", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone 12 mini___1080p_16by9_1920x1080-29.98fps.json b/Mobile phones/Apple/Apple_iPhone 12 mini___1080p_16by9_1920x1080-29.98fps.json index 59f108ae..69fa2d6a 100644 --- a/Mobile phones/Apple/Apple_iPhone 12 mini___1080p_16by9_1920x1080-29.98fps.json +++ b/Mobile phones/Apple/Apple_iPhone 12 mini___1080p_16by9_1920x1080-29.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Hideyuki Waki", "camera_brand": "Apple", - "camera_model": "iPhone 12 mini", + "camera_model": "iPhone 12 Mini", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone 12 pro_12_P 50FPS_1080p_16by9_1920x1080-29.98fps.json b/Mobile phones/Apple/Apple_iPhone 12 pro_12_P 50FPS_1080p_16by9_1920x1080-29.98fps.json index 7d5d181d..ea29ebe6 100644 --- a/Mobile phones/Apple/Apple_iPhone 12 pro_12_P 50FPS_1080p_16by9_1920x1080-29.98fps.json +++ b/Mobile phones/Apple/Apple_iPhone 12 pro_12_P 50FPS_1080p_16by9_1920x1080-29.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Apple", - "camera_model": "iPhone 12 pro", + "camera_model": "iPhone 12 Pro", "lens_model": "12", "camera_setting": "P 50FPS", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone 13 pro max___1080p_16by9_1920x1080-59.94fps.json b/Mobile phones/Apple/Apple_iPhone 13 pro max___1080p_16by9_1920x1080-59.94fps.json index 69d4a1d2..582c8db1 100644 --- a/Mobile phones/Apple/Apple_iPhone 13 pro max___1080p_16by9_1920x1080-59.94fps.json +++ b/Mobile phones/Apple/Apple_iPhone 13 pro max___1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "CXKJ", "camera_brand": "Apple", - "camera_model": "iPhone 13 pro max", + "camera_model": "iPhone 13 Pro Max", "lens_model": "苹果", "camera_setting": "高清", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone 13 pro___1080p_16by9_1920x1080-29.99fps.json b/Mobile phones/Apple/Apple_iPhone 13 pro___1080p_16by9_1920x1080-29.99fps.json index 98f4f9e5..0468513b 100644 --- a/Mobile phones/Apple/Apple_iPhone 13 pro___1080p_16by9_1920x1080-29.99fps.json +++ b/Mobile phones/Apple/Apple_iPhone 13 pro___1080p_16by9_1920x1080-29.99fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Roman Grimmius", "camera_brand": "Apple", - "camera_model": "iPhone 13 pro", + "camera_model": "iPhone 13 Pro", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone 14 Pro max_1x_60 FPS_4k_16by9_3840x2160-57.76fps - D.json b/Mobile phones/Apple/Apple_iPhone 14 Pro max_1x_60 FPS_4k_16by9_3840x2160-57.76fps - D.json index 58c121b5..ef6f2668 100644 --- a/Mobile phones/Apple/Apple_iPhone 14 Pro max_1x_60 FPS_4k_16by9_3840x2160-57.76fps - D.json +++ b/Mobile phones/Apple/Apple_iPhone 14 Pro max_1x_60 FPS_4k_16by9_3840x2160-57.76fps - D.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "D", "camera_brand": "Apple", - "camera_model": "iPhone 14 Pro max", + "camera_model": "iPhone 14 Pro Max", "lens_model": "1x", "camera_setting": "60 FPS", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone 14 pro max_24 mm_HEVC_4k_16by9_3840x2160-24.00fps.json b/Mobile phones/Apple/Apple_iPhone 14 pro max_24 mm_HEVC_4k_16by9_3840x2160-24.00fps.json index 2d7856f6..687d52f9 100644 --- a/Mobile phones/Apple/Apple_iPhone 14 pro max_24 mm_HEVC_4k_16by9_3840x2160-24.00fps.json +++ b/Mobile phones/Apple/Apple_iPhone 14 pro max_24 mm_HEVC_4k_16by9_3840x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "f1.78", "calibrated_by": "Miguel Hernandez", "camera_brand": "Apple", - "camera_model": "iPhone 14 pro max", + "camera_model": "iPhone 14 Pro Max", "lens_model": "24 mm", "camera_setting": "HEVC", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone 14 pro_main cam_24 mm_4k_16by9_3840x2160-59.99fps.json b/Mobile phones/Apple/Apple_iPhone 14 pro_main cam_24 mm_4k_16by9_3840x2160-59.99fps.json index b7248418..ba6b3d00 100644 --- a/Mobile phones/Apple/Apple_iPhone 14 pro_main cam_24 mm_4k_16by9_3840x2160-59.99fps.json +++ b/Mobile phones/Apple/Apple_iPhone 14 pro_main cam_24 mm_4k_16by9_3840x2160-59.99fps.json @@ -3,7 +3,7 @@ "note": "24 mm", "calibrated_by": "Nath", "camera_brand": "Apple", - "camera_model": "iPhone 14 pro", + "camera_model": "iPhone 14 Pro", "lens_model": "main cam", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone 15 Pro Max_13mm 60 fps vertical__4k_16by9_3840x2160-58.32fps.json b/Mobile phones/Apple/Apple_iPhone 15 Pro Max_13mm 60 fps vertical__4k_16by9_3840x2160-58.32fps.json index 5b66e08a..39ba99a1 100644 --- a/Mobile phones/Apple/Apple_iPhone 15 Pro Max_13mm 60 fps vertical__4k_16by9_3840x2160-58.32fps.json +++ b/Mobile phones/Apple/Apple_iPhone 15 Pro Max_13mm 60 fps vertical__4k_16by9_3840x2160-58.32fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Luis Angel Caldevilla Santos", "camera_brand": "Apple", - "camera_model": "iPhone 15 Pro Max", + "camera_model": "iPhone 15 Pro MAX", "lens_model": "13mm 60 fps vertical", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone 15 Pro Max_24mm__1080p_16by9_1920x1080-30.01fps.json b/Mobile phones/Apple/Apple_iPhone 15 Pro Max_24mm__1080p_16by9_1920x1080-30.01fps.json index b81192fa..cebb150b 100644 --- a/Mobile phones/Apple/Apple_iPhone 15 Pro Max_24mm__1080p_16by9_1920x1080-30.01fps.json +++ b/Mobile phones/Apple/Apple_iPhone 15 Pro Max_24mm__1080p_16by9_1920x1080-30.01fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "TakeOne", "camera_brand": "Apple", - "camera_model": "iPhone 15 Pro Max", + "camera_model": "iPhone 15 Pro MAX", "lens_model": "24mm", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone 15 Pro Max_24mm__4k_16by9_3840x2160-59.92fps.json b/Mobile phones/Apple/Apple_iPhone 15 Pro Max_24mm__4k_16by9_3840x2160-59.92fps.json index cf89dfb8..1ce5029d 100644 --- a/Mobile phones/Apple/Apple_iPhone 15 Pro Max_24mm__4k_16by9_3840x2160-59.92fps.json +++ b/Mobile phones/Apple/Apple_iPhone 15 Pro Max_24mm__4k_16by9_3840x2160-59.92fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Hunger 横戈", "camera_brand": "Apple", - "camera_model": "iPhone 15 Pro Max", + "camera_model": "iPhone 15 Pro MAX", "lens_model": "24mm", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone 15 Pro Max_Ultra-Wide__4k_16by9_3840x2160-30.01fps.json b/Mobile phones/Apple/Apple_iPhone 15 Pro Max_Ultra-Wide__4k_16by9_3840x2160-30.01fps.json index 4c48b35f..016acec7 100644 --- a/Mobile phones/Apple/Apple_iPhone 15 Pro Max_Ultra-Wide__4k_16by9_3840x2160-30.01fps.json +++ b/Mobile phones/Apple/Apple_iPhone 15 Pro Max_Ultra-Wide__4k_16by9_3840x2160-30.01fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Anthony Carboni", "camera_brand": "Apple", - "camera_model": "iPhone 15 Pro Max", + "camera_model": "iPhone 15 Pro MAX", "lens_model": "Ultra-Wide", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone 15 Pro Max___4k_16by9_3840x2160-30.00fps.json b/Mobile phones/Apple/Apple_iPhone 15 Pro Max___4k_16by9_3840x2160-30.00fps.json index 909148c5..21916ace 100644 --- a/Mobile phones/Apple/Apple_iPhone 15 Pro Max___4k_16by9_3840x2160-30.00fps.json +++ b/Mobile phones/Apple/Apple_iPhone 15 Pro Max___4k_16by9_3840x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Apple", - "camera_model": "iPhone 15 Pro Max", + "camera_model": "iPhone 15 Pro MAX", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone 15 Pro max___1080p_16by9_1920x1080-59.96fps.json b/Mobile phones/Apple/Apple_iPhone 15 Pro max___1080p_16by9_1920x1080-59.96fps.json index baa205bc..5ff0fc77 100644 --- a/Mobile phones/Apple/Apple_iPhone 15 Pro max___1080p_16by9_1920x1080-59.96fps.json +++ b/Mobile phones/Apple/Apple_iPhone 15 Pro max___1080p_16by9_1920x1080-59.96fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "张涛", "camera_brand": "Apple", - "camera_model": "iPhone 15 Pro max", + "camera_model": "iPhone 15 Pro MAX", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone 15 pro Max_Apple__720p_16by9_1280x720-30.00fps.json b/Mobile phones/Apple/Apple_iPhone 15 pro Max_Apple__720p_16by9_1280x720-30.00fps.json index 37f2fc95..f48ef4c1 100644 --- a/Mobile phones/Apple/Apple_iPhone 15 pro Max_Apple__720p_16by9_1280x720-30.00fps.json +++ b/Mobile phones/Apple/Apple_iPhone 15 pro Max_Apple__720p_16by9_1280x720-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jesus gallegos cuz", "camera_brand": "Apple", - "camera_model": "iPhone 15 pro Max", + "camera_model": "iPhone 15 Pro MAX", "lens_model": "Apple", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone 15 pro max__Auto_4k_16by9_3840x2160-30.00fps - Imperial Imaging.json b/Mobile phones/Apple/Apple_iPhone 15 pro max__Auto_4k_16by9_3840x2160-30.00fps - Imperial Imaging.json index 783097a4..dd7233ee 100644 --- a/Mobile phones/Apple/Apple_iPhone 15 pro max__Auto_4k_16by9_3840x2160-30.00fps - Imperial Imaging.json +++ b/Mobile phones/Apple/Apple_iPhone 15 pro max__Auto_4k_16by9_3840x2160-30.00fps - Imperial Imaging.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Imperial Imaging", "camera_brand": "Apple", - "camera_model": "iPhone 15 pro max", + "camera_model": "iPhone 15 Pro MAX", "lens_model": "", "camera_setting": "Auto", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone 15 pro max___4k_16by9_3840x2160-59.88fps.json b/Mobile phones/Apple/Apple_iPhone 15 pro max___4k_16by9_3840x2160-59.88fps.json index 26c163c4..f4e9b4a7 100644 --- a/Mobile phones/Apple/Apple_iPhone 15 pro max___4k_16by9_3840x2160-59.88fps.json +++ b/Mobile phones/Apple/Apple_iPhone 15 pro max___4k_16by9_3840x2160-59.88fps.json @@ -7,7 +7,7 @@ "calibrated_by": "stewart matthews", "calibrator_version": "1.5.4", "camera_brand": "Apple", - "camera_model": "iPhone 15 pro max", + "camera_model": "iPhone 15 Pro MAX", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Mobile phones/Apple/Apple_iPhone 15 pro max_x1_150_4k_16by9_3840x2160-24.00fps - Leon Pearce.json b/Mobile phones/Apple/Apple_iPhone 15 pro max_x1_150_4k_16by9_3840x2160-24.00fps - Leon Pearce.json index f571c341..16c05e7f 100644 --- a/Mobile phones/Apple/Apple_iPhone 15 pro max_x1_150_4k_16by9_3840x2160-24.00fps - Leon Pearce.json +++ b/Mobile phones/Apple/Apple_iPhone 15 pro max_x1_150_4k_16by9_3840x2160-24.00fps - Leon Pearce.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Leon Pearce", "camera_brand": "Apple", - "camera_model": "iPhone 15 pro max", + "camera_model": "iPhone 15 Pro MAX", "lens_model": "x1", "camera_setting": "1/50", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone 15 pro_13__1080p_16by9_1920x1080-59.92fps.json b/Mobile phones/Apple/Apple_iPhone 15 pro_13__1080p_16by9_1920x1080-59.92fps.json index 43dd3c77..30342fe0 100644 --- a/Mobile phones/Apple/Apple_iPhone 15 pro_13__1080p_16by9_1920x1080-59.92fps.json +++ b/Mobile phones/Apple/Apple_iPhone 15 pro_13__1080p_16by9_1920x1080-59.92fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Administrator", "calibrator_version": "1.5.4", "camera_brand": "Apple", - "camera_model": "iPhone 15 pro", + "camera_model": "iPhone 15 Pro", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Mobile phones/Apple/Apple_iPhone 15 pro_24mm__4k_16by9_3840x2160-59.96fps - Alejandro Aguilart.json b/Mobile phones/Apple/Apple_iPhone 15 pro_24mm__4k_16by9_3840x2160-59.96fps - Alejandro Aguilart.json index f18ed3cd..02a3b8d5 100644 --- a/Mobile phones/Apple/Apple_iPhone 15 pro_24mm__4k_16by9_3840x2160-59.96fps - Alejandro Aguilart.json +++ b/Mobile phones/Apple/Apple_iPhone 15 pro_24mm__4k_16by9_3840x2160-59.96fps - Alejandro Aguilart.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Alejandro Aguilart", "camera_brand": "Apple", - "camera_model": "iPhone 15 pro", + "camera_model": "iPhone 15 Pro", "lens_model": "24mm", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone 15 pro___4k_16by9_3840x2160-30.00fps.json b/Mobile phones/Apple/Apple_iPhone 15 pro___4k_16by9_3840x2160-30.00fps.json index 94739f0e..94ccbe53 100644 --- a/Mobile phones/Apple/Apple_iPhone 15 pro___4k_16by9_3840x2160-30.00fps.json +++ b/Mobile phones/Apple/Apple_iPhone 15 pro___4k_16by9_3840x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Lenovo", "camera_brand": "Apple", - "camera_model": "iPhone 15 pro", + "camera_model": "iPhone 15 Pro", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone 7 plus___4k_16by9_3840x2160-29.70fps.json b/Mobile phones/Apple/Apple_iPhone 7 plus___4k_16by9_3840x2160-29.70fps.json index ce6df8af..1fc485df 100644 --- a/Mobile phones/Apple/Apple_iPhone 7 plus___4k_16by9_3840x2160-29.70fps.json +++ b/Mobile phones/Apple/Apple_iPhone 7 plus___4k_16by9_3840x2160-29.70fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "BB", "camera_brand": "Apple", - "camera_model": "iPhone 7 plus", + "camera_model": "iPhone 7 Plus", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone Xr_iphone Xr_25frame_4k_16by9_3840x2160-24.00fps.json b/Mobile phones/Apple/Apple_iPhone Xr_iphone Xr_25frame_4k_16by9_3840x2160-24.00fps.json index 880b810e..d49eaa17 100644 --- a/Mobile phones/Apple/Apple_iPhone Xr_iphone Xr_25frame_4k_16by9_3840x2160-24.00fps.json +++ b/Mobile phones/Apple/Apple_iPhone Xr_iphone Xr_25frame_4k_16by9_3840x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "JUNE-BOOK", "camera_brand": "Apple", - "camera_model": "iPhone Xr", + "camera_model": "iPhone XR", "lens_model": "iphone Xr", "camera_setting": "25frame", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone Xs Max_12 MP__4k_16by9_3840x2160-60.02fps.json b/Mobile phones/Apple/Apple_iPhone Xs Max_12 MP__4k_16by9_3840x2160-60.02fps.json index 13617eca..c5c6576b 100644 --- a/Mobile phones/Apple/Apple_iPhone Xs Max_12 MP__4k_16by9_3840x2160-60.02fps.json +++ b/Mobile phones/Apple/Apple_iPhone Xs Max_12 MP__4k_16by9_3840x2160-60.02fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Cristhian Ramirez", "camera_brand": "Apple", - "camera_model": "iPhone Xs Max", + "camera_model": "iPhone XS Max", "lens_model": "12 MP", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Apple/Apple_iPhone xs max__30_480p_16by9_960x544-29.46fps.json b/Mobile phones/Apple/Apple_iPhone xs max__30_480p_16by9_960x544-29.46fps.json index 93737277..6784fe3d 100644 --- a/Mobile phones/Apple/Apple_iPhone xs max__30_480p_16by9_960x544-29.46fps.json +++ b/Mobile phones/Apple/Apple_iPhone xs max__30_480p_16by9_960x544-29.46fps.json @@ -7,7 +7,7 @@ "calibrated_by": "wangyi", "calibrator_version": "1.5.4", "camera_brand": "Apple", - "camera_model": "iPhone xs max", + "camera_model": "iPhone XS Max", "camera_setting": "30", "compatible_settings": [], "crop": null, diff --git a/Mobile phones/Apple/Apple_iPhone xs max__4k 60p_720p_16by9_1280x720-30.00fps.json b/Mobile phones/Apple/Apple_iPhone xs max__4k 60p_720p_16by9_1280x720-30.00fps.json index 8c8d240b..37e1dae7 100644 --- a/Mobile phones/Apple/Apple_iPhone xs max__4k 60p_720p_16by9_1280x720-30.00fps.json +++ b/Mobile phones/Apple/Apple_iPhone xs max__4k 60p_720p_16by9_1280x720-30.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "wangyi", "calibrator_version": "1.5.4", "camera_brand": "Apple", - "camera_model": "iPhone xs max", + "camera_model": "iPhone XS Max", "camera_setting": "4k 60p", "compatible_settings": [], "crop": null, diff --git a/Mobile phones/Apple/Apple_iphone 14 pro max___4k_16by9_3840x2160-26.39fps.json b/Mobile phones/Apple/Apple_iphone 14 pro max___4k_16by9_3840x2160-26.39fps.json index 4f4cafb7..a3e40488 100644 --- a/Mobile phones/Apple/Apple_iphone 14 pro max___4k_16by9_3840x2160-26.39fps.json +++ b/Mobile phones/Apple/Apple_iphone 14 pro max___4k_16by9_3840x2160-26.39fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Giheun", "camera_brand": "Apple", - "camera_model": "iphone 14 pro max", + "camera_model": "iPhone 14 Pro Max", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Apple/apple_iphone 14 Pro_24mm__4k_16by9_3840x2160-59.92fps.json b/Mobile phones/Apple/apple_iphone 14 Pro_24mm__4k_16by9_3840x2160-59.92fps.json index 147b4d0e..c9d7ff2d 100644 --- a/Mobile phones/Apple/apple_iphone 14 Pro_24mm__4k_16by9_3840x2160-59.92fps.json +++ b/Mobile phones/Apple/apple_iphone 14 Pro_24mm__4k_16by9_3840x2160-59.92fps.json @@ -2,8 +2,8 @@ "name": "apple_iphone 14 Pro_24mm__4k_16by9_3840x2160-59.92fps", "note": "", "calibrated_by": "褚凡0214", - "camera_brand": "apple", - "camera_model": "iphone 14 Pro", + "camera_brand": "Apple", + "camera_model": "iPhone 14 Pro", "lens_model": "24mm", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Fimi_Fimi x8 2022 v2_soni f16 48mp__4k_16by9_3840x2160-29.13fps.json b/Mobile phones/Fimi_Fimi x8 2022 v2_soni f16 48mp__4k_16by9_3840x2160-29.13fps.json index 56f8cda8..7124b7ba 100644 --- a/Mobile phones/Fimi_Fimi x8 2022 v2_soni f16 48mp__4k_16by9_3840x2160-29.13fps.json +++ b/Mobile phones/Fimi_Fimi x8 2022 v2_soni f16 48mp__4k_16by9_3840x2160-29.13fps.json @@ -2,7 +2,7 @@ "name": "Fimi_Fimi x8 2022 v2_soni f1/6 48mp__4k_16by9_3840x2160-29.13fps", "note": "", "calibrated_by": "Nathan khouri", - "camera_brand": "Fimi", + "camera_brand": "FIMI", "camera_model": "Fimi x8 2022 v2", "lens_model": "soni f1/6 48mp", "camera_setting": "", diff --git a/Mobile phones/Google/GOOGLE_Pixel 8 Pro_13mm__4k_16by9_3840x2176-30.00fps.json b/Mobile phones/Google/GOOGLE_Pixel 8 Pro_13mm__4k_16by9_3840x2176-30.00fps.json index 458d2787..cf89908e 100644 --- a/Mobile phones/Google/GOOGLE_Pixel 8 Pro_13mm__4k_16by9_3840x2176-30.00fps.json +++ b/Mobile phones/Google/GOOGLE_Pixel 8 Pro_13mm__4k_16by9_3840x2176-30.00fps.json @@ -2,7 +2,7 @@ "name": "GOOGLE_Pixel 8 Pro_13mm__4k_16by9_3840x2176-30.00fps", "note": "", "calibrated_by": "Philo Ghaly", - "camera_brand": "GOOGLE", + "camera_brand": "Google", "camera_model": "Pixel 8 Pro", "lens_model": "13mm", "camera_setting": "", diff --git a/Mobile phones/Google/Google_Pixel 4a_28mm__1080p_16by9_1936x1092-24.00fps.json b/Mobile phones/Google/Google_Pixel 4a_28mm__1080p_16by9_1936x1092-24.00fps.json index b7e23fd2..89c623aa 100644 --- a/Mobile phones/Google/Google_Pixel 4a_28mm__1080p_16by9_1936x1092-24.00fps.json +++ b/Mobile phones/Google/Google_Pixel 4a_28mm__1080p_16by9_1936x1092-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Windows", "camera_brand": "Google", - "camera_model": "Pixel 4a", + "camera_model": "Pixel 4A", "lens_model": "28mm", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Google/Google_Pixel 4a_28mm__4k_16by9_3840x2160-24.00fps.json b/Mobile phones/Google/Google_Pixel 4a_28mm__4k_16by9_3840x2160-24.00fps.json index 16ca20d4..b61bbb38 100644 --- a/Mobile phones/Google/Google_Pixel 4a_28mm__4k_16by9_3840x2160-24.00fps.json +++ b/Mobile phones/Google/Google_Pixel 4a_28mm__4k_16by9_3840x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Windows", "camera_brand": "Google", - "camera_model": "Pixel 4a", + "camera_model": "Pixel 4A", "lens_model": "28mm", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Google/Google_Pixel 4a___1080p_16by9_1920x1080-30.02fps.json b/Mobile phones/Google/Google_Pixel 4a___1080p_16by9_1920x1080-30.02fps.json index 39a98b8c..e571b33b 100644 --- a/Mobile phones/Google/Google_Pixel 4a___1080p_16by9_1920x1080-30.02fps.json +++ b/Mobile phones/Google/Google_Pixel 4a___1080p_16by9_1920x1080-30.02fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Sam Metcalfe", "camera_brand": "Google", - "camera_model": "Pixel 4a", + "camera_model": "Pixel 4A", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Google/Google_Pixel 4a___4k_16by9_3840x2160-28.68fps.json b/Mobile phones/Google/Google_Pixel 4a___4k_16by9_3840x2160-28.68fps.json index 6acd09bc..9f95c58b 100644 --- a/Mobile phones/Google/Google_Pixel 4a___4k_16by9_3840x2160-28.68fps.json +++ b/Mobile phones/Google/Google_Pixel 4a___4k_16by9_3840x2160-28.68fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Neil Carmichael", "camera_brand": "Google", - "camera_model": "Pixel 4a", + "camera_model": "Pixel 4A", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Google/Google_Pixel 4a___4k_16by9_3840x2160-30.06fps (2).json b/Mobile phones/Google/Google_Pixel 4a___4k_16by9_3840x2160-30.06fps (2).json index c73c470a..a3cad20e 100644 --- a/Mobile phones/Google/Google_Pixel 4a___4k_16by9_3840x2160-30.06fps (2).json +++ b/Mobile phones/Google/Google_Pixel 4a___4k_16by9_3840x2160-30.06fps (2).json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Marek Kocúr", "camera_brand": "Google", - "camera_model": "Pixel 4a", + "camera_model": "Pixel 4A", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Google/Google_Pixel 4a___4k_16by9_3840x2160-30.06fps.json b/Mobile phones/Google/Google_Pixel 4a___4k_16by9_3840x2160-30.06fps.json index 7b0aa090..000fad7c 100644 --- a/Mobile phones/Google/Google_Pixel 4a___4k_16by9_3840x2160-30.06fps.json +++ b/Mobile phones/Google/Google_Pixel 4a___4k_16by9_3840x2160-30.06fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Zygis", "camera_brand": "Google", - "camera_model": "Pixel 4a", + "camera_model": "Pixel 4A", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Google/Google_Pixel 7 pro_125mm_Pagrindine RAW video_4k_16by9_3840x2160-29.90fps.json b/Mobile phones/Google/Google_Pixel 7 pro_125mm_Pagrindine RAW video_4k_16by9_3840x2160-29.90fps.json index 7c084a76..de4b75a8 100644 --- a/Mobile phones/Google/Google_Pixel 7 pro_125mm_Pagrindine RAW video_4k_16by9_3840x2160-29.90fps.json +++ b/Mobile phones/Google/Google_Pixel 7 pro_125mm_Pagrindine RAW video_4k_16by9_3840x2160-29.90fps.json @@ -3,7 +3,7 @@ "note": "Pagrindine RAW video", "calibrated_by": "Andrius", "camera_brand": "Google", - "camera_model": "Pixel 7 pro", + "camera_model": "Pixel 7 Pro", "lens_model": "1/25mm", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Google/Google_Pixel 7a_53mm__4k_16by9_3840x2176-30.00fps.json b/Mobile phones/Google/Google_Pixel 7a_53mm__4k_16by9_3840x2176-30.00fps.json index f5d08368..5392dcfa 100644 --- a/Mobile phones/Google/Google_Pixel 7a_53mm__4k_16by9_3840x2176-30.00fps.json +++ b/Mobile phones/Google/Google_Pixel 7a_53mm__4k_16by9_3840x2176-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "U0 A436", "camera_brand": "Google", - "camera_model": "Pixel 7a", + "camera_model": "Pixel 7A", "lens_model": "53mm", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Google/Google_Pixel 7a_Main Lens_60 fps_1080p_16by9_1920x1080-59.76fps.json b/Mobile phones/Google/Google_Pixel 7a_Main Lens_60 fps_1080p_16by9_1920x1080-59.76fps.json index 16dd34df..ccb2ef24 100644 --- a/Mobile phones/Google/Google_Pixel 7a_Main Lens_60 fps_1080p_16by9_1920x1080-59.76fps.json +++ b/Mobile phones/Google/Google_Pixel 7a_Main Lens_60 fps_1080p_16by9_1920x1080-59.76fps.json @@ -3,7 +3,7 @@ "note": "60 fps", "calibrated_by": "Malav Shah", "camera_brand": "Google", - "camera_model": "Pixel 7a", + "camera_model": "Pixel 7A", "lens_model": "Main Lens", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Google/Google_Pixel 7a_Main_Motioncam RAW_C4k_16by9_4624x2608-24.04fps.json b/Mobile phones/Google/Google_Pixel 7a_Main_Motioncam RAW_C4k_16by9_4624x2608-24.04fps.json index 42cb1fd8..0478b898 100644 --- a/Mobile phones/Google/Google_Pixel 7a_Main_Motioncam RAW_C4k_16by9_4624x2608-24.04fps.json +++ b/Mobile phones/Google/Google_Pixel 7a_Main_Motioncam RAW_C4k_16by9_4624x2608-24.04fps.json @@ -3,7 +3,7 @@ "note": "Motioncam RAW", "calibrated_by": "Taiyakeys", "camera_brand": "Google", - "camera_model": "Pixel 7a", + "camera_model": "Pixel 7A", "lens_model": "Main", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Google/Google_Pixel 8 pro_115mm Telephoto_30fps_4k_16by9_3840x2176-30.00fps.json b/Mobile phones/Google/Google_Pixel 8 pro_115mm Telephoto_30fps_4k_16by9_3840x2176-30.00fps.json index aca5acd0..c3955089 100644 --- a/Mobile phones/Google/Google_Pixel 8 pro_115mm Telephoto_30fps_4k_16by9_3840x2176-30.00fps.json +++ b/Mobile phones/Google/Google_Pixel 8 pro_115mm Telephoto_30fps_4k_16by9_3840x2176-30.00fps.json @@ -3,7 +3,7 @@ "note": "30fps", "calibrated_by": "Poupougne", "camera_brand": "Google", - "camera_model": "Pixel 8 pro", + "camera_model": "Pixel 8 Pro", "lens_model": "115mm Telephoto", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Google/Google_Pixel 8 pro_1x_1x_4k_16by9_3840x2160-30.00fps.json b/Mobile phones/Google/Google_Pixel 8 pro_1x_1x_4k_16by9_3840x2160-30.00fps.json index cc6c2099..0ec05133 100644 --- a/Mobile phones/Google/Google_Pixel 8 pro_1x_1x_4k_16by9_3840x2160-30.00fps.json +++ b/Mobile phones/Google/Google_Pixel 8 pro_1x_1x_4k_16by9_3840x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Juan San Martin Lledias", "camera_brand": "Google", - "camera_model": "Pixel 8 pro", + "camera_model": "Pixel 8 Pro", "lens_model": "1x", "camera_setting": "1x", "calib_dimension": { diff --git a/Mobile phones/Google/Google_Pixel 8 pro___4k_16by9_3840x2160-30.00fps.json b/Mobile phones/Google/Google_Pixel 8 pro___4k_16by9_3840x2160-30.00fps.json index 0ea1cbe3..56b14a5e 100644 --- a/Mobile phones/Google/Google_Pixel 8 pro___4k_16by9_3840x2160-30.00fps.json +++ b/Mobile phones/Google/Google_Pixel 8 pro___4k_16by9_3840x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Juan San Martin Lledias", "camera_brand": "Google", - "camera_model": "Pixel 8 pro", + "camera_model": "Pixel 8 Pro", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Google/Google_pixel 7a_26mm__4k_16by9_3840x2176-82.61fps.json b/Mobile phones/Google/Google_pixel 7a_26mm__4k_16by9_3840x2176-82.61fps.json index c40c08e6..26fa21d1 100644 --- a/Mobile phones/Google/Google_pixel 7a_26mm__4k_16by9_3840x2176-82.61fps.json +++ b/Mobile phones/Google/Google_pixel 7a_26mm__4k_16by9_3840x2176-82.61fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Anonymous", "camera_brand": "Google", - "camera_model": "pixel 7a", + "camera_model": "Pixel 7A", "lens_model": "26mm", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Google/Google_pixel 8_pixel 25 mm_4080 x 2296 raw_4k_16by9_3840x2160-24.00fps.json b/Mobile phones/Google/Google_pixel 8_pixel 25 mm_4080 x 2296 raw_4k_16by9_3840x2160-24.00fps.json index 4ab2b46e..cd3fcd4d 100644 --- a/Mobile phones/Google/Google_pixel 8_pixel 25 mm_4080 x 2296 raw_4k_16by9_3840x2160-24.00fps.json +++ b/Mobile phones/Google/Google_pixel 8_pixel 25 mm_4080 x 2296 raw_4k_16by9_3840x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "L Johnson", "camera_brand": "Google", - "camera_model": "pixel 8", + "camera_model": "Pixel 8", "lens_model": "pixel 25 mm", "camera_setting": "4080 x 2296 raw", "calib_dimension": { diff --git a/Mobile phones/Google/google_Pixel 6_24mm_auto_4k_16by9_3840x2160-59.97fps.json b/Mobile phones/Google/google_Pixel 6_24mm_auto_4k_16by9_3840x2160-59.97fps.json index edcb009e..dc4d2c58 100644 --- a/Mobile phones/Google/google_Pixel 6_24mm_auto_4k_16by9_3840x2160-59.97fps.json +++ b/Mobile phones/Google/google_Pixel 6_24mm_auto_4k_16by9_3840x2160-59.97fps.json @@ -2,7 +2,7 @@ "name": "google_Pixel 6_24mm_auto_4k_16by9_3840x2160-59.97fps", "note": "", "calibrated_by": "manish 1", - "camera_brand": "google", + "camera_brand": "Google", "camera_model": "Pixel 6", "lens_model": "24mm", "camera_setting": "auto", diff --git a/Mobile phones/Google/google_Pixel 8 pro_tele__4k_16by9_3840x2160-30.00fps.json b/Mobile phones/Google/google_Pixel 8 pro_tele__4k_16by9_3840x2160-30.00fps.json index 5bbabf2c..5e7adcc6 100644 --- a/Mobile phones/Google/google_Pixel 8 pro_tele__4k_16by9_3840x2160-30.00fps.json +++ b/Mobile phones/Google/google_Pixel 8 pro_tele__4k_16by9_3840x2160-30.00fps.json @@ -2,8 +2,8 @@ "name": "google_Pixel 8 pro_tele__4k_16by9_3840x2160-30.00fps", "note": "", "calibrated_by": "Juan San Martin Lledias", - "camera_brand": "google", - "camera_model": "Pixel 8 pro", + "camera_brand": "Google", + "camera_model": "Pixel 8 Pro", "lens_model": "tele", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Huawei/HUAWEI_MATEPAD11___1080p_16by9_1920x1080-29.86fps.json b/Mobile phones/Huawei/HUAWEI_MATEPAD11___1080p_16by9_1920x1080-29.86fps.json index e8e459f3..5fc45a1e 100644 --- a/Mobile phones/Huawei/HUAWEI_MATEPAD11___1080p_16by9_1920x1080-29.86fps.json +++ b/Mobile phones/Huawei/HUAWEI_MATEPAD11___1080p_16by9_1920x1080-29.86fps.json @@ -2,7 +2,7 @@ "name": "HUAWEI_MATEPAD11___1080p_16by9_1920x1080-29.86fps", "note": "", "calibrated_by": "Arako", - "camera_brand": "HUAWEI", + "camera_brand": "Huawei", "camera_model": "MATEPAD11", "lens_model": "", "camera_setting": "", diff --git a/Mobile phones/Huawei/Huawei_P30 PRO_Wide Lens__1080p_16by9_1920x1080-30.51fps.json b/Mobile phones/Huawei/Huawei_P30 PRO_Wide Lens__1080p_16by9_1920x1080-30.51fps.json index 4bf9ca0e..2c60e1b4 100644 --- a/Mobile phones/Huawei/Huawei_P30 PRO_Wide Lens__1080p_16by9_1920x1080-30.51fps.json +++ b/Mobile phones/Huawei/Huawei_P30 PRO_Wide Lens__1080p_16by9_1920x1080-30.51fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Vlad Rodrig", "camera_brand": "Huawei", - "camera_model": "P30 PRO", + "camera_model": "P30 Pro", "lens_model": "Wide Lens", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Huawei/Huawei_P30pro main_f1.6_f1.6__1080p_16by9_1920x1080-60.36fps.json b/Mobile phones/Huawei/Huawei_P30pro main_f1.6_f1.6__1080p_16by9_1920x1080-60.36fps.json index 37b38dd7..9355f5af 100644 --- a/Mobile phones/Huawei/Huawei_P30pro main_f1.6_f1.6__1080p_16by9_1920x1080-60.36fps.json +++ b/Mobile phones/Huawei/Huawei_P30pro main_f1.6_f1.6__1080p_16by9_1920x1080-60.36fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Anton", "camera_brand": "Huawei", - "camera_model": "P30pro main_f1.6", + "camera_model": "P30pro main_F1.6", "lens_model": "f1.6", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Huawei/Huawei_P50pro___4k_16by9_3840x2160-59.99fps.json b/Mobile phones/Huawei/Huawei_P50pro___4k_16by9_3840x2160-59.99fps.json index 8b59e33c..19d86cd4 100644 --- a/Mobile phones/Huawei/Huawei_P50pro___4k_16by9_3840x2160-59.99fps.json +++ b/Mobile phones/Huawei/Huawei_P50pro___4k_16by9_3840x2160-59.99fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Huawei", - "camera_model": "P50pro", + "camera_model": "P50PRO", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Huawei/Huawei_p30 pro__19_9 30 bps_4k_16by9_3840x2160-29.94fps.json b/Mobile phones/Huawei/Huawei_p30 pro__19_9 30 bps_4k_16by9_3840x2160-29.94fps.json index dfa2a4d3..d46c5896 100644 --- a/Mobile phones/Huawei/Huawei_p30 pro__19_9 30 bps_4k_16by9_3840x2160-29.94fps.json +++ b/Mobile phones/Huawei/Huawei_p30 pro__19_9 30 bps_4k_16by9_3840x2160-29.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Henk", "camera_brand": "Huawei", - "camera_model": "p30 pro", + "camera_model": "P30 Pro", "lens_model": "", "camera_setting": "19:9 30 bps", "calib_dimension": { diff --git a/Mobile phones/Huawei/Huawei_p40 pro_Laica_jp_4k_16by9_3840x2160-60.43fps.json b/Mobile phones/Huawei/Huawei_p40 pro_Laica_jp_4k_16by9_3840x2160-60.43fps.json index 660f7394..a18790ec 100644 --- a/Mobile phones/Huawei/Huawei_p40 pro_Laica_jp_4k_16by9_3840x2160-60.43fps.json +++ b/Mobile phones/Huawei/Huawei_p40 pro_Laica_jp_4k_16by9_3840x2160-60.43fps.json @@ -3,7 +3,7 @@ "note": "jp", "calibrated_by": "Joao Cruz", "camera_brand": "Huawei", - "camera_model": "p40 pro", + "camera_model": "P40 Pro", "lens_model": "Laica", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Huawei/huawei_P9___1080p_16by9_1920x1080-60.08fps.json b/Mobile phones/Huawei/huawei_P9___1080p_16by9_1920x1080-60.08fps.json index 1e24365a..f423bd20 100644 --- a/Mobile phones/Huawei/huawei_P9___1080p_16by9_1920x1080-60.08fps.json +++ b/Mobile phones/Huawei/huawei_P9___1080p_16by9_1920x1080-60.08fps.json @@ -2,7 +2,7 @@ "name": "huawei_P9___1080p_16by9_1920x1080-60.08fps", "note": "", "calibrated_by": "Noé Sourdès", - "camera_brand": "huawei", + "camera_brand": "Huawei", "camera_model": "P9", "lens_model": "", "camera_setting": "", diff --git a/Mobile phones/Huawei/huawei_P9_leica__1080p_16by9_1920x1080-60.08fps.json b/Mobile phones/Huawei/huawei_P9_leica__1080p_16by9_1920x1080-60.08fps.json index 6e899422..089ec797 100644 --- a/Mobile phones/Huawei/huawei_P9_leica__1080p_16by9_1920x1080-60.08fps.json +++ b/Mobile phones/Huawei/huawei_P9_leica__1080p_16by9_1920x1080-60.08fps.json @@ -2,7 +2,7 @@ "name": "huawei_P9_leica__1080p_16by9_1920x1080-60.08fps", "note": "", "calibrated_by": "Noé Sourdès", - "camera_brand": "huawei", + "camera_brand": "Huawei", "camera_model": "P9", "lens_model": "leica", "camera_setting": "", diff --git a/Mobile phones/LG/LGE_V40_16mm 1.9_24fps_2.7k_1by1_3492x3492-24.14fps.json b/Mobile phones/LG/LGE_V40_16mm 1.9_24fps_2.7k_1by1_3492x3492-24.14fps.json index 697c2417..1ce159b1 100644 --- a/Mobile phones/LG/LGE_V40_16mm 1.9_24fps_2.7k_1by1_3492x3492-24.14fps.json +++ b/Mobile phones/LG/LGE_V40_16mm 1.9_24fps_2.7k_1by1_3492x3492-24.14fps.json @@ -2,7 +2,7 @@ "name": "LGE_V40_16mm 1.9_24fps_2.7k_1by1_3492x3492-24.14fps", "note": "24fps", "calibrated_by": "Redson ", - "camera_brand": "LGE", + "camera_brand": "LG", "camera_model": "V40", "lens_model": "16mm 1.9", "camera_setting": "", diff --git a/Mobile phones/LG/LGE_V40_26mm 1.5_24fps_C4k_4by3_4032x3024-24.01fps.json b/Mobile phones/LG/LGE_V40_26mm 1.5_24fps_C4k_4by3_4032x3024-24.01fps.json index 6bd0e586..a48fd05d 100644 --- a/Mobile phones/LG/LGE_V40_26mm 1.5_24fps_C4k_4by3_4032x3024-24.01fps.json +++ b/Mobile phones/LG/LGE_V40_26mm 1.5_24fps_C4k_4by3_4032x3024-24.01fps.json @@ -2,7 +2,7 @@ "name": "LGE_V40_26mm 1.5_24fps_C4k_4by3_4032x3024-24.01fps", "note": "24fps", "calibrated_by": "Redson ", - "camera_brand": "LGE", + "camera_brand": "LG", "camera_model": "V40", "lens_model": "26mm 1.5", "camera_setting": "", diff --git a/Mobile phones/LG/LGE_V40_50mm 2.4_24fps_C4k_4by3_4032x3024-24.07fps.json b/Mobile phones/LG/LGE_V40_50mm 2.4_24fps_C4k_4by3_4032x3024-24.07fps.json index d03ecd55..b97bb2d2 100644 --- a/Mobile phones/LG/LGE_V40_50mm 2.4_24fps_C4k_4by3_4032x3024-24.07fps.json +++ b/Mobile phones/LG/LGE_V40_50mm 2.4_24fps_C4k_4by3_4032x3024-24.07fps.json @@ -2,7 +2,7 @@ "name": "LGE_V40_50mm 2.4_24fps_C4k_4by3_4032x3024-24.07fps", "note": "24fps", "calibrated_by": "Redson ", - "camera_brand": "LGE", + "camera_brand": "LG", "camera_model": "V40", "lens_model": "50mm 2.4", "camera_setting": "", diff --git a/Mobile phones/LG/LG_v35_Main 31mm f1.6_Motioncam Pro_2k_4by3_2328x1746-30.19fps.json b/Mobile phones/LG/LG_v35_Main 31mm f1.6_Motioncam Pro_2k_4by3_2328x1746-30.19fps.json index 213e62e1..957903fc 100644 --- a/Mobile phones/LG/LG_v35_Main 31mm f1.6_Motioncam Pro_2k_4by3_2328x1746-30.19fps.json +++ b/Mobile phones/LG/LG_v35_Main 31mm f1.6_Motioncam Pro_2k_4by3_2328x1746-30.19fps.json @@ -3,7 +3,7 @@ "note": "Motioncam Pro", "calibrated_by": "David Barlow", "camera_brand": "LG", - "camera_model": "v35", + "camera_model": "V35", "lens_model": "Main 31mm f1.6", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/LG/LG_v35_Wide 16mm_Motioncam Pro_C4k_4by3_4656x3492-24.00fps.json b/Mobile phones/LG/LG_v35_Wide 16mm_Motioncam Pro_C4k_4by3_4656x3492-24.00fps.json index c792d397..380a298d 100644 --- a/Mobile phones/LG/LG_v35_Wide 16mm_Motioncam Pro_C4k_4by3_4656x3492-24.00fps.json +++ b/Mobile phones/LG/LG_v35_Wide 16mm_Motioncam Pro_C4k_4by3_4656x3492-24.00fps.json @@ -3,7 +3,7 @@ "note": "Q 0.472", "calibrated_by": "David Barlow", "camera_brand": "LG", - "camera_model": "v35", + "camera_model": "V35", "lens_model": "Wide 16mm", "camera_setting": "Motioncam Pro", "calib_dimension": { diff --git a/Mobile phones/LG/LG_v35_Wide 18mm f1.9_Motioncam Pro_2k_4by3_2328x1746-30.19fps.json b/Mobile phones/LG/LG_v35_Wide 18mm f1.9_Motioncam Pro_2k_4by3_2328x1746-30.19fps.json index b8047536..be116cbb 100644 --- a/Mobile phones/LG/LG_v35_Wide 18mm f1.9_Motioncam Pro_2k_4by3_2328x1746-30.19fps.json +++ b/Mobile phones/LG/LG_v35_Wide 18mm f1.9_Motioncam Pro_2k_4by3_2328x1746-30.19fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "David Barlow", "camera_brand": "LG", - "camera_model": "v35", + "camera_model": "V35", "lens_model": "Wide 18mm f1.9", "camera_setting": "Motioncam Pro", "calib_dimension": { diff --git a/Mobile phones/LG/LG_v35_Wide 18mm f1.9_Motioncam Pro_C4k_4by3_4656x3492-24.00fps.json b/Mobile phones/LG/LG_v35_Wide 18mm f1.9_Motioncam Pro_C4k_4by3_4656x3492-24.00fps.json index 3dab9232..772b8883 100644 --- a/Mobile phones/LG/LG_v35_Wide 18mm f1.9_Motioncam Pro_C4k_4by3_4656x3492-24.00fps.json +++ b/Mobile phones/LG/LG_v35_Wide 18mm f1.9_Motioncam Pro_C4k_4by3_4656x3492-24.00fps.json @@ -3,7 +3,7 @@ "note": "Q 0.70", "calibrated_by": "David Barlow", "camera_brand": "LG", - "camera_model": "v35", + "camera_model": "V35", "lens_model": "Wide 18mm f1.9", "camera_setting": "Motioncam Pro", "calib_dimension": { diff --git a/Mobile phones/LG/LG_v40_Wide 16mm f1.9_Quality 0.237_2k_4by3_2328x1746-24.00fps.json b/Mobile phones/LG/LG_v40_Wide 16mm f1.9_Quality 0.237_2k_4by3_2328x1746-24.00fps.json index bee31440..3e2a101e 100644 --- a/Mobile phones/LG/LG_v40_Wide 16mm f1.9_Quality 0.237_2k_4by3_2328x1746-24.00fps.json +++ b/Mobile phones/LG/LG_v40_Wide 16mm f1.9_Quality 0.237_2k_4by3_2328x1746-24.00fps.json @@ -3,7 +3,7 @@ "note": "Quality 0.237", "calibrated_by": "David Barlow", "camera_brand": "LG", - "camera_model": "v40", + "camera_model": "V40", "lens_model": "Wide 16mm f1.9", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/LG/LG_v60_26mm__4k_16by9_3840x2176-23.96fps.json b/Mobile phones/LG/LG_v60_26mm__4k_16by9_3840x2176-23.96fps.json index b7fdc947..648a986f 100644 --- a/Mobile phones/LG/LG_v60_26mm__4k_16by9_3840x2176-23.96fps.json +++ b/Mobile phones/LG/LG_v60_26mm__4k_16by9_3840x2176-23.96fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Mikheil Prishvin", "calibrator_version": "1.5.4", "camera_brand": "LG", - "camera_model": "v60", + "camera_model": "V60", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Mobile phones/LG/LG_v60_58mm__4k_16by9_3840x2176-24.00fps.json b/Mobile phones/LG/LG_v60_58mm__4k_16by9_3840x2176-24.00fps.json index 10b8129a..f10a26fe 100644 --- a/Mobile phones/LG/LG_v60_58mm__4k_16by9_3840x2176-24.00fps.json +++ b/Mobile phones/LG/LG_v60_58mm__4k_16by9_3840x2176-24.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Mikheil Prishvin", "calibrator_version": "1.5.4", "camera_brand": "LG", - "camera_model": "v60", + "camera_model": "V60", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Mobile phones/LG/LG_v60_58mm__4k_16by9_3840x2176-24.01fps.json b/Mobile phones/LG/LG_v60_58mm__4k_16by9_3840x2176-24.01fps.json index 0fd858cd..55fc49d2 100644 --- a/Mobile phones/LG/LG_v60_58mm__4k_16by9_3840x2176-24.01fps.json +++ b/Mobile phones/LG/LG_v60_58mm__4k_16by9_3840x2176-24.01fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Mikheil Prishvin", "calibrator_version": "1.5.4", "camera_brand": "LG", - "camera_model": "v60", + "camera_model": "V60", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Mobile phones/Meizu_Note9___4k_16by9_4000x2250-25.00fps.json b/Mobile phones/Meizu_Note9___4k_16by9_4000x2250-25.00fps.json index b85e3d0a..2a3aac8c 100644 --- a/Mobile phones/Meizu_Note9___4k_16by9_4000x2250-25.00fps.json +++ b/Mobile phones/Meizu_Note9___4k_16by9_4000x2250-25.00fps.json @@ -2,7 +2,7 @@ "name": "Meizu_Note9___4k_16by9_4000x2250-25.00fps", "note": "", "calibrated_by": "user", - "camera_brand": "Meizu", + "camera_brand": "MEIZU", "camera_model": "Note9", "lens_model": "", "camera_setting": "", diff --git a/Mobile phones/Motorola/Motorola_Edge 20 pro_Cmera principal__4k_16by9_3840x2160-30.01fps.json b/Mobile phones/Motorola/Motorola_Edge 20 pro_Cmera principal__4k_16by9_3840x2160-30.01fps.json index fefb3b05..86a51f1a 100644 --- a/Mobile phones/Motorola/Motorola_Edge 20 pro_Cmera principal__4k_16by9_3840x2160-30.01fps.json +++ b/Mobile phones/Motorola/Motorola_Edge 20 pro_Cmera principal__4k_16by9_3840x2160-30.01fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Luis Fernandes", "camera_brand": "Motorola", - "camera_model": "Edge 20 pro", + "camera_model": "Edge 20 Pro", "lens_model": "Câmera principal", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Motorola/Motorola_Edge 20 pro_lente principal_motioncam_4k_16by9_4000x2256-24.00fps.json b/Mobile phones/Motorola/Motorola_Edge 20 pro_lente principal_motioncam_4k_16by9_4000x2256-24.00fps.json index c0c46bca..ccaf1f2a 100644 --- a/Mobile phones/Motorola/Motorola_Edge 20 pro_lente principal_motioncam_4k_16by9_4000x2256-24.00fps.json +++ b/Mobile phones/Motorola/Motorola_Edge 20 pro_lente principal_motioncam_4k_16by9_4000x2256-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Luis Fernandes", "camera_brand": "Motorola", - "camera_model": "Edge 20 pro", + "camera_model": "Edge 20 Pro", "lens_model": "lente principal", "camera_setting": "motioncam", "calib_dimension": { diff --git a/Mobile phones/Motorola/Motorola_g7 plus___4k_16by9_3840x2160-29.95fps.json b/Mobile phones/Motorola/Motorola_g7 plus___4k_16by9_3840x2160-29.95fps.json index 9abc6544..f005046a 100644 --- a/Mobile phones/Motorola/Motorola_g7 plus___4k_16by9_3840x2160-29.95fps.json +++ b/Mobile phones/Motorola/Motorola_g7 plus___4k_16by9_3840x2160-29.95fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "batinste", "camera_brand": "Motorola", - "camera_model": "g7 plus", + "camera_model": "G7 Plus", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/OnePlus/ONEPLUS_IZI__60fps_4k_16by9_3840x2160-30.00fps.json b/Mobile phones/OnePlus/ONEPLUS_IZI__60fps_4k_16by9_3840x2160-30.00fps.json index 276489f0..5c2dd092 100644 --- a/Mobile phones/OnePlus/ONEPLUS_IZI__60fps_4k_16by9_3840x2160-30.00fps.json +++ b/Mobile phones/OnePlus/ONEPLUS_IZI__60fps_4k_16by9_3840x2160-30.00fps.json @@ -2,7 +2,7 @@ "name": "ONEPLUS_IZI__60fps_4k_16by9_3840x2160-30.00fps", "note": "", "calibrated_by": "Vishu", - "camera_brand": "ONEPLUS", + "camera_brand": "OnePlus", "camera_model": "IZI", "lens_model": "", "camera_setting": "60fps", diff --git a/Mobile phones/OnePlus/ONEPLUS_IZI___60fps_5k_16by9_5120x2880-30.00fps.json b/Mobile phones/OnePlus/ONEPLUS_IZI___60fps_5k_16by9_5120x2880-30.00fps.json index e66473bb..93cd37e6 100644 --- a/Mobile phones/OnePlus/ONEPLUS_IZI___60fps_5k_16by9_5120x2880-30.00fps.json +++ b/Mobile phones/OnePlus/ONEPLUS_IZI___60fps_5k_16by9_5120x2880-30.00fps.json @@ -2,7 +2,7 @@ "name": "ONEPLUS_IZI__*60fps_5k_16by9_5120x2880-30.00fps", "note": "", "calibrated_by": "Varun", - "camera_brand": "ONEPLUS", + "camera_brand": "OnePlus", "camera_model": "IZI", "lens_model": "", "camera_setting": "*60fps", diff --git a/Mobile phones/OnePlus/OnePlus_9 Pro_24 mm Main camera__4k_4by3_4000x3008-24.00fps.json b/Mobile phones/OnePlus/OnePlus_9 Pro_24 mm Main camera__4k_4by3_4000x3008-24.00fps.json index 8ab6e2eb..c176787c 100644 --- a/Mobile phones/OnePlus/OnePlus_9 Pro_24 mm Main camera__4k_4by3_4000x3008-24.00fps.json +++ b/Mobile phones/OnePlus/OnePlus_9 Pro_24 mm Main camera__4k_4by3_4000x3008-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Luca C.", "camera_brand": "OnePlus", - "camera_model": "9 Pro", + "camera_model": "9 PRO", "lens_model": "24 mm Main camera", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/OnePlus/OnePlus_9 Pro_24mm_MotionCam App_4k_4by3_4000x3000-60.03fps.json b/Mobile phones/OnePlus/OnePlus_9 Pro_24mm_MotionCam App_4k_4by3_4000x3000-60.03fps.json index 09d77c63..26b03108 100644 --- a/Mobile phones/OnePlus/OnePlus_9 Pro_24mm_MotionCam App_4k_4by3_4000x3000-60.03fps.json +++ b/Mobile phones/OnePlus/OnePlus_9 Pro_24mm_MotionCam App_4k_4by3_4000x3000-60.03fps.json @@ -3,7 +3,7 @@ "note": "MotionCam App", "calibrated_by": "maga.fpv", "camera_brand": "OnePlus", - "camera_model": "9 Pro", + "camera_model": "9 PRO", "lens_model": "24mm", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/OnePlus/OnePlus_9 Pro_81 mm Tele__2.7k_4by3_3264x2448-23.98fps.json b/Mobile phones/OnePlus/OnePlus_9 Pro_81 mm Tele__2.7k_4by3_3264x2448-23.98fps.json index 1e0ab9c3..9f737e19 100644 --- a/Mobile phones/OnePlus/OnePlus_9 Pro_81 mm Tele__2.7k_4by3_3264x2448-23.98fps.json +++ b/Mobile phones/OnePlus/OnePlus_9 Pro_81 mm Tele__2.7k_4by3_3264x2448-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Luca", "camera_brand": "OnePlus", - "camera_model": "9 Pro", + "camera_model": "9 PRO", "lens_model": "81 mm Tele", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/OnePlus/OnePlus_9 Pro_Main Lens__2.7k_16by9_3228x1824-30.03fps.json b/Mobile phones/OnePlus/OnePlus_9 Pro_Main Lens__2.7k_16by9_3228x1824-30.03fps.json index a57fbe82..d840abad 100644 --- a/Mobile phones/OnePlus/OnePlus_9 Pro_Main Lens__2.7k_16by9_3228x1824-30.03fps.json +++ b/Mobile phones/OnePlus/OnePlus_9 Pro_Main Lens__2.7k_16by9_3228x1824-30.03fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ryzen", "camera_brand": "OnePlus", - "camera_model": "9 Pro", + "camera_model": "9 PRO", "lens_model": "Main Lens", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/OnePlus/OnePlus_9 Pro_Main Lens__4k_16by9_4000x2256-30.04fps.json b/Mobile phones/OnePlus/OnePlus_9 Pro_Main Lens__4k_16by9_4000x2256-30.04fps.json index 5bbebfe1..a714d7e0 100644 --- a/Mobile phones/OnePlus/OnePlus_9 Pro_Main Lens__4k_16by9_4000x2256-30.04fps.json +++ b/Mobile phones/OnePlus/OnePlus_9 Pro_Main Lens__4k_16by9_4000x2256-30.04fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Leonard Sander", "camera_brand": "OnePlus", - "camera_model": "9 Pro", + "camera_model": "9 PRO", "lens_model": "Main Lens", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/OnePlus/OnePlus_9 Pro_Medium_60_4k_16by9_3840x2160-59.89fps.json b/Mobile phones/OnePlus/OnePlus_9 Pro_Medium_60_4k_16by9_3840x2160-59.89fps.json index 9a48583d..c6dfe075 100644 --- a/Mobile phones/OnePlus/OnePlus_9 Pro_Medium_60_4k_16by9_3840x2160-59.89fps.json +++ b/Mobile phones/OnePlus/OnePlus_9 Pro_Medium_60_4k_16by9_3840x2160-59.89fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Joseph Hancuff", "camera_brand": "OnePlus", - "camera_model": "9 Pro", + "camera_model": "9 PRO", "lens_model": "Medium", "camera_setting": "60", "calib_dimension": { diff --git a/Mobile phones/OnePlus/OnePlus_9 Pro_Primary__4k_16by9_3840x2160-29.98fps.json b/Mobile phones/OnePlus/OnePlus_9 Pro_Primary__4k_16by9_3840x2160-29.98fps.json index 4f88ef4a..7d758ee3 100644 --- a/Mobile phones/OnePlus/OnePlus_9 Pro_Primary__4k_16by9_3840x2160-29.98fps.json +++ b/Mobile phones/OnePlus/OnePlus_9 Pro_Primary__4k_16by9_3840x2160-29.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "J SI", "camera_brand": "OnePlus", - "camera_model": "9 Pro", + "camera_model": "9 PRO", "lens_model": "Primary", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/OnePlus/OnePlus_9 Pro___1080p_16by9_1920x1080-59.22fps.json b/Mobile phones/OnePlus/OnePlus_9 Pro___1080p_16by9_1920x1080-59.22fps.json index d0b7049b..aa3f0ebb 100644 --- a/Mobile phones/OnePlus/OnePlus_9 Pro___1080p_16by9_1920x1080-59.22fps.json +++ b/Mobile phones/OnePlus/OnePlus_9 Pro___1080p_16by9_1920x1080-59.22fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "antonio barbones roca", "camera_brand": "OnePlus", - "camera_model": "9 Pro", + "camera_model": "9 PRO", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/OnePlus/Oneplus_8 Pro_13mm__4k_16by9_3840x2160-24.00fps.json b/Mobile phones/OnePlus/Oneplus_8 Pro_13mm__4k_16by9_3840x2160-24.00fps.json index 0b4af678..cf2ce2fb 100644 --- a/Mobile phones/OnePlus/Oneplus_8 Pro_13mm__4k_16by9_3840x2160-24.00fps.json +++ b/Mobile phones/OnePlus/Oneplus_8 Pro_13mm__4k_16by9_3840x2160-24.00fps.json @@ -2,7 +2,7 @@ "name": "Oneplus_8 Pro_13mm__4k_16by9_3840x2160-24.00fps", "note": "", "calibrated_by": "Péter Bak", - "camera_brand": "Oneplus", + "camera_brand": "OnePlus", "camera_model": "8 Pro", "lens_model": "13mm", "camera_setting": "", diff --git a/Mobile phones/OnePlus/Oneplus_Nord 2 5G FHD OpenCamera Sensors___1080p_16by9_1920x1080-29.91fps.json b/Mobile phones/OnePlus/Oneplus_Nord 2 5G FHD OpenCamera Sensors___1080p_16by9_1920x1080-29.91fps.json index ecb41bb3..c8825e05 100644 --- a/Mobile phones/OnePlus/Oneplus_Nord 2 5G FHD OpenCamera Sensors___1080p_16by9_1920x1080-29.91fps.json +++ b/Mobile phones/OnePlus/Oneplus_Nord 2 5G FHD OpenCamera Sensors___1080p_16by9_1920x1080-29.91fps.json @@ -2,7 +2,7 @@ "name": "Oneplus_Nord 2 5G FHD OpenCamera Sensors___1080p_16by9_1920x1080-29.91fps", "note": "", "calibrated_by": "Lucifer480X", - "camera_brand": "Oneplus", + "camera_brand": "OnePlus", "camera_model": "Nord 2 5G FHD OpenCamera Sensors", "lens_model": "", "camera_setting": "", diff --git a/Mobile phones/OnePlus/oneplus_ace3___1080p_16by9_1920x1080-60.01fps.json b/Mobile phones/OnePlus/oneplus_ace3___1080p_16by9_1920x1080-60.01fps.json index 47090d8d..d5381ede 100644 --- a/Mobile phones/OnePlus/oneplus_ace3___1080p_16by9_1920x1080-60.01fps.json +++ b/Mobile phones/OnePlus/oneplus_ace3___1080p_16by9_1920x1080-60.01fps.json @@ -6,7 +6,7 @@ }, "calibrated_by": "swy", "calibrator_version": "1.5.4", - "camera_brand": "oneplus", + "camera_brand": "OnePlus", "camera_model": "ace3", "camera_setting": "", "compatible_settings": [], diff --git a/Mobile phones/Oppo/Oppo_A15___720p_16by9_1280x720-29.57fps.json b/Mobile phones/Oppo/Oppo_A15___720p_16by9_1280x720-29.57fps.json index 28993b63..1f62ebd2 100644 --- a/Mobile phones/Oppo/Oppo_A15___720p_16by9_1280x720-29.57fps.json +++ b/Mobile phones/Oppo/Oppo_A15___720p_16by9_1280x720-29.57fps.json @@ -2,7 +2,7 @@ "name": "Oppo_A15___720p_16by9_1280x720-29.57fps", "note": "", "calibrated_by": "ASUS", - "camera_brand": "Oppo", + "camera_brand": "OPPO", "camera_model": "A15", "lens_model": "", "camera_setting": "", diff --git a/Mobile phones/Oppo/Oppo_A16___1080p_16by9_1920x1080-29.61fps.json b/Mobile phones/Oppo/Oppo_A16___1080p_16by9_1920x1080-29.61fps.json index 9f95dc4c..2f208905 100644 --- a/Mobile phones/Oppo/Oppo_A16___1080p_16by9_1920x1080-29.61fps.json +++ b/Mobile phones/Oppo/Oppo_A16___1080p_16by9_1920x1080-29.61fps.json @@ -2,7 +2,7 @@ "name": "Oppo_A16___1080p_16by9_1920x1080-29.61fps", "note": "", "calibrated_by": "U0 A386", - "camera_brand": "Oppo", + "camera_brand": "OPPO", "camera_model": "A16", "lens_model": "", "camera_setting": "", diff --git a/Mobile phones/Oppo/Oppo_A74 4G_Oppo_Motioncam_1080p_16by9_1920x1088-34.94fps.json b/Mobile phones/Oppo/Oppo_A74 4G_Oppo_Motioncam_1080p_16by9_1920x1088-34.94fps.json index 49a00f20..6b2cf44f 100644 --- a/Mobile phones/Oppo/Oppo_A74 4G_Oppo_Motioncam_1080p_16by9_1920x1088-34.94fps.json +++ b/Mobile phones/Oppo/Oppo_A74 4G_Oppo_Motioncam_1080p_16by9_1920x1088-34.94fps.json @@ -2,7 +2,7 @@ "name": "Oppo_A74 4G_Oppo_Motioncam_1080p_16by9_1920x1088-34.94fps", "note": "Motioncam", "calibrated_by": "U0 A870", - "camera_brand": "Oppo", + "camera_brand": "OPPO", "camera_model": "A74 4G", "lens_model": "Oppo", "camera_setting": "", diff --git a/Mobile phones/Oppo/Oppo_Find X 6 Pro_24mm__4k_16by9_3852x2184-24.04fps.json b/Mobile phones/Oppo/Oppo_Find X 6 Pro_24mm__4k_16by9_3852x2184-24.04fps.json index 2c64b5e8..eb5cc1e5 100644 --- a/Mobile phones/Oppo/Oppo_Find X 6 Pro_24mm__4k_16by9_3852x2184-24.04fps.json +++ b/Mobile phones/Oppo/Oppo_Find X 6 Pro_24mm__4k_16by9_3852x2184-24.04fps.json @@ -2,7 +2,7 @@ "name": "Oppo_Find X 6 Pro_24mm__4k_16by9_3852x2184-24.04fps", "note": "", "calibrated_by": "OG", - "camera_brand": "Oppo", + "camera_brand": "OPPO", "camera_model": "Find X 6 Pro", "lens_model": "24mm", "camera_setting": "", diff --git a/Mobile phones/Oppo/Oppo_Find X5 pro___1080p_16by9_1920x1080-60.01fps.json b/Mobile phones/Oppo/Oppo_Find X5 pro___1080p_16by9_1920x1080-60.01fps.json index dae7f784..61b1eb44 100644 --- a/Mobile phones/Oppo/Oppo_Find X5 pro___1080p_16by9_1920x1080-60.01fps.json +++ b/Mobile phones/Oppo/Oppo_Find X5 pro___1080p_16by9_1920x1080-60.01fps.json @@ -2,7 +2,7 @@ "name": "Oppo_Find X5 pro___1080p_16by9_1920x1080-60.01fps", "note": "", "calibrated_by": "Bambang Raharjo", - "camera_brand": "Oppo", + "camera_brand": "OPPO", "camera_model": "Find X5 pro", "lens_model": "", "camera_setting": "", diff --git a/Mobile phones/Oppo/Oppo_K9X___480p_9by16_720x1280-29.00fps.json b/Mobile phones/Oppo/Oppo_K9X___480p_9by16_720x1280-29.00fps.json index 1b03a55a..b4b8b950 100644 --- a/Mobile phones/Oppo/Oppo_K9X___480p_9by16_720x1280-29.00fps.json +++ b/Mobile phones/Oppo/Oppo_K9X___480p_9by16_720x1280-29.00fps.json @@ -6,7 +6,7 @@ }, "calibrated_by": "U0 A59", "calibrator_version": "1.5.4", - "camera_brand": "Oppo", + "camera_brand": "OPPO", "camera_model": "K9X", "camera_setting": "", "compatible_settings": [], diff --git a/Mobile phones/Oppo/Oppo_Reno 4 Pro___1080p_16by9_1920x1080-29.99fps.json b/Mobile phones/Oppo/Oppo_Reno 4 Pro___1080p_16by9_1920x1080-29.99fps.json index 4eca0700..faec4c54 100644 --- a/Mobile phones/Oppo/Oppo_Reno 4 Pro___1080p_16by9_1920x1080-29.99fps.json +++ b/Mobile phones/Oppo/Oppo_Reno 4 Pro___1080p_16by9_1920x1080-29.99fps.json @@ -2,7 +2,7 @@ "name": "Oppo_Reno 4 Pro___1080p_16by9_1920x1080-29.99fps", "note": "", "calibrated_by": "DRONIC", - "camera_brand": "Oppo", + "camera_brand": "OPPO", "camera_model": "Reno 4 Pro", "lens_model": "", "camera_setting": "", diff --git a/Mobile phones/Oppo/Oppo_Reno 4___1080p_16by9_1920x1080-30.01fps.json b/Mobile phones/Oppo/Oppo_Reno 4___1080p_16by9_1920x1080-30.01fps.json index 72ec2aac..5e55ff60 100644 --- a/Mobile phones/Oppo/Oppo_Reno 4___1080p_16by9_1920x1080-30.01fps.json +++ b/Mobile phones/Oppo/Oppo_Reno 4___1080p_16by9_1920x1080-30.01fps.json @@ -2,7 +2,7 @@ "name": "Oppo_Reno 4___1080p_16by9_1920x1080-30.01fps", "note": "", "calibrated_by": "DRONIC", - "camera_brand": "Oppo", + "camera_brand": "OPPO", "camera_model": "Reno 4", "lens_model": "", "camera_setting": "", diff --git a/Mobile phones/Oppo/Oppo_Reno 6 5G_Main lens__2k_2.33by1_2400x1028-29.60fps.json b/Mobile phones/Oppo/Oppo_Reno 6 5G_Main lens__2k_2.33by1_2400x1028-29.60fps.json index 956f096b..be066af2 100644 --- a/Mobile phones/Oppo/Oppo_Reno 6 5G_Main lens__2k_2.33by1_2400x1028-29.60fps.json +++ b/Mobile phones/Oppo/Oppo_Reno 6 5G_Main lens__2k_2.33by1_2400x1028-29.60fps.json @@ -2,7 +2,7 @@ "name": "Oppo_Reno 6 5G_Main lens__2k_2.33by1_2400x1028-29.60fps", "note": "", "calibrated_by": "Principale", - "camera_brand": "Oppo", + "camera_brand": "OPPO", "camera_model": "Reno 6 5G", "lens_model": "Main lens", "camera_setting": "", diff --git a/Mobile phones/POCO/Poco_F1___4k_16by9_3840x2160-59.99fps.json b/Mobile phones/POCO/Poco_F1___4k_16by9_3840x2160-59.99fps.json index 17e7bf90..3c59e9c3 100644 --- a/Mobile phones/POCO/Poco_F1___4k_16by9_3840x2160-59.99fps.json +++ b/Mobile phones/POCO/Poco_F1___4k_16by9_3840x2160-59.99fps.json @@ -2,8 +2,8 @@ "name": "Poco_F1___4k_16by9_3840x2160-59.99fps", "note": "", "calibrated_by": "Sander", - "camera_brand": "Poco", - "camera_model": "F1", + "camera_brand": "POCO", + "camera_model": "f1", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/POCO/Poco_F3_Vertical__4k_16by9_3840x2160-29.95fps.json b/Mobile phones/POCO/Poco_F3_Vertical__4k_16by9_3840x2160-29.95fps.json index 24f9d984..ba1091cd 100644 --- a/Mobile phones/POCO/Poco_F3_Vertical__4k_16by9_3840x2160-29.95fps.json +++ b/Mobile phones/POCO/Poco_F3_Vertical__4k_16by9_3840x2160-29.95fps.json @@ -2,7 +2,7 @@ "name": "Poco_F3_Vertical__4k_16by9_3840x2160-29.95fps", "note": "", "calibrated_by": "Rubens Gabriel", - "camera_brand": "Poco", + "camera_brand": "POCO", "camera_model": "F3", "lens_model": "Vertical", "camera_setting": "", diff --git a/Mobile phones/POCO/Poco_M5s__Landscape orientation_4k_16by9_3840x2160-25.92fps.json b/Mobile phones/POCO/Poco_M5s__Landscape orientation_4k_16by9_3840x2160-25.92fps.json index bf9f2cd4..dd497dd8 100644 --- a/Mobile phones/POCO/Poco_M5s__Landscape orientation_4k_16by9_3840x2160-25.92fps.json +++ b/Mobile phones/POCO/Poco_M5s__Landscape orientation_4k_16by9_3840x2160-25.92fps.json @@ -2,8 +2,8 @@ "name": "Poco_M5s__Landscape orientation_4k_16by9_3840x2160-25.92fps", "note": "Landscape orientation", "calibrated_by": "Csongor", - "camera_brand": "Poco", - "camera_model": "M5s", + "camera_brand": "POCO", + "camera_model": "M5S", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Samsung/Samsung_Galaxy s21 Ultra_24 mm_30 fps_4k_4by3_4000x3000-30.01fps.json b/Mobile phones/Samsung/Samsung_Galaxy s21 Ultra_24 mm_30 fps_4k_4by3_4000x3000-30.01fps.json index c6e17d88..9194f49a 100644 --- a/Mobile phones/Samsung/Samsung_Galaxy s21 Ultra_24 mm_30 fps_4k_4by3_4000x3000-30.01fps.json +++ b/Mobile phones/Samsung/Samsung_Galaxy s21 Ultra_24 mm_30 fps_4k_4by3_4000x3000-30.01fps.json @@ -7,7 +7,7 @@ "calibrated_by": "toto moul's", "calibrator_version": "1.5.4", "camera_brand": "Samsung", - "camera_model": "Galaxy s21 Ultra", + "camera_model": "Galaxy S21 ultra", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Mobile phones/Samsung/Samsung_Note 10 plus_UltraWide_Stab off,_4k_16by9_3840x2160-30.01fps - Jackmin.json b/Mobile phones/Samsung/Samsung_Note 10 plus_UltraWide_Stab off,_4k_16by9_3840x2160-30.01fps - Jackmin.json index af39dacc..4388ccdc 100644 --- a/Mobile phones/Samsung/Samsung_Note 10 plus_UltraWide_Stab off,_4k_16by9_3840x2160-30.01fps - Jackmin.json +++ b/Mobile phones/Samsung/Samsung_Note 10 plus_UltraWide_Stab off,_4k_16by9_3840x2160-30.01fps - Jackmin.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jackmin", "camera_brand": "Samsung", - "camera_model": "Note 10 plus", + "camera_model": "Note 10 Plus", "lens_model": "UltraWide", "camera_setting": "Stab off,", "calib_dimension": { diff --git a/Mobile phones/Samsung/Samsung_Note 10 plus___C4k_4by3_4032x3024-30.00fps.json b/Mobile phones/Samsung/Samsung_Note 10 plus___C4k_4by3_4032x3024-30.00fps.json index 365dad1b..87b30aed 100644 --- a/Mobile phones/Samsung/Samsung_Note 10 plus___C4k_4by3_4032x3024-30.00fps.json +++ b/Mobile phones/Samsung/Samsung_Note 10 plus___C4k_4by3_4032x3024-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "", "camera_brand": "Samsung", - "camera_model": "Note 10 plus", + "camera_model": "Note 10 Plus", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Samsung/Samsung_S20 fe_Main rear lens__4k_16by9_3840x2160-29.98fps.json b/Mobile phones/Samsung/Samsung_S20 fe_Main rear lens__4k_16by9_3840x2160-29.98fps.json index 578b4ad4..813d624f 100644 --- a/Mobile phones/Samsung/Samsung_S20 fe_Main rear lens__4k_16by9_3840x2160-29.98fps.json +++ b/Mobile phones/Samsung/Samsung_S20 fe_Main rear lens__4k_16by9_3840x2160-29.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "john preston", "camera_brand": "Samsung", - "camera_model": "S20 fe", + "camera_model": "S20 FE", "lens_model": "Main rear lens", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Samsung/Samsung_S22 Ultra_1x at 24mm_MotionCam_4k_16by9_3840x2160-25.02fps.json b/Mobile phones/Samsung/Samsung_S22 Ultra_1x at 24mm_MotionCam_4k_16by9_3840x2160-25.02fps.json index a22c6433..c8733d97 100644 --- a/Mobile phones/Samsung/Samsung_S22 Ultra_1x at 24mm_MotionCam_4k_16by9_3840x2160-25.02fps.json +++ b/Mobile phones/Samsung/Samsung_S22 Ultra_1x at 24mm_MotionCam_4k_16by9_3840x2160-25.02fps.json @@ -3,7 +3,7 @@ "note": "MotionCam", "calibrated_by": "Nurhadi Beseri", "camera_brand": "Samsung", - "camera_model": "S22 Ultra", + "camera_model": "S22 ULTRA", "lens_model": "1x at 24mm", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Samsung/Samsung_S22 Ultra_24mm__4k_16by9_3840x2176-30.00fps.json b/Mobile phones/Samsung/Samsung_S22 Ultra_24mm__4k_16by9_3840x2176-30.00fps.json index 1f802cc6..5d93ddc9 100644 --- a/Mobile phones/Samsung/Samsung_S22 Ultra_24mm__4k_16by9_3840x2176-30.00fps.json +++ b/Mobile phones/Samsung/Samsung_S22 Ultra_24mm__4k_16by9_3840x2176-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "WIN2024", "camera_brand": "Samsung", - "camera_model": "S22 Ultra", + "camera_model": "S22 ULTRA", "lens_model": "24mm", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Samsung/Samsung_S22 Ultra_24mm__4k_4by3_4000x3000-30.00fps.json b/Mobile phones/Samsung/Samsung_S22 Ultra_24mm__4k_4by3_4000x3000-30.00fps.json index 1a549aae..a1699fc5 100644 --- a/Mobile phones/Samsung/Samsung_S22 Ultra_24mm__4k_4by3_4000x3000-30.00fps.json +++ b/Mobile phones/Samsung/Samsung_S22 Ultra_24mm__4k_4by3_4000x3000-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Harsh B", "camera_brand": "Samsung", - "camera_model": "S22 Ultra", + "camera_model": "S22 ULTRA", "lens_model": "24mm", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Samsung/Samsung_S22 Ultra_70mm__2.7k_4by3_3648x2736-30.01fps.json b/Mobile phones/Samsung/Samsung_S22 Ultra_70mm__2.7k_4by3_3648x2736-30.01fps.json index 6db9df25..1d6fb5b8 100644 --- a/Mobile phones/Samsung/Samsung_S22 Ultra_70mm__2.7k_4by3_3648x2736-30.01fps.json +++ b/Mobile phones/Samsung/Samsung_S22 Ultra_70mm__2.7k_4by3_3648x2736-30.01fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Andrea Ettore D'Elia", "camera_brand": "Samsung", - "camera_model": "S22 Ultra", + "camera_model": "S22 ULTRA", "lens_model": "70mm", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Samsung/Samsung_S22 ultra_108 mp__4k_16by9_3840x2160-59.84fps.json b/Mobile phones/Samsung/Samsung_S22 ultra_108 mp__4k_16by9_3840x2160-59.84fps.json index dd314833..1f751812 100644 --- a/Mobile phones/Samsung/Samsung_S22 ultra_108 mp__4k_16by9_3840x2160-59.84fps.json +++ b/Mobile phones/Samsung/Samsung_S22 ultra_108 mp__4k_16by9_3840x2160-59.84fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "U0 A597", "camera_brand": "Samsung", - "camera_model": "S22 ultra", + "camera_model": "S22 ULTRA", "lens_model": "108 mp", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Samsung/Samsung_S22 ultra_S22 ultra 24mm_24mm_4k_16by9_3840x2160-24.03fps.json b/Mobile phones/Samsung/Samsung_S22 ultra_S22 ultra 24mm_24mm_4k_16by9_3840x2160-24.03fps.json index 7a2c06b4..8e9f72e6 100644 --- a/Mobile phones/Samsung/Samsung_S22 ultra_S22 ultra 24mm_24mm_4k_16by9_3840x2160-24.03fps.json +++ b/Mobile phones/Samsung/Samsung_S22 ultra_S22 ultra 24mm_24mm_4k_16by9_3840x2160-24.03fps.json @@ -3,7 +3,7 @@ "note": "Wide stock 24mm", "calibrated_by": "Israel hernandez", "camera_brand": "Samsung", - "camera_model": "S22 ultra", + "camera_model": "S22 ULTRA", "lens_model": "S22 ultra 24mm", "camera_setting": "24mm", "calib_dimension": { diff --git a/Mobile phones/Samsung/Samsung_S22 ultra_Stock 24mm camera lens_148 shutter, , 50 iso_4k_16by9_3840x2160-24.03fps.json b/Mobile phones/Samsung/Samsung_S22 ultra_Stock 24mm camera lens_148 shutter, , 50 iso_4k_16by9_3840x2160-24.03fps.json index ead2e051..f68cd442 100644 --- a/Mobile phones/Samsung/Samsung_S22 ultra_Stock 24mm camera lens_148 shutter, , 50 iso_4k_16by9_3840x2160-24.03fps.json +++ b/Mobile phones/Samsung/Samsung_S22 ultra_Stock 24mm camera lens_148 shutter, , 50 iso_4k_16by9_3840x2160-24.03fps.json @@ -3,7 +3,7 @@ "note": "24mm", "calibrated_by": "Israel hernandez", "camera_brand": "Samsung", - "camera_model": "S22 ultra", + "camera_model": "S22 ULTRA", "lens_model": "Stock 24mm camera lens", "camera_setting": "1/48 shutter, , 50 iso", "calib_dimension": { diff --git a/Mobile phones/Samsung/Samsung_S22 ultra_T series 58mm_Tele lens_4k_16by9_3840x2160-24.03fps.json b/Mobile phones/Samsung/Samsung_S22 ultra_T series 58mm_Tele lens_4k_16by9_3840x2160-24.03fps.json index c799f892..89c07455 100644 --- a/Mobile phones/Samsung/Samsung_S22 ultra_T series 58mm_Tele lens_4k_16by9_3840x2160-24.03fps.json +++ b/Mobile phones/Samsung/Samsung_S22 ultra_T series 58mm_Tele lens_4k_16by9_3840x2160-24.03fps.json @@ -3,7 +3,7 @@ "note": "Tele lens", "calibrated_by": "Israel hernandez", "camera_brand": "Samsung", - "camera_model": "S22 ultra", + "camera_model": "S22 ULTRA", "lens_model": "T series 58mm", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Samsung/Samsung_a73___1080p_16by9_1920x1080-30.01fps.json b/Mobile phones/Samsung/Samsung_a73___1080p_16by9_1920x1080-30.01fps.json index 484a754e..9e7bddb8 100644 --- a/Mobile phones/Samsung/Samsung_a73___1080p_16by9_1920x1080-30.01fps.json +++ b/Mobile phones/Samsung/Samsung_a73___1080p_16by9_1920x1080-30.01fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "LeoBar", "camera_brand": "Samsung", - "camera_model": "a73", + "camera_model": "A73", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Samsung/Samsung_galaxy s23 ultra_230mm_4k_2.7k_16by9_3648x2048-29.99fps.json b/Mobile phones/Samsung/Samsung_galaxy s23 ultra_230mm_4k_2.7k_16by9_3648x2048-29.99fps.json index 844f0d36..0a0f3510 100644 --- a/Mobile phones/Samsung/Samsung_galaxy s23 ultra_230mm_4k_2.7k_16by9_3648x2048-29.99fps.json +++ b/Mobile phones/Samsung/Samsung_galaxy s23 ultra_230mm_4k_2.7k_16by9_3648x2048-29.99fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "tu160", "camera_brand": "Samsung", - "camera_model": "galaxy s23 ultra", + "camera_model": "Galaxy S23 Ultra", "lens_model": "230mm", "camera_setting": "4k", "calib_dimension": { diff --git a/Mobile phones/Samsung/Samsung_s10e___4k_16by9_3840x2160-59.95fps.json b/Mobile phones/Samsung/Samsung_s10e___4k_16by9_3840x2160-59.95fps.json index 618cbb8d..c8df2014 100644 --- a/Mobile phones/Samsung/Samsung_s10e___4k_16by9_3840x2160-59.95fps.json +++ b/Mobile phones/Samsung/Samsung_s10e___4k_16by9_3840x2160-59.95fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Mario Berges", "camera_brand": "Samsung", - "camera_model": "s10e", + "camera_model": "S10e", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Samsung/Samsung_s20_normal_full hd 43_1080p_16by9_1920x1080-30.00fps - zo - 2.json b/Mobile phones/Samsung/Samsung_s20_normal_full hd 43_1080p_16by9_1920x1080-30.00fps - zo - 2.json index 1b848764..6f046e77 100644 --- a/Mobile phones/Samsung/Samsung_s20_normal_full hd 43_1080p_16by9_1920x1080-30.00fps - zo - 2.json +++ b/Mobile phones/Samsung/Samsung_s20_normal_full hd 43_1080p_16by9_1920x1080-30.00fps - zo - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "zo", "camera_brand": "Samsung", - "camera_model": "s20", + "camera_model": "S20", "lens_model": "normal", "camera_setting": "full hd 4/3", "calib_dimension": { diff --git a/Mobile phones/Samsung/Samsung_s20_normal_full hd 43_1080p_16by9_1920x1080-30.00fps.json b/Mobile phones/Samsung/Samsung_s20_normal_full hd 43_1080p_16by9_1920x1080-30.00fps.json index 01b1b241..ba049b69 100644 --- a/Mobile phones/Samsung/Samsung_s20_normal_full hd 43_1080p_16by9_1920x1080-30.00fps.json +++ b/Mobile phones/Samsung/Samsung_s20_normal_full hd 43_1080p_16by9_1920x1080-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "zo", "camera_brand": "Samsung", - "camera_model": "s20", + "camera_model": "S20", "lens_model": "normal", "camera_setting": "full hd 4/3", "calib_dimension": { diff --git a/Mobile phones/Sony/Sony_Xperia 1 iii_25mm__2k_3by2_2016x1344-23.98fps.json b/Mobile phones/Sony/Sony_Xperia 1 iii_25mm__2k_3by2_2016x1344-23.98fps.json index 3934a6a9..de6f67c6 100644 --- a/Mobile phones/Sony/Sony_Xperia 1 iii_25mm__2k_3by2_2016x1344-23.98fps.json +++ b/Mobile phones/Sony/Sony_Xperia 1 iii_25mm__2k_3by2_2016x1344-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "9OKER", "camera_brand": "Sony", - "camera_model": "Xperia 1 iii", + "camera_model": "Xperia 1 III", "lens_model": "25mm", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Sony/Sony_Xperia 1 iii_74mm__2k_3by2_2016x1344-24.00fps.json b/Mobile phones/Sony/Sony_Xperia 1 iii_74mm__2k_3by2_2016x1344-24.00fps.json index 3f9fa842..cdd592e1 100644 --- a/Mobile phones/Sony/Sony_Xperia 1 iii_74mm__2k_3by2_2016x1344-24.00fps.json +++ b/Mobile phones/Sony/Sony_Xperia 1 iii_74mm__2k_3by2_2016x1344-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "9OKER", "camera_brand": "Sony", - "camera_model": "Xperia 1 iii", + "camera_model": "Xperia 1 III", "lens_model": "74mm", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Sony/Sony_Xperia 5ii_60mm_MotionCam_C4k_16by9_4288x2432-23.78fps.json b/Mobile phones/Sony/Sony_Xperia 5ii_60mm_MotionCam_C4k_16by9_4288x2432-23.78fps.json index 0cc9a530..e3dfcf28 100644 --- a/Mobile phones/Sony/Sony_Xperia 5ii_60mm_MotionCam_C4k_16by9_4288x2432-23.78fps.json +++ b/Mobile phones/Sony/Sony_Xperia 5ii_60mm_MotionCam_C4k_16by9_4288x2432-23.78fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eilie Hallak", "camera_brand": "Sony", - "camera_model": "Xperia 5ii", + "camera_model": "Xperia 5II", "lens_model": "60mm", "camera_setting": "MotionCam", "calib_dimension": { diff --git a/Mobile phones/Sony/Sony_Xperia Pro-i_Main 25mm_Motion Cam Pro CinemaDNG_C4k_2.38by1_4032x1692-29.97fps.json b/Mobile phones/Sony/Sony_Xperia Pro-i_Main 25mm_Motion Cam Pro CinemaDNG_C4k_2.38by1_4032x1692-29.97fps.json index 31ba922b..653bd6f5 100644 --- a/Mobile phones/Sony/Sony_Xperia Pro-i_Main 25mm_Motion Cam Pro CinemaDNG_C4k_2.38by1_4032x1692-29.97fps.json +++ b/Mobile phones/Sony/Sony_Xperia Pro-i_Main 25mm_Motion Cam Pro CinemaDNG_C4k_2.38by1_4032x1692-29.97fps.json @@ -3,7 +3,7 @@ "note": "Motion Cam Pro CinemaDNG", "calibrated_by": "Janne Linna", "camera_brand": "Sony", - "camera_model": "Xperia Pro-i", + "camera_model": "Xperia PRO-I", "lens_model": "Main 25mm", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Sony/sony_xperia 5II_ultra wide_stabilization off_1080p_16by9_1920x1080-29.98fps.json b/Mobile phones/Sony/sony_xperia 5II_ultra wide_stabilization off_1080p_16by9_1920x1080-29.98fps.json index da27675d..ae8b504c 100644 --- a/Mobile phones/Sony/sony_xperia 5II_ultra wide_stabilization off_1080p_16by9_1920x1080-29.98fps.json +++ b/Mobile phones/Sony/sony_xperia 5II_ultra wide_stabilization off_1080p_16by9_1920x1080-29.98fps.json @@ -2,8 +2,8 @@ "name": "sony_xperia 5II_ultra wide_stabilization off_1080p_16by9_1920x1080-29.98fps", "note": "", "calibrated_by": "Hajime T", - "camera_brand": "sony", - "camera_model": "xperia 5II", + "camera_brand": "Sony", + "camera_model": "Xperia 5II", "lens_model": "ultra wide", "camera_setting": "stabilization off", "calib_dimension": { diff --git a/Mobile phones/Vivo/VIVO_IQOO 9_26MM_AUTO_4k_16by9_3840x2176-30.00fps.json b/Mobile phones/Vivo/VIVO_IQOO 9_26MM_AUTO_4k_16by9_3840x2176-30.00fps.json index b5ea2a3c..79623066 100644 --- a/Mobile phones/Vivo/VIVO_IQOO 9_26MM_AUTO_4k_16by9_3840x2176-30.00fps.json +++ b/Mobile phones/Vivo/VIVO_IQOO 9_26MM_AUTO_4k_16by9_3840x2176-30.00fps.json @@ -2,7 +2,7 @@ "name": "VIVO_IQOO 9_26MM_AUTO_4k_16by9_3840x2176-30.00fps", "note": "", "calibrated_by": "Bikram Panda", - "camera_brand": "VIVO", + "camera_brand": "Vivo", "camera_model": "IQOO 9", "lens_model": "26MM", "camera_setting": "AUTO", diff --git a/Mobile phones/Vivo/VIVO_V23 5G___1080p_16by9_1920x1080-29.86fps.json b/Mobile phones/Vivo/VIVO_V23 5G___1080p_16by9_1920x1080-29.86fps.json index b0ac45fb..68efb42e 100644 --- a/Mobile phones/Vivo/VIVO_V23 5G___1080p_16by9_1920x1080-29.86fps.json +++ b/Mobile phones/Vivo/VIVO_V23 5G___1080p_16by9_1920x1080-29.86fps.json @@ -2,7 +2,7 @@ "name": "VIVO_V23 5G___1080p_16by9_1920x1080-29.86fps", "note": "", "calibrated_by": "Carl Lucido", - "camera_brand": "VIVO", + "camera_brand": "Vivo", "camera_model": "V23 5G", "lens_model": "", "camera_setting": "", diff --git a/Mobile phones/Vivo/VIVO_v27e_Custom_1980x1020_1080p_16by9_1920x1088-24.00fps.json b/Mobile phones/Vivo/VIVO_v27e_Custom_1980x1020_1080p_16by9_1920x1088-24.00fps.json index 87957e14..ca0cad90 100644 --- a/Mobile phones/Vivo/VIVO_v27e_Custom_1980x1020_1080p_16by9_1920x1088-24.00fps.json +++ b/Mobile phones/Vivo/VIVO_v27e_Custom_1980x1020_1080p_16by9_1920x1088-24.00fps.json @@ -2,7 +2,7 @@ "name": "VIVO_v27e_Custom_1980x1020_1080p_16by9_1920x1088-24.00fps", "note": "24 fps", "calibrated_by": "Алексей Лобанов", - "camera_brand": "VIVO", + "camera_brand": "Vivo", "camera_model": "v27e", "lens_model": "Custom", "camera_setting": "1980x1020", diff --git a/Mobile phones/Vivo/VIVO_x90 Pro+_1x__4k_16by9_3840x2160-119.88fps.json b/Mobile phones/Vivo/VIVO_x90 Pro+_1x__4k_16by9_3840x2160-119.88fps.json index 876ac735..9eb8f071 100644 --- a/Mobile phones/Vivo/VIVO_x90 Pro+_1x__4k_16by9_3840x2160-119.88fps.json +++ b/Mobile phones/Vivo/VIVO_x90 Pro+_1x__4k_16by9_3840x2160-119.88fps.json @@ -2,7 +2,7 @@ "name": "VIVO_x90 Pro+_1x__4k_16by9_3840x2160-119.88fps", "note": "", "calibrated_by": "Max Gong", - "camera_brand": "VIVO", + "camera_brand": "Vivo", "camera_model": "x90 Pro+", "lens_model": "1x", "camera_setting": "", diff --git a/Mobile phones/Vivo/VIVO_x90 Pro+___4k_16by9_3840x2160-29.98fps.json b/Mobile phones/Vivo/VIVO_x90 Pro+___4k_16by9_3840x2160-29.98fps.json index 58eadc25..57025244 100644 --- a/Mobile phones/Vivo/VIVO_x90 Pro+___4k_16by9_3840x2160-29.98fps.json +++ b/Mobile phones/Vivo/VIVO_x90 Pro+___4k_16by9_3840x2160-29.98fps.json @@ -2,7 +2,7 @@ "name": "VIVO_x90 Pro+_主摄__4k_16by9_3840x2160-29.98fps", "note": "", "calibrated_by": "o'r p", - "camera_brand": "VIVO", + "camera_brand": "Vivo", "camera_model": "x90 Pro+", "lens_model": "主摄", "camera_setting": "", diff --git a/Mobile phones/Vivo/Vivo_x100pro_24mm__4k_16by9_3840x2176-30.00fps.json b/Mobile phones/Vivo/Vivo_x100pro_24mm__4k_16by9_3840x2176-30.00fps.json index 42b0403b..ee895346 100644 --- a/Mobile phones/Vivo/Vivo_x100pro_24mm__4k_16by9_3840x2176-30.00fps.json +++ b/Mobile phones/Vivo/Vivo_x100pro_24mm__4k_16by9_3840x2176-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Vladimir", "camera_brand": "Vivo", - "camera_model": "x100pro", + "camera_model": "X100Pro", "lens_model": "24mm", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Vivo/Vivo_x50_main_camera_mcpro24fps_2.7k_4by3_3264x2448-29.94fps.json b/Mobile phones/Vivo/Vivo_x50_main_camera_mcpro24fps_2.7k_4by3_3264x2448-29.94fps.json index 0e0e0724..5b8891b1 100644 --- a/Mobile phones/Vivo/Vivo_x50_main_camera_mcpro24fps_2.7k_4by3_3264x2448-29.94fps.json +++ b/Mobile phones/Vivo/Vivo_x50_main_camera_mcpro24fps_2.7k_4by3_3264x2448-29.94fps.json @@ -3,7 +3,7 @@ "note": "4:3", "calibrated_by": "Endless Maker", "camera_brand": "Vivo", - "camera_model": "x50", + "camera_model": "X50", "lens_model": "main_camera", "camera_setting": "mcpro24fps", "calib_dimension": { diff --git a/Mobile phones/Vivo/Vivo_x90pro+_imx989__4k_16by9_3840x2160-60.06fps.json b/Mobile phones/Vivo/Vivo_x90pro+_imx989__4k_16by9_3840x2160-60.06fps.json index 8f4f4179..02195616 100644 --- a/Mobile phones/Vivo/Vivo_x90pro+_imx989__4k_16by9_3840x2160-60.06fps.json +++ b/Mobile phones/Vivo/Vivo_x90pro+_imx989__4k_16by9_3840x2160-60.06fps.json @@ -7,7 +7,7 @@ "calibrated_by": "skamannpaul", "calibrator_version": "1.5.4", "camera_brand": "Vivo", - "camera_model": "x90pro+", + "camera_model": "X90Pro+", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Mobile phones/Xiaomi/Redmi_Note 13 Pro 5g_UW 16mm_3.2K_2.7k_16by9_3280x1840-24.00fps.json b/Mobile phones/Xiaomi/Redmi_Note 13 Pro 5g_UW 16mm_3.2K_2.7k_16by9_3280x1840-24.00fps.json index 37e484e2..1fd4ad44 100644 --- a/Mobile phones/Xiaomi/Redmi_Note 13 Pro 5g_UW 16mm_3.2K_2.7k_16by9_3280x1840-24.00fps.json +++ b/Mobile phones/Xiaomi/Redmi_Note 13 Pro 5g_UW 16mm_3.2K_2.7k_16by9_3280x1840-24.00fps.json @@ -3,7 +3,7 @@ "note": "Sensor Width 16:9", "calibrated_by": "Héctor Maturana", "camera_brand": "Redmi", - "camera_model": "Note 13 Pro 5g", + "camera_model": "Note 13 Pro 5G", "lens_model": "UW 16mm", "camera_setting": "3.2K", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Redmi_Note 13 Pro 5g_UW 16mm_3.2K_2.7k_2.38by1_3280x1376-24.00fps.json b/Mobile phones/Xiaomi/Redmi_Note 13 Pro 5g_UW 16mm_3.2K_2.7k_2.38by1_3280x1376-24.00fps.json index f8fc144e..0b0afe57 100644 --- a/Mobile phones/Xiaomi/Redmi_Note 13 Pro 5g_UW 16mm_3.2K_2.7k_2.38by1_3280x1376-24.00fps.json +++ b/Mobile phones/Xiaomi/Redmi_Note 13 Pro 5g_UW 16mm_3.2K_2.7k_2.38by1_3280x1376-24.00fps.json @@ -3,7 +3,7 @@ "note": "Sensor Width 2.37", "calibrated_by": "Héctor Maturana", "camera_brand": "Redmi", - "camera_model": "Note 13 Pro 5g", + "camera_model": "Note 13 Pro 5G", "lens_model": "UW 16mm", "camera_setting": "3.2K", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Redmi_Note 13 Pro 5g_W 24mm_Sensor Width 16_9_C4k_16by9_4080x2292-24.00fps.json b/Mobile phones/Xiaomi/Redmi_Note 13 Pro 5g_W 24mm_Sensor Width 16_9_C4k_16by9_4080x2292-24.00fps.json index 91ff881c..bc9e6b5f 100644 --- a/Mobile phones/Xiaomi/Redmi_Note 13 Pro 5g_W 24mm_Sensor Width 16_9_C4k_16by9_4080x2292-24.00fps.json +++ b/Mobile phones/Xiaomi/Redmi_Note 13 Pro 5g_W 24mm_Sensor Width 16_9_C4k_16by9_4080x2292-24.00fps.json @@ -3,7 +3,7 @@ "note": "Sensor Width 16:9", "calibrated_by": "Héctor Maturana", "camera_brand": "Redmi", - "camera_model": "Note 13 Pro 5g", + "camera_model": "Note 13 Pro 5G", "lens_model": "W 24mm", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Redmi_Note 13 Pro 5g_W 24mm_Sensor Width 2.37_C4k_2.37by1_4080x1724-24.00fps.json b/Mobile phones/Xiaomi/Redmi_Note 13 Pro 5g_W 24mm_Sensor Width 2.37_C4k_2.37by1_4080x1724-24.00fps.json index c3f324cd..cde3380c 100644 --- a/Mobile phones/Xiaomi/Redmi_Note 13 Pro 5g_W 24mm_Sensor Width 2.37_C4k_2.37by1_4080x1724-24.00fps.json +++ b/Mobile phones/Xiaomi/Redmi_Note 13 Pro 5g_W 24mm_Sensor Width 2.37_C4k_2.37by1_4080x1724-24.00fps.json @@ -3,7 +3,7 @@ "note": "Sensor Width 2.37", "calibrated_by": "Héctor Maturana", "camera_brand": "Redmi", - "camera_model": "Note 13 Pro 5g", + "camera_model": "Note 13 Pro 5G", "lens_model": "W 24mm", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Redmi_k60__64mp+8mp+2mp_480p_16by9_960x544-30.00fps.json b/Mobile phones/Xiaomi/Redmi_k60__64mp+8mp+2mp_480p_16by9_960x544-30.00fps.json index a8282b35..cd48a45b 100644 --- a/Mobile phones/Xiaomi/Redmi_k60__64mp+8mp+2mp_480p_16by9_960x544-30.00fps.json +++ b/Mobile phones/Xiaomi/Redmi_k60__64mp+8mp+2mp_480p_16by9_960x544-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "胡锦冬", "camera_brand": "Redmi", - "camera_model": "k60", + "camera_model": "K60", "lens_model": "", "camera_setting": "64mp+8mp+2mp", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Redmi_note 13_ultra wide 15mm__1080p_16by9_1920x1080-30.03fps.json b/Mobile phones/Xiaomi/Redmi_note 13_ultra wide 15mm__1080p_16by9_1920x1080-30.03fps.json index bbafa47a..5c7d5e25 100644 --- a/Mobile phones/Xiaomi/Redmi_note 13_ultra wide 15mm__1080p_16by9_1920x1080-30.03fps.json +++ b/Mobile phones/Xiaomi/Redmi_note 13_ultra wide 15mm__1080p_16by9_1920x1080-30.03fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Emmanuel", "camera_brand": "Redmi", - "camera_model": "note 13", + "camera_model": "Note 13", "lens_model": "ultra wide 15mm", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Redmi_note 13_wide 24mm_30 fps_1080p_16by9_1920x1080-29.30fps.json b/Mobile phones/Xiaomi/Redmi_note 13_wide 24mm_30 fps_1080p_16by9_1920x1080-29.30fps.json index 5e33ab4d..ee9363bf 100644 --- a/Mobile phones/Xiaomi/Redmi_note 13_wide 24mm_30 fps_1080p_16by9_1920x1080-29.30fps.json +++ b/Mobile phones/Xiaomi/Redmi_note 13_wide 24mm_30 fps_1080p_16by9_1920x1080-29.30fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Emmanuel", "camera_brand": "Redmi", - "camera_model": "note 13", + "camera_model": "Note 13", "lens_model": "wide 24mm", "camera_setting": "30 fps", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Redmi_note 13_wide 24mm__720p_16by9_1280x720-120.38fps.json b/Mobile phones/Xiaomi/Redmi_note 13_wide 24mm__720p_16by9_1280x720-120.38fps.json index d5b86466..bdd399ce 100644 --- a/Mobile phones/Xiaomi/Redmi_note 13_wide 24mm__720p_16by9_1280x720-120.38fps.json +++ b/Mobile phones/Xiaomi/Redmi_note 13_wide 24mm__720p_16by9_1280x720-120.38fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Emmanuel", "camera_brand": "Redmi", - "camera_model": "note 13", + "camera_model": "Note 13", "lens_model": "wide 24mm", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Redmi_note 13_wide 24mm_vertical 90 degree_1080p_16by9_1920x1080-29.80fps.json b/Mobile phones/Xiaomi/Redmi_note 13_wide 24mm_vertical 90 degree_1080p_16by9_1920x1080-29.80fps.json index 860ecad7..0834d7c3 100644 --- a/Mobile phones/Xiaomi/Redmi_note 13_wide 24mm_vertical 90 degree_1080p_16by9_1920x1080-29.80fps.json +++ b/Mobile phones/Xiaomi/Redmi_note 13_wide 24mm_vertical 90 degree_1080p_16by9_1920x1080-29.80fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Emmanuel", "camera_brand": "Redmi", - "camera_model": "note 13", + "camera_model": "Note 13", "lens_model": "wide 24mm", "camera_setting": "vertical 90 degree", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Xiaomi_10s___4k_16by9_3840x2160-60.06fps.json b/Mobile phones/Xiaomi/Xiaomi_10s___4k_16by9_3840x2160-60.06fps.json index 52284f92..42b16318 100644 --- a/Mobile phones/Xiaomi/Xiaomi_10s___4k_16by9_3840x2160-60.06fps.json +++ b/Mobile phones/Xiaomi/Xiaomi_10s___4k_16by9_3840x2160-60.06fps.json @@ -3,7 +3,7 @@ "note": "主摄像头", "calibrated_by": "Fanke", "camera_brand": "Xiaomi", - "camera_model": "10s", + "camera_model": "10S", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Xiaomi_11 Ultra_xiaomi 11 ultra_normal_1080p_16by9_1920x1080-60.03fps - Charles.json b/Mobile phones/Xiaomi/Xiaomi_11 Ultra_xiaomi 11 ultra_normal_1080p_16by9_1920x1080-60.03fps - Charles.json index 61e3e985..d94598aa 100644 --- a/Mobile phones/Xiaomi/Xiaomi_11 Ultra_xiaomi 11 ultra_normal_1080p_16by9_1920x1080-60.03fps - Charles.json +++ b/Mobile phones/Xiaomi/Xiaomi_11 Ultra_xiaomi 11 ultra_normal_1080p_16by9_1920x1080-60.03fps - Charles.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Charles", "camera_brand": "Xiaomi", - "camera_model": "11 Ultra", + "camera_model": "11 ULTRA", "lens_model": "xiaomi 11 ultra", "camera_setting": "normal", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Xiaomi_11 Ultra_xiaomi 11 ultra_normal_1080p_16by9_1920x1080-60.03fps.json b/Mobile phones/Xiaomi/Xiaomi_11 Ultra_xiaomi 11 ultra_normal_1080p_16by9_1920x1080-60.03fps.json index 17d682f7..a5547330 100644 --- a/Mobile phones/Xiaomi/Xiaomi_11 Ultra_xiaomi 11 ultra_normal_1080p_16by9_1920x1080-60.03fps.json +++ b/Mobile phones/Xiaomi/Xiaomi_11 Ultra_xiaomi 11 ultra_normal_1080p_16by9_1920x1080-60.03fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Charles", "camera_brand": "Xiaomi", - "camera_model": "11 Ultra", + "camera_model": "11 ULTRA", "lens_model": "xiaomi 11 ultra", "camera_setting": "normal", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Xiaomi_12T pro___4k_16by9_3840x2160-30.00fps.json b/Mobile phones/Xiaomi/Xiaomi_12T pro___4k_16by9_3840x2160-30.00fps.json index cd40c530..c021c53b 100644 --- a/Mobile phones/Xiaomi/Xiaomi_12T pro___4k_16by9_3840x2160-30.00fps.json +++ b/Mobile phones/Xiaomi/Xiaomi_12T pro___4k_16by9_3840x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Чесноков Антон Юрьевич", "camera_brand": "Xiaomi", - "camera_model": "12T pro", + "camera_model": "12T Pro", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Xiaomi_13 ultra_23mm_vertical full sensor_C4k_4by3_4096x3072-30.01fps.json b/Mobile phones/Xiaomi/Xiaomi_13 ultra_23mm_vertical full sensor_C4k_4by3_4096x3072-30.01fps.json index e7a80afe..cceff78a 100644 --- a/Mobile phones/Xiaomi/Xiaomi_13 ultra_23mm_vertical full sensor_C4k_4by3_4096x3072-30.01fps.json +++ b/Mobile phones/Xiaomi/Xiaomi_13 ultra_23mm_vertical full sensor_C4k_4by3_4096x3072-30.01fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "SuperPC", "camera_brand": "Xiaomi", - "camera_model": "13 ultra", + "camera_model": "13 Ultra", "lens_model": "23mm", "camera_setting": "vertical full sensor", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Xiaomi_13 ultra_62mm__2.7k_4by3_3072x2304-58.23fps.json b/Mobile phones/Xiaomi/Xiaomi_13 ultra_62mm__2.7k_4by3_3072x2304-58.23fps.json index 8f2141af..ed41f585 100644 --- a/Mobile phones/Xiaomi/Xiaomi_13 ultra_62mm__2.7k_4by3_3072x2304-58.23fps.json +++ b/Mobile phones/Xiaomi/Xiaomi_13 ultra_62mm__2.7k_4by3_3072x2304-58.23fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "咕咕咕", "camera_brand": "Xiaomi", - "camera_model": "13 ultra", + "camera_model": "13 Ultra", "lens_model": "62mm", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Xiaomi_13 ultra_62mm__C4k_4by3_4096x3072-25.16fps.json b/Mobile phones/Xiaomi/Xiaomi_13 ultra_62mm__C4k_4by3_4096x3072-25.16fps.json index 09d170dc..4b61b1aa 100644 --- a/Mobile phones/Xiaomi/Xiaomi_13 ultra_62mm__C4k_4by3_4096x3072-25.16fps.json +++ b/Mobile phones/Xiaomi/Xiaomi_13 ultra_62mm__C4k_4by3_4096x3072-25.16fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "咕咕咕", "camera_brand": "Xiaomi", - "camera_model": "13 ultra", + "camera_model": "13 Ultra", "lens_model": "62mm", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Xiaomi_13 ultra_main_23mm_C4k_2by1_4096x2048-30.01fps.json b/Mobile phones/Xiaomi/Xiaomi_13 ultra_main_23mm_C4k_2by1_4096x2048-30.01fps.json index a1295947..57cd6063 100644 --- a/Mobile phones/Xiaomi/Xiaomi_13 ultra_main_23mm_C4k_2by1_4096x2048-30.01fps.json +++ b/Mobile phones/Xiaomi/Xiaomi_13 ultra_main_23mm_C4k_2by1_4096x2048-30.01fps.json @@ -3,7 +3,7 @@ "note": "motion camera", "calibrated_by": "hans", "camera_brand": "Xiaomi", - "camera_model": "13 ultra", + "camera_model": "13 Ultra", "lens_model": "main", "camera_setting": "23mm", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Xiaomi_13u___4k_16by9_3840x2176-30.01fps.json b/Mobile phones/Xiaomi/Xiaomi_13u___4k_16by9_3840x2176-30.01fps.json index b7c249ed..8b42e944 100644 --- a/Mobile phones/Xiaomi/Xiaomi_13u___4k_16by9_3840x2176-30.01fps.json +++ b/Mobile phones/Xiaomi/Xiaomi_13u___4k_16by9_3840x2176-30.01fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "SuperUser", "camera_brand": "Xiaomi", - "camera_model": "13u", + "camera_model": "13U", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Xiaomi_Mi 10 pro_14mm ultrawide_Ultrawide -3840__4k_16by9_3840x2160-24.00fps.json b/Mobile phones/Xiaomi/Xiaomi_Mi 10 pro_14mm ultrawide_Ultrawide -3840__4k_16by9_3840x2160-24.00fps.json index fbc6fc30..edf40e41 100644 --- a/Mobile phones/Xiaomi/Xiaomi_Mi 10 pro_14mm ultrawide_Ultrawide -3840__4k_16by9_3840x2160-24.00fps.json +++ b/Mobile phones/Xiaomi/Xiaomi_Mi 10 pro_14mm ultrawide_Ultrawide -3840__4k_16by9_3840x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "U0 A326", "camera_brand": "Xiaomi", - "camera_model": "Mi 10 pro", + "camera_model": "Mi 10 Pro", "lens_model": "14mm ultrawide", "camera_setting": "Ultrawide -3840*", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Xiaomi_Mi 10T Pro_108MP 1080p Main__1080p_16by9_1926x1084-24.02fps.json b/Mobile phones/Xiaomi/Xiaomi_Mi 10T Pro_108MP 1080p Main__1080p_16by9_1926x1084-24.02fps.json index 20a67697..e6f76076 100644 --- a/Mobile phones/Xiaomi/Xiaomi_Mi 10T Pro_108MP 1080p Main__1080p_16by9_1926x1084-24.02fps.json +++ b/Mobile phones/Xiaomi/Xiaomi_Mi 10T Pro_108MP 1080p Main__1080p_16by9_1926x1084-24.02fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Muhamad Ardiyansah", "camera_brand": "Xiaomi", - "camera_model": "Mi 10T Pro", + "camera_model": "Mi 10T PRO", "lens_model": "108MP 1080p Main", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Xiaomi_Mi 11 Ultra_Main 50 MP, f2.0, 24mm (wide)_MotionCam Pro_4k_16by9_3840x2160-60.01fps.json b/Mobile phones/Xiaomi/Xiaomi_Mi 11 Ultra_Main 50 MP, f2.0, 24mm (wide)_MotionCam Pro_4k_16by9_3840x2160-60.01fps.json index 1dd1e2d3..57e257e2 100644 --- a/Mobile phones/Xiaomi/Xiaomi_Mi 11 Ultra_Main 50 MP, f2.0, 24mm (wide)_MotionCam Pro_4k_16by9_3840x2160-60.01fps.json +++ b/Mobile phones/Xiaomi/Xiaomi_Mi 11 Ultra_Main 50 MP, f2.0, 24mm (wide)_MotionCam Pro_4k_16by9_3840x2160-60.01fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Alexey Koptev", "camera_brand": "Xiaomi", - "camera_model": "Mi 11 Ultra", + "camera_model": "MI 11 Ultra", "lens_model": "Main 50 MP, f/2.0, 24mm (wide)", "camera_setting": "MotionCam Pro", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Xiaomi_Mi 9T Pro_Ultra Wide (0.6x)_Distortion correction OFF_4k_16by9_3840x2160-30.00fps.json b/Mobile phones/Xiaomi/Xiaomi_Mi 9T Pro_Ultra Wide (0.6x)_Distortion correction OFF_4k_16by9_3840x2160-30.00fps.json index 52dde4d1..5294ef56 100644 --- a/Mobile phones/Xiaomi/Xiaomi_Mi 9T Pro_Ultra Wide (0.6x)_Distortion correction OFF_4k_16by9_3840x2160-30.00fps.json +++ b/Mobile phones/Xiaomi/Xiaomi_Mi 9T Pro_Ultra Wide (0.6x)_Distortion correction OFF_4k_16by9_3840x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "4k30", "calibrated_by": "Herbert Santos", "camera_brand": "Xiaomi", - "camera_model": "Mi 9T Pro", + "camera_model": "MI 9T Pro", "lens_model": "Ultra Wide (0.6x)", "camera_setting": "Distortion correction OFF", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Xiaomi_Mi 9T Pro_Wide__4k_16by9_3840x2160-59.18fps.json b/Mobile phones/Xiaomi/Xiaomi_Mi 9T Pro_Wide__4k_16by9_3840x2160-59.18fps.json index 321e608a..7c554810 100644 --- a/Mobile phones/Xiaomi/Xiaomi_Mi 9T Pro_Wide__4k_16by9_3840x2160-59.18fps.json +++ b/Mobile phones/Xiaomi/Xiaomi_Mi 9T Pro_Wide__4k_16by9_3840x2160-59.18fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Herbert Santos", "camera_brand": "Xiaomi", - "camera_model": "Mi 9T Pro", + "camera_model": "MI 9T Pro", "lens_model": "Wide", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Xiaomi_Mi Action camera 4k_16_9__1080p_16by9_1920x1080-100.00fps.json b/Mobile phones/Xiaomi/Xiaomi_Mi Action camera 4k_16_9__1080p_16by9_1920x1080-100.00fps.json index 8781c7a6..457a71a3 100644 --- a/Mobile phones/Xiaomi/Xiaomi_Mi Action camera 4k_16_9__1080p_16by9_1920x1080-100.00fps.json +++ b/Mobile phones/Xiaomi/Xiaomi_Mi Action camera 4k_16_9__1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "U0 A71", "camera_brand": "Xiaomi", - "camera_model": "Mi Action camera 4k", + "camera_model": "Mi Action Camera 4k", "lens_model": "16:9", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Xiaomi_Mi Action camera 4k_9_16__1080p_16by9_1920x1080-100.00fps.json b/Mobile phones/Xiaomi/Xiaomi_Mi Action camera 4k_9_16__1080p_16by9_1920x1080-100.00fps.json index 1775bd35..6c753ed0 100644 --- a/Mobile phones/Xiaomi/Xiaomi_Mi Action camera 4k_9_16__1080p_16by9_1920x1080-100.00fps.json +++ b/Mobile phones/Xiaomi/Xiaomi_Mi Action camera 4k_9_16__1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Demon", "camera_brand": "Xiaomi", - "camera_model": "Mi Action camera 4k", + "camera_model": "Mi Action Camera 4k", "lens_model": "9:16", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Xiaomi_Redmi Note 8 Pro___1080p_16by9_1920x1080-29.61fps.json b/Mobile phones/Xiaomi/Xiaomi_Redmi Note 8 Pro___1080p_16by9_1920x1080-29.61fps.json index 97d45107..576bda77 100644 --- a/Mobile phones/Xiaomi/Xiaomi_Redmi Note 8 Pro___1080p_16by9_1920x1080-29.61fps.json +++ b/Mobile phones/Xiaomi/Xiaomi_Redmi Note 8 Pro___1080p_16by9_1920x1080-29.61fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Proto Type", "camera_brand": "Xiaomi", - "camera_model": "Redmi Note 8 Pro", + "camera_model": "Redmi Note 8 PRO", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Xiaomi_Redmi Note 8 Pro___1080p_16by9_1920x1080-30.00fps.json b/Mobile phones/Xiaomi/Xiaomi_Redmi Note 8 Pro___1080p_16by9_1920x1080-30.00fps.json index 3b0fc7fc..883e1e5b 100644 --- a/Mobile phones/Xiaomi/Xiaomi_Redmi Note 8 Pro___1080p_16by9_1920x1080-30.00fps.json +++ b/Mobile phones/Xiaomi/Xiaomi_Redmi Note 8 Pro___1080p_16by9_1920x1080-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Proto Type", "camera_brand": "Xiaomi", - "camera_model": "Redmi Note 8 Pro", + "camera_model": "Redmi Note 8 PRO", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Xiaomi_Redmi Note 8 Pro___4k_16by9_3840x2160-30.00fps.json b/Mobile phones/Xiaomi/Xiaomi_Redmi Note 8 Pro___4k_16by9_3840x2160-30.00fps.json index 262e0ea8..93ff081b 100644 --- a/Mobile phones/Xiaomi/Xiaomi_Redmi Note 8 Pro___4k_16by9_3840x2160-30.00fps.json +++ b/Mobile phones/Xiaomi/Xiaomi_Redmi Note 8 Pro___4k_16by9_3840x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Osama Khan", "camera_brand": "Xiaomi", - "camera_model": "Redmi Note 8 Pro", + "camera_model": "Redmi Note 8 PRO", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Xiaomi_Redmi note 12 pro + 5g ___1080p_16by9_1920x1080-30.00fps - U0 A320.json b/Mobile phones/Xiaomi/Xiaomi_Redmi note 12 pro + 5g ___1080p_16by9_1920x1080-30.00fps - U0 A320.json index 75ce7570..f2c81df5 100644 --- a/Mobile phones/Xiaomi/Xiaomi_Redmi note 12 pro + 5g ___1080p_16by9_1920x1080-30.00fps - U0 A320.json +++ b/Mobile phones/Xiaomi/Xiaomi_Redmi note 12 pro + 5g ___1080p_16by9_1920x1080-30.00fps - U0 A320.json @@ -7,7 +7,7 @@ "calibrated_by": "U0 A320", "calibrator_version": "1.5.4", "camera_brand": "Xiaomi", - "camera_model": "Redmi note 12 pro + 5g ", + "camera_model": "Redmi note 12 pro + 5g", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Mobile phones/Xiaomi/Xiaomi_Redmi note 7_Main lens__720p_16by9_1280x720-30.01fps.json b/Mobile phones/Xiaomi/Xiaomi_Redmi note 7_Main lens__720p_16by9_1280x720-30.01fps.json index 87fd629a..de512e1d 100644 --- a/Mobile phones/Xiaomi/Xiaomi_Redmi note 7_Main lens__720p_16by9_1280x720-30.01fps.json +++ b/Mobile phones/Xiaomi/Xiaomi_Redmi note 7_Main lens__720p_16by9_1280x720-30.01fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Bogdan", "camera_brand": "Xiaomi", - "camera_model": "Redmi note 7", + "camera_model": "Redmi Note 7", "lens_model": "Main lens", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Xiaomi_Redmi note 9 Pro___480p_3by4_1080x1440-30.15fps.json b/Mobile phones/Xiaomi/Xiaomi_Redmi note 9 Pro___480p_3by4_1080x1440-30.15fps.json index c5383903..8c3835c8 100644 --- a/Mobile phones/Xiaomi/Xiaomi_Redmi note 9 Pro___480p_3by4_1080x1440-30.15fps.json +++ b/Mobile phones/Xiaomi/Xiaomi_Redmi note 9 Pro___480p_3by4_1080x1440-30.15fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "SS", "camera_brand": "Xiaomi", - "camera_model": "Redmi note 9 Pro", + "camera_model": "Redmi Note 9 Pro", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Xiaomi_mi 10t_26mm wide_motioncam raw_4k_16by9_3840x2160-24.02fps.json b/Mobile phones/Xiaomi/Xiaomi_mi 10t_26mm wide_motioncam raw_4k_16by9_3840x2160-24.02fps.json index 73ea570a..29c8526f 100644 --- a/Mobile phones/Xiaomi/Xiaomi_mi 10t_26mm wide_motioncam raw_4k_16by9_3840x2160-24.02fps.json +++ b/Mobile phones/Xiaomi/Xiaomi_mi 10t_26mm wide_motioncam raw_4k_16by9_3840x2160-24.02fps.json @@ -3,7 +3,7 @@ "note": "motioncam raw", "calibrated_by": "Yogansh Bhatt", "camera_brand": "Xiaomi", - "camera_model": "mi 10t", + "camera_model": "Mi 10T", "lens_model": "26mm wide", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/Xiaomi/Xiaomi_mi 10t_uw__4k_16by9_3840x2160-30.03fps.json b/Mobile phones/Xiaomi/Xiaomi_mi 10t_uw__4k_16by9_3840x2160-30.03fps.json index 502962b2..e32f5345 100644 --- a/Mobile phones/Xiaomi/Xiaomi_mi 10t_uw__4k_16by9_3840x2160-30.03fps.json +++ b/Mobile phones/Xiaomi/Xiaomi_mi 10t_uw__4k_16by9_3840x2160-30.03fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "mehmet ekici", "camera_brand": "Xiaomi", - "camera_model": "mi 10t", + "camera_model": "Mi 10T", "lens_model": "uw", "camera_setting": "", "calib_dimension": { diff --git a/Mobile phones/ZTE_nubia z50 ultra_35mm__C4k_4by3_4640x3488-23.99fps.json b/Mobile phones/ZTE_nubia z50 ultra_35mm__C4k_4by3_4640x3488-23.99fps.json index 5e4acc6b..ac90475f 100644 --- a/Mobile phones/ZTE_nubia z50 ultra_35mm__C4k_4by3_4640x3488-23.99fps.json +++ b/Mobile phones/ZTE_nubia z50 ultra_35mm__C4k_4by3_4640x3488-23.99fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Roman Lisin", "calibrator_version": "1.5.4", "camera_brand": "ZTE", - "camera_model": "nubia z50 ultra", + "camera_model": "Nubia z50 ultra", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Nikon/NIKON_Z6_ZEISS 212.8_P60_1080p_16by9_1920x1080-50.00fps.json b/Nikon/NIKON_Z6_ZEISS 212.8_P60_1080p_16by9_1920x1080-50.00fps.json index ea63ab7e..3fe0cddf 100644 --- a/Nikon/NIKON_Z6_ZEISS 212.8_P60_1080p_16by9_1920x1080-50.00fps.json +++ b/Nikon/NIKON_Z6_ZEISS 212.8_P60_1080p_16by9_1920x1080-50.00fps.json @@ -2,7 +2,7 @@ "name": "NIKON_Z6_ZEISS 21/2.8_P/60_1080p_16by9_1920x1080-50.00fps", "note": "16:9", "calibrated_by": "WYS", - "camera_brand": "NIKON", + "camera_brand": "Nikon", "camera_model": "Z6", "lens_model": "ZEISS 21/2.8", "camera_setting": "P/60", diff --git a/Nikon/Nikon_Z6ii_14-30mm_14mm_4k_16by9_3840x2160-25.00fps.json b/Nikon/Nikon_Z6ii_14-30mm_14mm_4k_16by9_3840x2160-25.00fps.json index d9d69cdb..72ad1245 100644 --- a/Nikon/Nikon_Z6ii_14-30mm_14mm_4k_16by9_3840x2160-25.00fps.json +++ b/Nikon/Nikon_Z6ii_14-30mm_14mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "A.lemay", "camera_brand": "Nikon", - "camera_model": "Z6ii", + "camera_model": "Z6II", "lens_model": "14-30mm", "camera_setting": "14mm", "calib_dimension": { diff --git a/Nikon/Nikon_Z6ii_36mm Viltrox f1.8__1080p_16by9_1920x1080-50.00fps.json b/Nikon/Nikon_Z6ii_36mm Viltrox f1.8__1080p_16by9_1920x1080-50.00fps.json index ccf24212..7d966c0d 100644 --- a/Nikon/Nikon_Z6ii_36mm Viltrox f1.8__1080p_16by9_1920x1080-50.00fps.json +++ b/Nikon/Nikon_Z6ii_36mm Viltrox f1.8__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Alankar Kushwaha", "camera_brand": "Nikon", - "camera_model": "Z6ii", + "camera_model": "Z6II", "lens_model": "36mm Viltrox f1.8", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_Z6ii_7Artizan 12mm T2.9__4k_16by9_3840x2160-25.00fps.json b/Nikon/Nikon_Z6ii_7Artizan 12mm T2.9__4k_16by9_3840x2160-25.00fps.json index 560a5913..cb32b93e 100644 --- a/Nikon/Nikon_Z6ii_7Artizan 12mm T2.9__4k_16by9_3840x2160-25.00fps.json +++ b/Nikon/Nikon_Z6ii_7Artizan 12mm T2.9__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Thiti Foster", "camera_brand": "Nikon", - "camera_model": "Z6ii", + "camera_model": "Z6II", "lens_model": "7Artizan 12mm T2.9", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_Z7ii_z 24-70 f4_P_1080p_16by9_1920x1080-59.94fps.json b/Nikon/Nikon_Z7ii_z 24-70 f4_P_1080p_16by9_1920x1080-59.94fps.json index 2dd443af..00262481 100644 --- a/Nikon/Nikon_Z7ii_z 24-70 f4_P_1080p_16by9_1920x1080-59.94fps.json +++ b/Nikon/Nikon_Z7ii_z 24-70 f4_P_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Haxlok_1", "camera_brand": "Nikon", - "camera_model": "Z7ii", + "camera_model": "Z7II", "lens_model": "z 24-70 f4", "camera_setting": "P", "calib_dimension": { diff --git a/Nikon/Nikon_d3100_Nikkor 50mm 1.8_man_1080p_16by9_1920x1080-23.98fps.json b/Nikon/Nikon_d3100_Nikkor 50mm 1.8_man_1080p_16by9_1920x1080-23.98fps.json index 8fad6cf1..bf18481a 100644 --- a/Nikon/Nikon_d3100_Nikkor 50mm 1.8_man_1080p_16by9_1920x1080-23.98fps.json +++ b/Nikon/Nikon_d3100_Nikkor 50mm 1.8_man_1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "John Webb", "camera_brand": "Nikon", - "camera_model": "d3100", + "camera_model": "D3100", "lens_model": "Nikkor 50mm 1.8", "camera_setting": "man", "calib_dimension": { diff --git a/Nikon/Nikon_d3200_AF-SNIKKOR55-200_1.4-5.6GED_1080p_16by9_1920x1080-25.00fps.json b/Nikon/Nikon_d3200_AF-SNIKKOR55-200_1.4-5.6GED_1080p_16by9_1920x1080-25.00fps.json index cf9528b9..efdf843e 100644 --- a/Nikon/Nikon_d3200_AF-SNIKKOR55-200_1.4-5.6GED_1080p_16by9_1920x1080-25.00fps.json +++ b/Nikon/Nikon_d3200_AF-SNIKKOR55-200_1.4-5.6GED_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "michel", "camera_brand": "Nikon", - "camera_model": "d3200", + "camera_model": "D3200", "lens_model": "AF-SNIKKOR55-200", "camera_setting": "1.4-5.6GED", "calib_dimension": { diff --git a/Nikon/Nikon_d3200_nikkor__720p_16by9_1280x720-50.00fps.json b/Nikon/Nikon_d3200_nikkor__720p_16by9_1280x720-50.00fps.json index b5202e5c..1e3b8be9 100644 --- a/Nikon/Nikon_d3200_nikkor__720p_16by9_1280x720-50.00fps.json +++ b/Nikon/Nikon_d3200_nikkor__720p_16by9_1280x720-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Otetz_drakonov", "camera_brand": "Nikon", - "camera_model": "d3200", + "camera_model": "D3200", "lens_model": "nikkor", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_d3300_af-s 18-55__1080p_16by9_1920x1080-59.94fps.json b/Nikon/Nikon_d3300_af-s 18-55__1080p_16by9_1920x1080-59.94fps.json index 37a7156c..cd88c132 100644 --- a/Nikon/Nikon_d3300_af-s 18-55__1080p_16by9_1920x1080-59.94fps.json +++ b/Nikon/Nikon_d3300_af-s 18-55__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ben Gampel", "camera_brand": "Nikon", - "camera_model": "d3300", + "camera_model": "D3300", "lens_model": "af-s 18-55", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_d3500_af-p nikkor 18-55 mm__1080p_16by9_1920x1080-59.94fps.json b/Nikon/Nikon_d3500_af-p nikkor 18-55 mm__1080p_16by9_1920x1080-59.94fps.json index 746e3729..f1c229b6 100644 --- a/Nikon/Nikon_d3500_af-p nikkor 18-55 mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Nikon/Nikon_d3500_af-p nikkor 18-55 mm__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Abby Legner", "camera_brand": "Nikon", - "camera_model": "d3500", + "camera_model": "D3500", "lens_model": "af-p nikkor 18-55 mm", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_d5200_AF-S DX NIKKOR18-55mm f3.5-5.6G VR__1080p_16by9_1920x1080-23.98fps.json b/Nikon/Nikon_d5200_AF-S DX NIKKOR18-55mm f3.5-5.6G VR__1080p_16by9_1920x1080-23.98fps.json index 0a54d4a9..3b7cbb1e 100644 --- a/Nikon/Nikon_d5200_AF-S DX NIKKOR18-55mm f3.5-5.6G VR__1080p_16by9_1920x1080-23.98fps.json +++ b/Nikon/Nikon_d5200_AF-S DX NIKKOR18-55mm f3.5-5.6G VR__1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Francisco Becerra", "camera_brand": "Nikon", - "camera_model": "d5200", + "camera_model": "D5200", "lens_model": "AF-S DX NIKKOR\n18-55mm f/3.5-5.6G VR", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_d5300_50 mm f1.8_manual_1080p_16by9_1920x1080-59.94fps.json b/Nikon/Nikon_d5300_50 mm f1.8_manual_1080p_16by9_1920x1080-59.94fps.json index 082cde3d..01bd162c 100644 --- a/Nikon/Nikon_d5300_50 mm f1.8_manual_1080p_16by9_1920x1080-59.94fps.json +++ b/Nikon/Nikon_d5300_50 mm f1.8_manual_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "iso 200", "calibrated_by": "farzin Karimi", "camera_brand": "Nikon", - "camera_model": "d5300", + "camera_model": "D5300", "lens_model": "50 mm f1.8", "camera_setting": "manual", "calib_dimension": { diff --git a/Nikon/Nikon_d5300_Nikkor 18-55 AFP__1080p_16by9_1920x1080-59.94fps - Ollie Wells.json b/Nikon/Nikon_d5300_Nikkor 18-55 AFP__1080p_16by9_1920x1080-59.94fps - Ollie Wells.json index 7d2c4d8c..e0c5566a 100644 --- a/Nikon/Nikon_d5300_Nikkor 18-55 AFP__1080p_16by9_1920x1080-59.94fps - Ollie Wells.json +++ b/Nikon/Nikon_d5300_Nikkor 18-55 AFP__1080p_16by9_1920x1080-59.94fps - Ollie Wells.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ollie Wells", "camera_brand": "Nikon", - "camera_model": "d5300", + "camera_model": "D5300", "lens_model": "Nikkor 18-55 AFP", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_d7000_vr 18-105__1080p_16by9_1920x1080-23.98fps.json b/Nikon/Nikon_d7000_vr 18-105__1080p_16by9_1920x1080-23.98fps.json index 49cc48be..fbb3aa64 100644 --- a/Nikon/Nikon_d7000_vr 18-105__1080p_16by9_1920x1080-23.98fps.json +++ b/Nikon/Nikon_d7000_vr 18-105__1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Shevin Fernando", "camera_brand": "Nikon", - "camera_model": "d7000", + "camera_model": "D7000", "lens_model": "vr 18-105", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_d7200_AF NIKKOR 50mm f1.8D__1080p_16by9_1920x1080-29.97fps.json b/Nikon/Nikon_d7200_AF NIKKOR 50mm f1.8D__1080p_16by9_1920x1080-29.97fps.json index f1d1d124..bbb13697 100644 --- a/Nikon/Nikon_d7200_AF NIKKOR 50mm f1.8D__1080p_16by9_1920x1080-29.97fps.json +++ b/Nikon/Nikon_d7200_AF NIKKOR 50mm f1.8D__1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "amirreza rahimi", "camera_brand": "Nikon", - "camera_model": "d7200", + "camera_model": "D7200", "lens_model": "AF NIKKOR 50mm f/1.8D", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_d7500_16-80 f2.8-4E @ 24mm_16mm_4k_16by9_3840x2160-23.98fps.json b/Nikon/Nikon_d7500_16-80 f2.8-4E @ 24mm_16mm_4k_16by9_3840x2160-23.98fps.json index 0ff91bb9..e2850196 100644 --- a/Nikon/Nikon_d7500_16-80 f2.8-4E @ 24mm_16mm_4k_16by9_3840x2160-23.98fps.json +++ b/Nikon/Nikon_d7500_16-80 f2.8-4E @ 24mm_16mm_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "16mm", "calibrated_by": "Juan San Martin Lledias", "camera_brand": "Nikon", - "camera_model": "d7500", + "camera_model": "D7500", "lens_model": "16-80 f2.8-4E @ 24mm", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_d7500_sigma 18-35 f1.8 @ 18mm__1080p_16by9_1920x1080-59.94fps.json b/Nikon/Nikon_d7500_sigma 18-35 f1.8 @ 18mm__1080p_16by9_1920x1080-59.94fps.json index d7212993..940551d2 100644 --- a/Nikon/Nikon_d7500_sigma 18-35 f1.8 @ 18mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Nikon/Nikon_d7500_sigma 18-35 f1.8 @ 18mm__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "joshua turton", "camera_brand": "Nikon", - "camera_model": "d7500", + "camera_model": "D7500", "lens_model": "sigma 18-35 f1.8 @ 18mm", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_d810_24-702.8G__1080p_16by9_1920x1080-50.00fps.json b/Nikon/Nikon_d810_24-702.8G__1080p_16by9_1920x1080-50.00fps.json index 129ff4d3..2ef4f3fb 100644 --- a/Nikon/Nikon_d810_24-702.8G__1080p_16by9_1920x1080-50.00fps.json +++ b/Nikon/Nikon_d810_24-702.8G__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator-gql", "camera_brand": "Nikon", - "camera_model": "d810", + "camera_model": "D810", "lens_model": "24-70/2.8G", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_d810_24-70__1080p_16by9_1920x1080-50.00fps.json b/Nikon/Nikon_d810_24-70__1080p_16by9_1920x1080-50.00fps.json index 2d2ac0b9..bb563a45 100644 --- a/Nikon/Nikon_d810_24-70__1080p_16by9_1920x1080-50.00fps.json +++ b/Nikon/Nikon_d810_24-70__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator-gql", "camera_brand": "Nikon", - "camera_model": "d810", + "camera_model": "D810", "lens_model": "24-70", "camera_setting": "自动", "calib_dimension": { diff --git a/Nikon/Nikon_d810_24-70f2.8__1080p_16by9_1920x1080-50.00fps.json b/Nikon/Nikon_d810_24-70f2.8__1080p_16by9_1920x1080-50.00fps.json index 193ac3d4..1d528453 100644 --- a/Nikon/Nikon_d810_24-70f2.8__1080p_16by9_1920x1080-50.00fps.json +++ b/Nikon/Nikon_d810_24-70f2.8__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator-gql", "camera_brand": "Nikon", - "camera_model": "d810", + "camera_model": "D810", "lens_model": "24-70/f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_d850_24-70s 2.8_24mm_4k_16by9_3840x2160-29.97fps.json b/Nikon/Nikon_d850_24-70s 2.8_24mm_4k_16by9_3840x2160-29.97fps.json index f41a884c..80db454e 100644 --- a/Nikon/Nikon_d850_24-70s 2.8_24mm_4k_16by9_3840x2160-29.97fps.json +++ b/Nikon/Nikon_d850_24-70s 2.8_24mm_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "24mm", "calibrated_by": "ap", "camera_brand": "Nikon", - "camera_model": "d850", + "camera_model": "D850", "lens_model": "24-70s 2.8", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_z 50_z 16-50__4k_16by9_3840x2160-29.97fps.json b/Nikon/Nikon_z 50_z 16-50__4k_16by9_3840x2160-29.97fps.json index 612ef892..ac60d268 100644 --- a/Nikon/Nikon_z 50_z 16-50__4k_16by9_3840x2160-29.97fps.json +++ b/Nikon/Nikon_z 50_z 16-50__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Not PC", "camera_brand": "Nikon", - "camera_model": "z 50", + "camera_model": "Z 50", "lens_model": "z 16-50", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_z 6II_Nikon 35 mm_crop_4k_16by9_3840x2160-59.94fps.json b/Nikon/Nikon_z 6II_Nikon 35 mm_crop_4k_16by9_3840x2160-59.94fps.json index 83d3cc8d..e6e79c9a 100644 --- a/Nikon/Nikon_z 6II_Nikon 35 mm_crop_4k_16by9_3840x2160-59.94fps.json +++ b/Nikon/Nikon_z 6II_Nikon 35 mm_crop_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "untuk 60 fps crop 4 k", "calibrated_by": "ROG", "camera_brand": "Nikon", - "camera_model": "z 6II", + "camera_model": "Z 6II", "lens_model": "Nikon 35 mm", "camera_setting": "crop", "calib_dimension": { diff --git a/Nikon/Nikon_z30_nikon50-250__1080p_16by9_1920x1080-59.94fps.json b/Nikon/Nikon_z30_nikon50-250__1080p_16by9_1920x1080-59.94fps.json index 456925cf..f974d81f 100644 --- a/Nikon/Nikon_z30_nikon50-250__1080p_16by9_1920x1080-59.94fps.json +++ b/Nikon/Nikon_z30_nikon50-250__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "王佳豪", "camera_brand": "Nikon", - "camera_model": "z30", + "camera_model": "Z30", "lens_model": "nikon50-250", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_z5_24-70f4__4k_16by9_3840x2160-29.97fps.json b/Nikon/Nikon_z5_24-70f4__4k_16by9_3840x2160-29.97fps.json index f416ce8c..aede9049 100644 --- a/Nikon/Nikon_z5_24-70f4__4k_16by9_3840x2160-29.97fps.json +++ b/Nikon/Nikon_z5_24-70f4__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Nikon", - "camera_model": "z5", + "camera_model": "Z5", "lens_model": "24-70f4", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_z5_z 24-70 f4s__1080p_16by9_1920x1080-50.00fps.json b/Nikon/Nikon_z5_z 24-70 f4s__1080p_16by9_1920x1080-50.00fps.json index 205c6710..1e16d2e9 100644 --- a/Nikon/Nikon_z5_z 24-70 f4s__1080p_16by9_1920x1080-50.00fps.json +++ b/Nikon/Nikon_z5_z 24-70 f4s__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "赵庆磊", "camera_brand": "Nikon", - "camera_model": "z5", + "camera_model": "Z5", "lens_model": "z 24-70 f4s", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_z6 II_Z24-70mm f2.8 @ 24mm__1080p_16by9_1920x1080-59.94fps.json b/Nikon/Nikon_z6 II_Z24-70mm f2.8 @ 24mm__1080p_16by9_1920x1080-59.94fps.json index 27daf5e9..3cbda38f 100644 --- a/Nikon/Nikon_z6 II_Z24-70mm f2.8 @ 24mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Nikon/Nikon_z6 II_Z24-70mm f2.8 @ 24mm__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "JJ Chao", "camera_brand": "Nikon", - "camera_model": "z6 II", + "camera_model": "Z6 II", "lens_model": "Z24-70mm f2.8 @ 24mm", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_z62_24-200f4-6.3__1080p_16by9_1920x1080-119.88fps.json b/Nikon/Nikon_z62_24-200f4-6.3__1080p_16by9_1920x1080-119.88fps.json index 59f96ac6..85ab42dd 100644 --- a/Nikon/Nikon_z62_24-200f4-6.3__1080p_16by9_1920x1080-119.88fps.json +++ b/Nikon/Nikon_z62_24-200f4-6.3__1080p_16by9_1920x1080-119.88fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "shi yang", "camera_brand": "Nikon", - "camera_model": "z62", + "camera_model": "Z62", "lens_model": "尼康24-200f4-6.3", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_z62_24200__1080p_16by9_1920x1080-119.88fps.json b/Nikon/Nikon_z62_24200__1080p_16by9_1920x1080-119.88fps.json index 2168e51a..f1d2373c 100644 --- a/Nikon/Nikon_z62_24200__1080p_16by9_1920x1080-119.88fps.json +++ b/Nikon/Nikon_z62_24200__1080p_16by9_1920x1080-119.88fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "shi yang", "camera_brand": "Nikon", - "camera_model": "z62", + "camera_model": "Z62", "lens_model": "24200", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_z62_501.8s_2140_4k_16by9_3840x2160-29.97fps.json b/Nikon/Nikon_z62_501.8s_2140_4k_16by9_3840x2160-29.97fps.json index 7f86bce8..bfb32fcc 100644 --- a/Nikon/Nikon_z62_501.8s_2140_4k_16by9_3840x2160-29.97fps.json +++ b/Nikon/Nikon_z62_501.8s_2140_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "lingxing", "camera_brand": "Nikon", - "camera_model": "z62", + "camera_model": "Z62", "lens_model": "501.8s", "camera_setting": "2140", "calib_dimension": { diff --git a/Nikon/Nikon_z62_z501.8s__4k_16by9_3840x2160-29.97fps.json b/Nikon/Nikon_z62_z501.8s__4k_16by9_3840x2160-29.97fps.json index d0ec90e1..175c7c8f 100644 --- a/Nikon/Nikon_z62_z501.8s__4k_16by9_3840x2160-29.97fps.json +++ b/Nikon/Nikon_z62_z501.8s__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "lingxing", "camera_brand": "Nikon", - "camera_model": "z62", + "camera_model": "Z62", "lens_model": "z501.8s", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_z6_28.mm__1080p_16by9_1920x1080-59.93fps.json b/Nikon/Nikon_z6_28.mm__1080p_16by9_1920x1080-59.93fps.json index 63576e7f..69689da9 100644 --- a/Nikon/Nikon_z6_28.mm__1080p_16by9_1920x1080-59.93fps.json +++ b/Nikon/Nikon_z6_28.mm__1080p_16by9_1920x1080-59.93fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Darryl Irving", "camera_brand": "Nikon", - "camera_model": "z6", + "camera_model": "Z6", "lens_model": "28.mm", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_z6_28mm__1080p_16by9_1920x1080-59.94fps.json b/Nikon/Nikon_z6_28mm__1080p_16by9_1920x1080-59.94fps.json index 0ad7e4c8..1f9f9e3a 100644 --- a/Nikon/Nikon_z6_28mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Nikon/Nikon_z6_28mm__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Darryl Irving", "camera_brand": "Nikon", - "camera_model": "z6", + "camera_model": "Z6", "lens_model": "28mm", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_z6_nikon 24 mm 2.8D_24mm_1080p_16by9_1920x1080-59.94fps.json b/Nikon/Nikon_z6_nikon 24 mm 2.8D_24mm_1080p_16by9_1920x1080-59.94fps.json index 6a5186a2..4b35d14a 100644 --- a/Nikon/Nikon_z6_nikon 24 mm 2.8D_24mm_1080p_16by9_1920x1080-59.94fps.json +++ b/Nikon/Nikon_z6_nikon 24 mm 2.8D_24mm_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Kerry James", "camera_brand": "Nikon", - "camera_model": "z6", + "camera_model": "Z6", "lens_model": "nikon 24 mm 2.8D", "camera_setting": "24mm", "calib_dimension": { diff --git a/Nikon/Nikon_z6ii_z254-120__1080p_16by9_1920x1080-119.88fps.json b/Nikon/Nikon_z6ii_z254-120__1080p_16by9_1920x1080-119.88fps.json index 7b905ab0..2ba8123f 100644 --- a/Nikon/Nikon_z6ii_z254-120__1080p_16by9_1920x1080-119.88fps.json +++ b/Nikon/Nikon_z6ii_z254-120__1080p_16by9_1920x1080-119.88fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "李安九", "camera_brand": "Nikon", - "camera_model": "z6ii", + "camera_model": "Z6II", "lens_model": "z254-120", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_z7_24-70__1080p_16by9_1920x1080-50.00fps.json b/Nikon/Nikon_z7_24-70__1080p_16by9_1920x1080-50.00fps.json index f6b833be..a9e9cba3 100644 --- a/Nikon/Nikon_z7_24-70__1080p_16by9_1920x1080-50.00fps.json +++ b/Nikon/Nikon_z7_24-70__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "PRAJWAL", "camera_brand": "Nikon", - "camera_model": "z7", + "camera_model": "Z7", "lens_model": "24-70", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_z8_70-200__6k_16by9_7680x4320-29.97fps.json b/Nikon/Nikon_z8_70-200__6k_16by9_7680x4320-29.97fps.json index 9d4ba185..83984ce7 100644 --- a/Nikon/Nikon_z8_70-200__6k_16by9_7680x4320-29.97fps.json +++ b/Nikon/Nikon_z8_70-200__6k_16by9_7680x4320-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Yau Leung Chiu", "camera_brand": "Nikon", - "camera_model": "z8", + "camera_model": "Z8", "lens_model": "70-200", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_z8_sirui 50mm__4k_16by9_3840x2160-50.00fps.json b/Nikon/Nikon_z8_sirui 50mm__4k_16by9_3840x2160-50.00fps.json index 404c75da..37506d68 100644 --- a/Nikon/Nikon_z8_sirui 50mm__4k_16by9_3840x2160-50.00fps.json +++ b/Nikon/Nikon_z8_sirui 50mm__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ycchang", "camera_brand": "Nikon", - "camera_model": "z8", + "camera_model": "Z8", "lens_model": "sirui 50mm", "camera_setting": "", "calib_dimension": { diff --git a/Nikon/Nikon_z9_14-30_16mm_4k_16by9_3840x2160-50.00fps.json b/Nikon/Nikon_z9_14-30_16mm_4k_16by9_3840x2160-50.00fps.json index a6c6e822..55dd3eaf 100644 --- a/Nikon/Nikon_z9_14-30_16mm_4k_16by9_3840x2160-50.00fps.json +++ b/Nikon/Nikon_z9_14-30_16mm_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "jcw", "camera_brand": "Nikon", - "camera_model": "z9", + "camera_model": "Z9", "lens_model": "14-30", "camera_setting": "16mm", "calib_dimension": { diff --git a/Nikon/Nikon_z9_z 24-120 f4.0__4k_16by9_3840x2160-59.94fps.json b/Nikon/Nikon_z9_z 24-120 f4.0__4k_16by9_3840x2160-59.94fps.json index dab1dcb1..b52e0951 100644 --- a/Nikon/Nikon_z9_z 24-120 f4.0__4k_16by9_3840x2160-59.94fps.json +++ b/Nikon/Nikon_z9_z 24-120 f4.0__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Bi Yufei", "camera_brand": "Nikon", - "camera_model": "z9", + "camera_model": "Z9", "lens_model": "z 24-120 f4.0", "camera_setting": "", "calib_dimension": { diff --git a/Olympus/OLYMPUS_OM-D EM 10 MARK IIIS_ZUIKO 14-42 IIR__1080p_16by9_1920x1080-59.94fps.json b/Olympus/OLYMPUS_OM-D EM 10 MARK IIIS_ZUIKO 14-42 IIR__1080p_16by9_1920x1080-59.94fps.json index ddb93245..bf8d9c07 100644 --- a/Olympus/OLYMPUS_OM-D EM 10 MARK IIIS_ZUIKO 14-42 IIR__1080p_16by9_1920x1080-59.94fps.json +++ b/Olympus/OLYMPUS_OM-D EM 10 MARK IIIS_ZUIKO 14-42 IIR__1080p_16by9_1920x1080-59.94fps.json @@ -2,7 +2,7 @@ "name": "OLYMPUS_OM-D EM 10 MARK IIIS_ZUIKO 14-42 IIR__1080p_16by9_1920x1080-59.94fps", "note": "", "calibrated_by": "Emilio Duran Maestre", - "camera_brand": "OLYMPUS", + "camera_brand": "Olympus", "camera_model": "OM-D EM 10 MARK IIIS", "lens_model": "ZUIKO 14-42 IIR", "camera_setting": "", diff --git a/Olympus/OLYMPUS_OM-D EM 10 MARK IIIS_ZUIKO 45MM 1.8_P A 25FPS_1080p_16by9_1920x1080-50.00fps.json b/Olympus/OLYMPUS_OM-D EM 10 MARK IIIS_ZUIKO 45MM 1.8_P A 25FPS_1080p_16by9_1920x1080-50.00fps.json index b67c1d64..9850cda3 100644 --- a/Olympus/OLYMPUS_OM-D EM 10 MARK IIIS_ZUIKO 45MM 1.8_P A 25FPS_1080p_16by9_1920x1080-50.00fps.json +++ b/Olympus/OLYMPUS_OM-D EM 10 MARK IIIS_ZUIKO 45MM 1.8_P A 25FPS_1080p_16by9_1920x1080-50.00fps.json @@ -2,7 +2,7 @@ "name": "OLYMPUS_OM-D EM 10 MARK IIIS_ZUIKO 45MM 1.8_P A 25FPS_1080p_16by9_1920x1080-50.00fps", "note": "", "calibrated_by": "Emilio Duran Maestre", - "camera_brand": "OLYMPUS", + "camera_brand": "Olympus", "camera_model": "OM-D EM 10 MARK IIIS", "lens_model": "ZUIKO 45MM 1.8", "camera_setting": "P A 25FPS", diff --git a/Olympus/Olympus_M10 Mark IV_Lumix Leica 9mm__4k_16by9_3840x2160-25.00fps - 4.json b/Olympus/Olympus_M10 Mark IV_Lumix Leica 9mm__4k_16by9_3840x2160-25.00fps - 4.json index 6936ac54..02939608 100644 --- a/Olympus/Olympus_M10 Mark IV_Lumix Leica 9mm__4k_16by9_3840x2160-25.00fps - 4.json +++ b/Olympus/Olympus_M10 Mark IV_Lumix Leica 9mm__4k_16by9_3840x2160-25.00fps - 4.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Julián Monrabal", "camera_brand": "Olympus", - "camera_model": "M10 Mark IV", + "camera_model": "M10 MARK IV", "lens_model": "Lumix Leica 9mm", "camera_setting": "", "calib_dimension": { diff --git a/Olympus/Olympus_M10 Mark IV_Lumix Leica 9mm__4k_16by9_3840x2160-25.00fps.json b/Olympus/Olympus_M10 Mark IV_Lumix Leica 9mm__4k_16by9_3840x2160-25.00fps.json index c1c19b53..d52ab9f1 100644 --- a/Olympus/Olympus_M10 Mark IV_Lumix Leica 9mm__4k_16by9_3840x2160-25.00fps.json +++ b/Olympus/Olympus_M10 Mark IV_Lumix Leica 9mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Julián Monrabal", "camera_brand": "Olympus", - "camera_model": "M10 Mark IV", + "camera_model": "M10 MARK IV", "lens_model": "Lumix Leica 9mm", "camera_setting": "", "calib_dimension": { diff --git a/Olympus/Olympus_TG-6___1080p_16by9_1920x1080-29.97fps.json b/Olympus/Olympus_TG-6___1080p_16by9_1920x1080-29.97fps.json index ae5f445c..1e7623fc 100644 --- a/Olympus/Olympus_TG-6___1080p_16by9_1920x1080-29.97fps.json +++ b/Olympus/Olympus_TG-6___1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Greg Mas", "camera_brand": "Olympus", - "camera_model": "TG-6", + "camera_model": "Tough TG-6", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Other/BETAFPV_HD_X65HD___1080p_16by9_1920x1080-60.00fps.json b/Other/BETAFPV_HD_X65HD___1080p_16by9_1920x1080-60.00fps.json index 1c201fb1..5cc61027 100644 --- a/Other/BETAFPV_HD_X65HD___1080p_16by9_1920x1080-60.00fps.json +++ b/Other/BETAFPV_HD_X65HD___1080p_16by9_1920x1080-60.00fps.json @@ -2,7 +2,7 @@ "name": "BETAFPV_HD_X65HD___1080p_16by9_1920x1080-60.00fps", "note": "", "calibrated_by": "Robert Wolfgang Lange", - "camera_brand": "BETAFPV", + "camera_brand": "BetaFPV", "camera_model": "HD_X65HD", "lens_model": "", "camera_setting": "", diff --git a/Other/Cooau_CU SPC02___4k_16by9_3840x2160-30.00fps.json b/Other/Cooau_CU SPC02___4k_16by9_3840x2160-30.00fps.json index b9c93934..e88d3890 100644 --- a/Other/Cooau_CU SPC02___4k_16by9_3840x2160-30.00fps.json +++ b/Other/Cooau_CU SPC02___4k_16by9_3840x2160-30.00fps.json @@ -2,7 +2,7 @@ "name": "Cooau_CU SPC02___4k_16by9_3840x2160-30.00fps", "note": "", "calibrated_by": "Lorenzo Manera", - "camera_brand": "Cooau", + "camera_brand": "COOAU", "camera_model": "CU SPC02", "lens_model": "", "camera_setting": "", diff --git a/Other/Eken_H9R___1080p_16by9_1920x1080-60.00fps (2).json b/Other/Eken_H9R___1080p_16by9_1920x1080-60.00fps (2).json index c8ad7743..9bbcb7cd 100644 --- a/Other/Eken_H9R___1080p_16by9_1920x1080-60.00fps (2).json +++ b/Other/Eken_H9R___1080p_16by9_1920x1080-60.00fps (2).json @@ -2,7 +2,7 @@ "name": "Eken_H9R___1080p_16by9_1920x1080-60.00fps", "note": "", "calibrated_by": "Artur", - "camera_brand": "Eken", + "camera_brand": "EKEN", "camera_model": "H9R", "lens_model": "", "camera_setting": "", diff --git a/Other/Eken_h9__720__720p_16by9_1280x720-120.00fps.json b/Other/Eken_h9__720__720p_16by9_1280x720-120.00fps.json index ea6896f1..8093cd37 100644 --- a/Other/Eken_h9__720__720p_16by9_1280x720-120.00fps.json +++ b/Other/Eken_h9__720__720p_16by9_1280x720-120.00fps.json @@ -2,8 +2,8 @@ "name": "Eken_h9__720:_720p_16by9_1280x720-120.00fps", "note": "", "calibrated_by": "Unggoon01", - "camera_brand": "Eken", - "camera_model": "h9", + "camera_brand": "EKEN", + "camera_model": "H9", "lens_model": "", "camera_setting": "720:", "calib_dimension": { diff --git a/Other/Eken_h9___1080p_16by9_1920x1080-60.00fps.json b/Other/Eken_h9___1080p_16by9_1920x1080-60.00fps.json index 3fead0e1..74f79240 100644 --- a/Other/Eken_h9___1080p_16by9_1920x1080-60.00fps.json +++ b/Other/Eken_h9___1080p_16by9_1920x1080-60.00fps.json @@ -2,8 +2,8 @@ "name": "Eken_h9___1080p_16by9_1920x1080-60.00fps", "note": "", "calibrated_by": "Unggoon01", - "camera_brand": "Eken", - "camera_model": "h9", + "camera_brand": "EKEN", + "camera_model": "H9", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Other/Eken_h9_original__4k_16by9_3840x2160-25.00fps.json b/Other/Eken_h9_original__4k_16by9_3840x2160-25.00fps.json index 6a67dcf8..e3fcaa91 100644 --- a/Other/Eken_h9_original__4k_16by9_3840x2160-25.00fps.json +++ b/Other/Eken_h9_original__4k_16by9_3840x2160-25.00fps.json @@ -2,8 +2,8 @@ "name": "Eken_h9_original__4k_16by9_3840x2160-25.00fps", "note": "", "calibrated_by": "Unggoon01", - "camera_brand": "Eken", - "camera_model": "h9", + "camera_brand": "EKEN", + "camera_model": "H9", "lens_model": "original", "camera_setting": "", "calib_dimension": { diff --git a/Other/Feiyu-Tech_Pocket3___4k_16by9_3840x2160-60.00fps - 3.json b/Other/Feiyu-Tech_Pocket3___4k_16by9_3840x2160-60.00fps - 3.json index fc8cb052..03d70fb4 100644 --- a/Other/Feiyu-Tech_Pocket3___4k_16by9_3840x2160-60.00fps - 3.json +++ b/Other/Feiyu-Tech_Pocket3___4k_16by9_3840x2160-60.00fps - 3.json @@ -2,7 +2,7 @@ "name": "Feiyu-Tech_Pocket3___4k_16by9_3840x2160-60.00fps", "note": "", "calibrated_by": "潇洒哥哥", - "camera_brand": "Feiyu-Tech", + "camera_brand": "Feiyu Tech", "camera_model": "Pocket3", "lens_model": "", "camera_setting": "", diff --git a/Other/Feiyu-Tech_Pocket3___4k_16by9_3840x2160-60.00fps.json b/Other/Feiyu-Tech_Pocket3___4k_16by9_3840x2160-60.00fps.json index 70665d41..a0e6e3cc 100644 --- a/Other/Feiyu-Tech_Pocket3___4k_16by9_3840x2160-60.00fps.json +++ b/Other/Feiyu-Tech_Pocket3___4k_16by9_3840x2160-60.00fps.json @@ -2,7 +2,7 @@ "name": "Feiyu-Tech_Pocket3___4k_16by9_3840x2160-60.00fps", "note": "", "calibrated_by": "潇洒哥哥", - "camera_brand": "Feiyu-Tech", + "camera_brand": "Feiyu Tech", "camera_model": "Pocket3", "lens_model": "", "camera_setting": "", diff --git a/Other/Fimi_x8 mini v2___4k_16by9_3840x2160-29.69fps.json b/Other/Fimi_x8 mini v2___4k_16by9_3840x2160-29.69fps.json index f2c02248..b1676587 100644 --- a/Other/Fimi_x8 mini v2___4k_16by9_3840x2160-29.69fps.json +++ b/Other/Fimi_x8 mini v2___4k_16by9_3840x2160-29.69fps.json @@ -6,7 +6,7 @@ }, "calibrated_by": "U0 A359", "calibrator_version": "1.5.4", - "camera_brand": "Fimi", + "camera_brand": "FIMI", "camera_model": "x8 mini v2", "camera_setting": "", "compatible_settings": [], diff --git a/Other/Gitup_Git2P_90 degree__2.5k_16by9_2560x1440-30.00fps.json b/Other/Gitup_Git2P_90 degree__2.5k_16by9_2560x1440-30.00fps.json index e8bf6a15..f322ae4d 100644 --- a/Other/Gitup_Git2P_90 degree__2.5k_16by9_2560x1440-30.00fps.json +++ b/Other/Gitup_Git2P_90 degree__2.5k_16by9_2560x1440-30.00fps.json @@ -2,7 +2,7 @@ "name": "Gitup_Git2P_90 degree__2.5k_16by9_2560x1440-30.00fps", "note": "", "calibrated_by": "trxdick", - "camera_brand": "Gitup", + "camera_brand": "GitUp", "camera_model": "Git2P", "lens_model": "90 degree", "camera_setting": "", diff --git a/Other/IQOO 9_26MM___4k_16by9_3840x2176-30.00fps.json b/Other/IQOO 9_26MM___4k_16by9_3840x2176-30.00fps.json index 9d47ac78..18c40b0a 100644 --- a/Other/IQOO 9_26MM___4k_16by9_3840x2176-30.00fps.json +++ b/Other/IQOO 9_26MM___4k_16by9_3840x2176-30.00fps.json @@ -2,7 +2,7 @@ "name": "IQOO 9_26MM___4k_16by9_3840x2176-30.00fps", "note": "", "calibrated_by": "Bikram Panda", - "camera_brand": "IQOO 9", + "camera_brand": "IQOO", "camera_model": "26MM", "lens_model": "", "camera_setting": "", diff --git a/Other/LEICA_SL2_SUPER VARIO ELMAR 16-35 ASPH_35 mm_C4k_1.90by1_4096x2160-24.00fps.json b/Other/LEICA_SL2_SUPER VARIO ELMAR 16-35 ASPH_35 mm_C4k_1.90by1_4096x2160-24.00fps.json index b8a4e0e3..e480ef0a 100644 --- a/Other/LEICA_SL2_SUPER VARIO ELMAR 16-35 ASPH_35 mm_C4k_1.90by1_4096x2160-24.00fps.json +++ b/Other/LEICA_SL2_SUPER VARIO ELMAR 16-35 ASPH_35 mm_C4k_1.90by1_4096x2160-24.00fps.json @@ -2,7 +2,7 @@ "name": "LEICA_SL2_SUPER VARIO ELMAR 16-35 ASPH_35 mm_C4k_1.90by1_4096x2160-24.00fps", "note": "", "calibrated_by": "Olivier Lattuga-Duyck", - "camera_brand": "LEICA", + "camera_brand": "Leica", "camera_model": "SL2", "lens_model": "SUPER VARIO ELMAR 16-35 ASPH", "camera_setting": "35 mm", diff --git a/Other/Lamax_X8 Electra_wide__1080p_16by9_1920x1080-30.00fps.json b/Other/Lamax_X8 Electra_wide__1080p_16by9_1920x1080-30.00fps.json index 23ced74d..9b2122a3 100644 --- a/Other/Lamax_X8 Electra_wide__1080p_16by9_1920x1080-30.00fps.json +++ b/Other/Lamax_X8 Electra_wide__1080p_16by9_1920x1080-30.00fps.json @@ -2,7 +2,7 @@ "name": "Lamax_X8 Electra_wide__1080p_16by9_1920x1080-30.00fps", "note": "", "calibrated_by": "CreefyFPV", - "camera_brand": "Lamax", + "camera_brand": "LAMAX", "camera_model": "X8 Electra", "lens_model": "wide", "camera_setting": "", diff --git a/Other/Lamax_X9.2__2,_2.7k_16by9_2704x1520-60.00fps.json b/Other/Lamax_X9.2__2,_2.7k_16by9_2704x1520-60.00fps.json index 7d8cc322..dfe3ebc3 100644 --- a/Other/Lamax_X9.2__2,_2.7k_16by9_2704x1520-60.00fps.json +++ b/Other/Lamax_X9.2__2,_2.7k_16by9_2704x1520-60.00fps.json @@ -2,7 +2,7 @@ "name": "Lamax_X9.2__2,_2.7k_16by9_2704x1520-60.00fps", "note": "", "calibrated_by": "Jiřík", - "camera_brand": "Lamax", + "camera_brand": "LAMAX", "camera_model": "X9.2", "lens_model": "", "camera_setting": "2,", diff --git a/Other/Leica_sl2-s_dulens 58__4k_16by9_3840x2160-29.97fps.json b/Other/Leica_sl2-s_dulens 58__4k_16by9_3840x2160-29.97fps.json index 2eb491fb..a893b3d3 100644 --- a/Other/Leica_sl2-s_dulens 58__4k_16by9_3840x2160-29.97fps.json +++ b/Other/Leica_sl2-s_dulens 58__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Beck Tang", "camera_brand": "Leica", - "camera_model": "sl2-s", + "camera_model": "SL2-S", "lens_model": "dulens 58", "camera_setting": "", "calib_dimension": { diff --git a/Other/Leica_sl2-s_dulens 58__4k_16by9_3840x2160-59.94fps.json b/Other/Leica_sl2-s_dulens 58__4k_16by9_3840x2160-59.94fps.json index 4cfb0201..c41d3894 100644 --- a/Other/Leica_sl2-s_dulens 58__4k_16by9_3840x2160-59.94fps.json +++ b/Other/Leica_sl2-s_dulens 58__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Beck Tang", "camera_brand": "Leica", - "camera_model": "sl2-s", + "camera_model": "SL2-S", "lens_model": "dulens 58", "camera_setting": "", "calib_dimension": { diff --git a/Other/Leica_sl2-s_dulens58+1.5x__6k_2.85by1_6192x2176-59.94fps.json b/Other/Leica_sl2-s_dulens58+1.5x__6k_2.85by1_6192x2176-59.94fps.json index 1ed6bae0..a8b76e22 100644 --- a/Other/Leica_sl2-s_dulens58+1.5x__6k_2.85by1_6192x2176-59.94fps.json +++ b/Other/Leica_sl2-s_dulens58+1.5x__6k_2.85by1_6192x2176-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Beck Tang", "camera_brand": "Leica", - "camera_model": "sl2-s", + "camera_model": "SL2-S", "lens_model": "dulens58+1.5x", "camera_setting": "", "calib_dimension": { diff --git a/Other/Leica_sl2-s_leica 501.4+1.5x__5k_8by3_5760x2160-29.97fps.json b/Other/Leica_sl2-s_leica 501.4+1.5x__5k_8by3_5760x2160-29.97fps.json index bf5e096e..639af518 100644 --- a/Other/Leica_sl2-s_leica 501.4+1.5x__5k_8by3_5760x2160-29.97fps.json +++ b/Other/Leica_sl2-s_leica 501.4+1.5x__5k_8by3_5760x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Beck Tang", "camera_brand": "Leica", - "camera_model": "sl2-s", + "camera_model": "SL2-S", "lens_model": "leica 50/1.4+1.5x", "camera_setting": "", "calib_dimension": { diff --git a/Other/Leica_sl2-s_leica m50+1.5__1080p_16by9_1920x1080-29.97fps.json b/Other/Leica_sl2-s_leica m50+1.5__1080p_16by9_1920x1080-29.97fps.json index 2663c638..b212bf10 100644 --- a/Other/Leica_sl2-s_leica m50+1.5__1080p_16by9_1920x1080-29.97fps.json +++ b/Other/Leica_sl2-s_leica m50+1.5__1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Beck Tang", "camera_brand": "Leica", - "camera_model": "sl2-s", + "camera_model": "SL2-S", "lens_model": "leica m50+1.5", "camera_setting": "", "calib_dimension": { diff --git a/Other/Leica_sl2-s_m50+1.5x__6k_2.84by1_6144x2160-29.97fps.json b/Other/Leica_sl2-s_m50+1.5x__6k_2.84by1_6144x2160-29.97fps.json index 0cc0e11a..ff6ad671 100644 --- a/Other/Leica_sl2-s_m50+1.5x__6k_2.84by1_6144x2160-29.97fps.json +++ b/Other/Leica_sl2-s_m50+1.5x__6k_2.84by1_6144x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Beck Tang", "camera_brand": "Leica", - "camera_model": "sl2-s", + "camera_model": "SL2-S", "lens_model": "m50+1.5x", "camera_setting": "", "calib_dimension": { diff --git a/Other/Leica_sl2-s_m50+1.5x__C4k_1.90by1_4096x2160-29.97fps.json b/Other/Leica_sl2-s_m50+1.5x__C4k_1.90by1_4096x2160-29.97fps.json index 420b2fc1..a1e89d8e 100644 --- a/Other/Leica_sl2-s_m50+1.5x__C4k_1.90by1_4096x2160-29.97fps.json +++ b/Other/Leica_sl2-s_m50+1.5x__C4k_1.90by1_4096x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Beck Tang", "camera_brand": "Leica", - "camera_model": "sl2-s", + "camera_model": "SL2-S", "lens_model": "m50+1.5x", "camera_setting": "", "calib_dimension": { diff --git a/Other/MI_K30PRO1X_1X__1080p_16by9_1920x1080-30.05fps.json b/Other/MI_K30PRO1X_1X__1080p_16by9_1920x1080-30.05fps.json index 36ebf878..d9dc9b3e 100644 --- a/Other/MI_K30PRO1X_1X__1080p_16by9_1920x1080-30.05fps.json +++ b/Other/MI_K30PRO1X_1X__1080p_16by9_1920x1080-30.05fps.json @@ -2,7 +2,7 @@ "name": "MI_K30PRO1X_1X__1080p_16by9_1920x1080-30.05fps", "note": "", "calibrated_by": "路西", - "camera_brand": "MI", + "camera_brand": "Xiaomi", "camera_model": "K30PRO1X", "lens_model": "1X", "camera_setting": "", diff --git a/Other/Mi_12SU_4K__4k_16by9_3840x2160-58.41fps.json b/Other/Mi_12SU_4K__4k_16by9_3840x2160-58.41fps.json index 4d5bc8b7..afe890e9 100644 --- a/Other/Mi_12SU_4K__4k_16by9_3840x2160-58.41fps.json +++ b/Other/Mi_12SU_4K__4k_16by9_3840x2160-58.41fps.json @@ -2,7 +2,7 @@ "name": "Mi_12SU_4K__4k_16by9_3840x2160-58.41fps", "note": "", "calibrated_by": "AgarthaSF", - "camera_brand": "Mi", + "camera_brand": "Xiaomi", "camera_model": "12SU", "lens_model": "4K", "camera_setting": "", diff --git a/Other/Pentax_K-5 IIS_Tamron 18-250__1080p_16by9_1920x1080-25.00fps.json b/Other/Pentax_K-5 IIS_Tamron 18-250__1080p_16by9_1920x1080-25.00fps.json index b0b16358..992bb53f 100644 --- a/Other/Pentax_K-5 IIS_Tamron 18-250__1080p_16by9_1920x1080-25.00fps.json +++ b/Other/Pentax_K-5 IIS_Tamron 18-250__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "florian", "camera_brand": "Pentax", - "camera_model": "K-5 IIS", + "camera_model": "K-5 IIs", "lens_model": "Tamron 18-250", "camera_setting": "", "calib_dimension": { diff --git a/Other/Samsung_nx300_30mm_30mm_1080p_16by9_1920x1080-50.00fps.json b/Other/Samsung_nx300_30mm_30mm_1080p_16by9_1920x1080-50.00fps.json index 660b2003..abb1fc3a 100644 --- a/Other/Samsung_nx300_30mm_30mm_1080p_16by9_1920x1080-50.00fps.json +++ b/Other/Samsung_nx300_30mm_30mm_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "30mm", "calibrated_by": "T", "camera_brand": "Samsung", - "camera_model": "nx300", + "camera_model": "NX300", "lens_model": "30mm", "camera_setting": "", "calib_dimension": { diff --git a/Other/Sargo_G10+_--_--_720p_9by16_1440x2560-30.00fps.json b/Other/Sargo_G10+_--_--_720p_9by16_1440x2560-30.00fps.json index 8b468199..1c72dd00 100644 --- a/Other/Sargo_G10+_--_--_720p_9by16_1440x2560-30.00fps.json +++ b/Other/Sargo_G10+_--_--_720p_9by16_1440x2560-30.00fps.json @@ -2,7 +2,7 @@ "name": "Sargo_G10+_--_--_720p_9by16_1440x2560-30.00fps", "note": "", "calibrated_by": "Evan", - "camera_brand": "Sargo", + "camera_brand": "SARGO", "camera_model": "G10+", "lens_model": "--", "camera_setting": "--", diff --git a/Other/Sargo_G10+___1080p_16by9_1920x1080-60.00fps - Evan - 2.json b/Other/Sargo_G10+___1080p_16by9_1920x1080-60.00fps - Evan - 2.json index a9413549..95147cd4 100644 --- a/Other/Sargo_G10+___1080p_16by9_1920x1080-60.00fps - Evan - 2.json +++ b/Other/Sargo_G10+___1080p_16by9_1920x1080-60.00fps - Evan - 2.json @@ -2,7 +2,7 @@ "name": "Sargo_G10+___1080p_16by9_1920x1080-60.00fps", "note": "", "calibrated_by": "Evan", - "camera_brand": "Sargo", + "camera_brand": "SARGO", "camera_model": "G10+", "lens_model": "", "camera_setting": "", diff --git a/Other/Sargo_G10+___1080p_16by9_1920x1080-60.00fps.json b/Other/Sargo_G10+___1080p_16by9_1920x1080-60.00fps.json index 3de397ac..8981c377 100644 --- a/Other/Sargo_G10+___1080p_16by9_1920x1080-60.00fps.json +++ b/Other/Sargo_G10+___1080p_16by9_1920x1080-60.00fps.json @@ -2,7 +2,7 @@ "name": "Sargo_G10+___1080p_16by9_1920x1080-60.00fps", "note": "", "calibrated_by": "Evan", - "camera_brand": "Sargo", + "camera_brand": "SARGO", "camera_model": "G10+", "lens_model": "", "camera_setting": "", diff --git a/Other/Sargo_G10+___2.5k_16by9_2560x1440-30.00fps - Evan - 2.json b/Other/Sargo_G10+___2.5k_16by9_2560x1440-30.00fps - Evan - 2.json index 94a03a1f..bc88e3b1 100644 --- a/Other/Sargo_G10+___2.5k_16by9_2560x1440-30.00fps - Evan - 2.json +++ b/Other/Sargo_G10+___2.5k_16by9_2560x1440-30.00fps - Evan - 2.json @@ -2,7 +2,7 @@ "name": "Sargo_G10+___2.5k_16by9_2560x1440-30.00fps", "note": "", "calibrated_by": "Evan", - "camera_brand": "Sargo", + "camera_brand": "SARGO", "camera_model": "G10+", "lens_model": "", "camera_setting": "", diff --git a/Other/Sargo_G10+___2.5k_16by9_2560x1440-30.00fps.json b/Other/Sargo_G10+___2.5k_16by9_2560x1440-30.00fps.json index 10cdc027..c88a264d 100644 --- a/Other/Sargo_G10+___2.5k_16by9_2560x1440-30.00fps.json +++ b/Other/Sargo_G10+___2.5k_16by9_2560x1440-30.00fps.json @@ -2,7 +2,7 @@ "name": "Sargo_G10+___2.5k_16by9_2560x1440-30.00fps", "note": "", "calibrated_by": "Evan", - "camera_brand": "Sargo", + "camera_brand": "SARGO", "camera_model": "G10+", "lens_model": "", "camera_setting": "", diff --git a/Other/WOLFANG_GA420___1080p_16by9_1920x1080-60.00fps.json b/Other/WOLFANG_GA420___1080p_16by9_1920x1080-60.00fps.json index 31714795..a813ce67 100644 --- a/Other/WOLFANG_GA420___1080p_16by9_1920x1080-60.00fps.json +++ b/Other/WOLFANG_GA420___1080p_16by9_1920x1080-60.00fps.json @@ -2,7 +2,7 @@ "name": "WOLFANG_GA420___1080p_16by9_1920x1080-60.00fps", "note": "", "calibrated_by": "Yasuyuki Matsumoto", - "camera_brand": "WOLFANG", + "camera_brand": "Wolfang", "camera_model": "GA420", "lens_model": "", "camera_setting": "", diff --git a/Other/WOLFANG_GA420_wide__1080p_16by9_1920x1080-30.00fps - masahiro - 2.json b/Other/WOLFANG_GA420_wide__1080p_16by9_1920x1080-30.00fps - masahiro - 2.json index d2e2e34c..62bba844 100644 --- a/Other/WOLFANG_GA420_wide__1080p_16by9_1920x1080-30.00fps - masahiro - 2.json +++ b/Other/WOLFANG_GA420_wide__1080p_16by9_1920x1080-30.00fps - masahiro - 2.json @@ -2,7 +2,7 @@ "name": "WOLFANG_GA420_wide_歪補正あり_1080p_16by9_1920x1080-30.00fps", "note": "歪補正あり", "calibrated_by": "masahiro", - "camera_brand": "WOLFANG", + "camera_brand": "Wolfang", "camera_model": "GA420", "lens_model": "wide", "camera_setting": "", diff --git a/Other/WOLFANG_GA420_wide__1080p_16by9_1920x1080-30.00fps.json b/Other/WOLFANG_GA420_wide__1080p_16by9_1920x1080-30.00fps.json index 41cd7fc6..de862567 100644 --- a/Other/WOLFANG_GA420_wide__1080p_16by9_1920x1080-30.00fps.json +++ b/Other/WOLFANG_GA420_wide__1080p_16by9_1920x1080-30.00fps.json @@ -2,7 +2,7 @@ "name": "WOLFANG_GA420_wide_歪み補正なし_1080p_16by9_1920x1080-30.00fps", "note": "歪み補正なし", "calibrated_by": "masahiro", - "camera_brand": "WOLFANG", + "camera_brand": "Wolfang", "camera_model": "GA420", "lens_model": "wide", "camera_setting": "", diff --git a/Other/WOLFANG_GA420_wide__2.7k_16by9_2704x1520-30.00fps - masahiro - 2.json b/Other/WOLFANG_GA420_wide__2.7k_16by9_2704x1520-30.00fps - masahiro - 2.json index 443d35ad..0b40903b 100644 --- a/Other/WOLFANG_GA420_wide__2.7k_16by9_2704x1520-30.00fps - masahiro - 2.json +++ b/Other/WOLFANG_GA420_wide__2.7k_16by9_2704x1520-30.00fps - masahiro - 2.json @@ -2,7 +2,7 @@ "name": "WOLFANG_GA420_wide_歪み補正あり_2.7k_16by9_2704x1520-30.00fps", "note": "歪み補正あり", "calibrated_by": "masahiro", - "camera_brand": "WOLFANG", + "camera_brand": "Wolfang", "camera_model": "GA420", "lens_model": "wide", "camera_setting": "", diff --git a/Other/WOLFANG_GA420_wide__2.7k_16by9_2704x1520-30.00fps.json b/Other/WOLFANG_GA420_wide__2.7k_16by9_2704x1520-30.00fps.json index bceaa293..d75dd6c0 100644 --- a/Other/WOLFANG_GA420_wide__2.7k_16by9_2704x1520-30.00fps.json +++ b/Other/WOLFANG_GA420_wide__2.7k_16by9_2704x1520-30.00fps.json @@ -2,7 +2,7 @@ "name": "WOLFANG_GA420_wide_歪み補正なし_2.7k_16by9_2704x1520-30.00fps", "note": "歪み補正なし", "calibrated_by": "masahiro", - "camera_brand": "WOLFANG", + "camera_brand": "Wolfang", "camera_model": "GA420", "lens_model": "wide", "camera_setting": "", diff --git a/Other/WOLFGANG_GA420_Ultra wide__4k_16by9_3840x2160-30.00fps.json b/Other/WOLFGANG_GA420_Ultra wide__4k_16by9_3840x2160-30.00fps.json index 06333c67..07e984cb 100644 --- a/Other/WOLFGANG_GA420_Ultra wide__4k_16by9_3840x2160-30.00fps.json +++ b/Other/WOLFGANG_GA420_Ultra wide__4k_16by9_3840x2160-30.00fps.json @@ -2,7 +2,7 @@ "name": "WOLFGANG_GA420_Ultra wide__4k_16by9_3840x2160-30.00fps", "note": "", "calibrated_by": "JDMO", - "camera_brand": "WOLFGANG", + "camera_brand": "Wolfang", "camera_model": "GA420", "lens_model": "Ultra wide", "camera_setting": "", diff --git a/Other/drift_ghost xl pro___1080p_16by9_1920x1080-119.88fps.json b/Other/drift_ghost xl pro___1080p_16by9_1920x1080-119.88fps.json index e703e941..ac5d5df5 100644 --- a/Other/drift_ghost xl pro___1080p_16by9_1920x1080-119.88fps.json +++ b/Other/drift_ghost xl pro___1080p_16by9_1920x1080-119.88fps.json @@ -2,8 +2,8 @@ "name": "drift_ghost xl pro___1080p_16by9_1920x1080-119.88fps", "note": "", "calibrated_by": "Peng Ed", - "camera_brand": "drift", - "camera_model": "ghost xl pro", + "camera_brand": "Drift", + "camera_model": "Ghost XL Pro", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Other/drift_ghost xl pro___1080p_16by9_1920x1080-29.97fps.json b/Other/drift_ghost xl pro___1080p_16by9_1920x1080-29.97fps.json index ce1000e6..dbae4455 100644 --- a/Other/drift_ghost xl pro___1080p_16by9_1920x1080-29.97fps.json +++ b/Other/drift_ghost xl pro___1080p_16by9_1920x1080-29.97fps.json @@ -2,8 +2,8 @@ "name": "drift_ghost xl pro___1080p_16by9_1920x1080-29.97fps", "note": "", "calibrated_by": "Peng Ed", - "camera_brand": "drift", - "camera_model": "ghost xl pro", + "camera_brand": "Drift", + "camera_model": "Ghost XL Pro", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Other/drift_ghost xl pro___1080p_16by9_1920x1080-59.94fps (2).json b/Other/drift_ghost xl pro___1080p_16by9_1920x1080-59.94fps (2).json index d2de6aa1..0091d38d 100644 --- a/Other/drift_ghost xl pro___1080p_16by9_1920x1080-59.94fps (2).json +++ b/Other/drift_ghost xl pro___1080p_16by9_1920x1080-59.94fps (2).json @@ -2,8 +2,8 @@ "name": "drift_ghost xl pro___1080p_16by9_1920x1080-59.94fps", "note": "", "calibrated_by": "Peng Ed", - "camera_brand": "drift", - "camera_model": "ghost xl pro", + "camera_brand": "Drift", + "camera_model": "Ghost XL Pro", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Other/drift_ghost xl pro___2.5k_16by9_2688x1520-59.94fps.json b/Other/drift_ghost xl pro___2.5k_16by9_2688x1520-59.94fps.json index d2320614..62858667 100644 --- a/Other/drift_ghost xl pro___2.5k_16by9_2688x1520-59.94fps.json +++ b/Other/drift_ghost xl pro___2.5k_16by9_2688x1520-59.94fps.json @@ -2,8 +2,8 @@ "name": "drift_ghost xl pro___2.5k_16by9_2688x1520-59.94fps", "note": "", "calibrated_by": "Peng Ed", - "camera_brand": "drift", - "camera_model": "ghost xl pro", + "camera_brand": "Drift", + "camera_model": "Ghost XL Pro", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Other/iqoo_10_23mm 1_1200s_4k_16by9_3840x2160-59.99fps.json b/Other/iqoo_10_23mm 1_1200s_4k_16by9_3840x2160-59.99fps.json index c73cfe87..09bf2b1e 100644 --- a/Other/iqoo_10_23mm 1_1200s_4k_16by9_3840x2160-59.99fps.json +++ b/Other/iqoo_10_23mm 1_1200s_4k_16by9_3840x2160-59.99fps.json @@ -2,7 +2,7 @@ "name": "iqoo_10_23mm 1×_1/200s_4k_16by9_3840x2160-59.99fps", "note": "", "calibrated_by": "U0 A399", - "camera_brand": "iqoo", + "camera_brand": "IQOO", "camera_model": "10", "lens_model": "23mm 1×", "camera_setting": "1/200s", diff --git a/Other/niceboy_vega x play_all-glass, 170_full hd,_1080p_16by9_1920x1080-59.99fps.json b/Other/niceboy_vega x play_all-glass, 170_full hd,_1080p_16by9_1920x1080-59.99fps.json index c58922de..76a8ba0e 100644 --- a/Other/niceboy_vega x play_all-glass, 170_full hd,_1080p_16by9_1920x1080-59.99fps.json +++ b/Other/niceboy_vega x play_all-glass, 170_full hd,_1080p_16by9_1920x1080-59.99fps.json @@ -2,8 +2,8 @@ "name": "niceboy_vega x play_all-glass, 170°_full hd,_1080p_16by9_1920x1080-59.99fps", "note": "", "calibrated_by": "Atuk", - "camera_brand": "niceboy", - "camera_model": "vega x play", + "camera_brand": "Niceboy", + "camera_model": "VEGA x PLAY", "lens_model": "all-glass, 170°", "camera_setting": "full hd,", "calib_dimension": { diff --git a/Other/surfola_530___2.7k_16by9_2704x1520-60.00fps.json b/Other/surfola_530___2.7k_16by9_2704x1520-60.00fps.json index 6faf6df4..f10c238c 100644 --- a/Other/surfola_530___2.7k_16by9_2704x1520-60.00fps.json +++ b/Other/surfola_530___2.7k_16by9_2704x1520-60.00fps.json @@ -2,7 +2,7 @@ "name": "surfola_530___2.7k_16by9_2704x1520-60.00fps", "note": "", "calibrated_by": "Leonardo", - "camera_brand": "surfola", + "camera_brand": "Surfola", "camera_model": "530", "lens_model": "", "camera_setting": "", diff --git a/Other/wolfang_ga400___4k_16by9_3840x2160-30.00fps.json b/Other/wolfang_ga400___4k_16by9_3840x2160-30.00fps.json index 38f9aaf5..7d4320ef 100644 --- a/Other/wolfang_ga400___4k_16by9_3840x2160-30.00fps.json +++ b/Other/wolfang_ga400___4k_16by9_3840x2160-30.00fps.json @@ -2,7 +2,7 @@ "name": "wolfang_ga400___4k_16by9_3840x2160-30.00fps", "note": "", "calibrated_by": "gaetan dome", - "camera_brand": "wolfang", + "camera_brand": "Wolfang", "camera_model": "ga400", "lens_model": "", "camera_setting": "", diff --git a/Panasonic/Panasonic_GH5s_12-60__4k_16by9_3840x2160-59.94fps - 2.json b/Panasonic/Panasonic_GH5s_12-60__4k_16by9_3840x2160-59.94fps - 2.json index bb030385..9ca0de2d 100644 --- a/Panasonic/Panasonic_GH5s_12-60__4k_16by9_3840x2160-59.94fps - 2.json +++ b/Panasonic/Panasonic_GH5s_12-60__4k_16by9_3840x2160-59.94fps - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "张柢", "camera_brand": "Panasonic", - "camera_model": "GH5s", + "camera_model": "GH5S", "lens_model": "12-60", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_GH5s_14-140_1160_C4k_1.90by1_4096x2160-25.00fps - Shao Mingxin.json b/Panasonic/Panasonic_GH5s_14-140_1160_C4k_1.90by1_4096x2160-25.00fps - Shao Mingxin.json index c2cce3a8..f7dfb8ea 100644 --- a/Panasonic/Panasonic_GH5s_14-140_1160_C4k_1.90by1_4096x2160-25.00fps - Shao Mingxin.json +++ b/Panasonic/Panasonic_GH5s_14-140_1160_C4k_1.90by1_4096x2160-25.00fps - Shao Mingxin.json @@ -3,7 +3,7 @@ "note": "ISO3200", "calibrated_by": "Shao Mingxin", "camera_brand": "Panasonic", - "camera_model": "GH5s", + "camera_model": "GH5S", "lens_model": "14-140", "camera_setting": "1/160快门", "calib_dimension": { diff --git a/Panasonic/Panasonic_GH5s_14-140_1160_C4k_1.90by1_4096x2160-25.00fps.json b/Panasonic/Panasonic_GH5s_14-140_1160_C4k_1.90by1_4096x2160-25.00fps.json index 2dee290a..126a8e91 100644 --- a/Panasonic/Panasonic_GH5s_14-140_1160_C4k_1.90by1_4096x2160-25.00fps.json +++ b/Panasonic/Panasonic_GH5s_14-140_1160_C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "ISO3200", "calibrated_by": "Shao Mingxin", "camera_brand": "Panasonic", - "camera_model": "GH5s", + "camera_model": "GH5S", "lens_model": "14-140", "camera_setting": "1/160快门", "calib_dimension": { diff --git a/Panasonic/Panasonic_GH5s_15mm__4k_16by9_3840x2160-29.97fps.json b/Panasonic/Panasonic_GH5s_15mm__4k_16by9_3840x2160-29.97fps.json index 4c71848e..1ef5d6ef 100644 --- a/Panasonic/Panasonic_GH5s_15mm__4k_16by9_3840x2160-29.97fps.json +++ b/Panasonic/Panasonic_GH5s_15mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "jasoncow", "camera_brand": "Panasonic", - "camera_model": "GH5s", + "camera_model": "GH5S", "lens_model": "15mm", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_GH5s_7.5mm laowa_C_C4k_1.90by1_4096x2160-25.00fps.json b/Panasonic/Panasonic_GH5s_7.5mm laowa_C_C4k_1.90by1_4096x2160-25.00fps.json index a1137926..0354162f 100644 --- a/Panasonic/Panasonic_GH5s_7.5mm laowa_C_C4k_1.90by1_4096x2160-25.00fps.json +++ b/Panasonic/Panasonic_GH5s_7.5mm laowa_C_C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "CHUNCHENG", "camera_brand": "Panasonic", - "camera_model": "GH5s", + "camera_model": "GH5S", "lens_model": "7.5mm laowa", "camera_setting": "C", "calib_dimension": { diff --git a/Panasonic/Panasonic_GH5s_LAOWA 7.5MM_C_C4k_1.90by1_4096x2160-50.00fps.json b/Panasonic/Panasonic_GH5s_LAOWA 7.5MM_C_C4k_1.90by1_4096x2160-50.00fps.json index 256ea0fa..e4ef3c57 100644 --- a/Panasonic/Panasonic_GH5s_LAOWA 7.5MM_C_C4k_1.90by1_4096x2160-50.00fps.json +++ b/Panasonic/Panasonic_GH5s_LAOWA 7.5MM_C_C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "CHUNCHENG", "camera_brand": "Panasonic", - "camera_model": "GH5s", + "camera_model": "GH5S", "lens_model": "LAOWA 7.5MM", "camera_setting": "C", "calib_dimension": { diff --git a/Panasonic/Panasonic_GH5s_Laowa 7.5mm f2.8__4k_16by9_3840x2160-25.00fps.json b/Panasonic/Panasonic_GH5s_Laowa 7.5mm f2.8__4k_16by9_3840x2160-25.00fps.json index 3a58f44d..ba9bee94 100644 --- a/Panasonic/Panasonic_GH5s_Laowa 7.5mm f2.8__4k_16by9_3840x2160-25.00fps.json +++ b/Panasonic/Panasonic_GH5s_Laowa 7.5mm f2.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Patryk Strauss", "camera_brand": "Panasonic", - "camera_model": "GH5s", + "camera_model": "GH5S", "lens_model": "Laowa 7.5mm f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_GH5s_Laowa 7.5mm_10 bit_4k_16by9_3840x2160-29.97fps.json b/Panasonic/Panasonic_GH5s_Laowa 7.5mm_10 bit_4k_16by9_3840x2160-29.97fps.json index 26430efe..9b57e4b3 100644 --- a/Panasonic/Panasonic_GH5s_Laowa 7.5mm_10 bit_4k_16by9_3840x2160-29.97fps.json +++ b/Panasonic/Panasonic_GH5s_Laowa 7.5mm_10 bit_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ben Toogood", "camera_brand": "Panasonic", - "camera_model": "GH5s", + "camera_model": "GH5S", "lens_model": "Laowa 7.5mm", "camera_setting": "10 bit", "calib_dimension": { diff --git a/Panasonic/Panasonic_GH5s_Laowa 7.5mm_10b it_4k_16by9_3840x2160-23.98fps.json b/Panasonic/Panasonic_GH5s_Laowa 7.5mm_10b it_4k_16by9_3840x2160-23.98fps.json index 28329155..be9b2f22 100644 --- a/Panasonic/Panasonic_GH5s_Laowa 7.5mm_10b it_4k_16by9_3840x2160-23.98fps.json +++ b/Panasonic/Panasonic_GH5s_Laowa 7.5mm_10b it_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ben Toogood", "camera_brand": "Panasonic", - "camera_model": "GH5s", + "camera_model": "GH5S", "lens_model": "Laowa 7.5mm", "camera_setting": "10b it", "calib_dimension": { diff --git a/Panasonic/Panasonic_GH5s_Laowa 7.5mm_8 bit_4k_16by9_3840x2160-59.94fps.json b/Panasonic/Panasonic_GH5s_Laowa 7.5mm_8 bit_4k_16by9_3840x2160-59.94fps.json index 6ee4eb81..c6668a36 100644 --- a/Panasonic/Panasonic_GH5s_Laowa 7.5mm_8 bit_4k_16by9_3840x2160-59.94fps.json +++ b/Panasonic/Panasonic_GH5s_Laowa 7.5mm_8 bit_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ben Toogood", "camera_brand": "Panasonic", - "camera_model": "GH5s", + "camera_model": "GH5S", "lens_model": "Laowa 7.5mm", "camera_setting": "8 bit", "calib_dimension": { diff --git a/Panasonic/Panasonic_GH5s_Laowa 7.5mm_C_4k_16by9_3840x2160-25.00fps.json b/Panasonic/Panasonic_GH5s_Laowa 7.5mm_C_4k_16by9_3840x2160-25.00fps.json index 4fdd0f67..2a3d3380 100644 --- a/Panasonic/Panasonic_GH5s_Laowa 7.5mm_C_4k_16by9_3840x2160-25.00fps.json +++ b/Panasonic/Panasonic_GH5s_Laowa 7.5mm_C_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "CHUNCHENG", "camera_brand": "Panasonic", - "camera_model": "GH5s", + "camera_model": "GH5S", "lens_model": "Laowa 7.5mm", "camera_setting": "C", "calib_dimension": { diff --git a/Panasonic/Panasonic_GH5s_Samyang 14mm_Viltrox reducer_C4k_1.90by1_4096x2160-50.00fps.json b/Panasonic/Panasonic_GH5s_Samyang 14mm_Viltrox reducer_C4k_1.90by1_4096x2160-50.00fps.json index c19fdb2a..2d7274c0 100644 --- a/Panasonic/Panasonic_GH5s_Samyang 14mm_Viltrox reducer_C4k_1.90by1_4096x2160-50.00fps.json +++ b/Panasonic/Panasonic_GH5s_Samyang 14mm_Viltrox reducer_C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "4K 50p", "calibrated_by": "deus max", "camera_brand": "Panasonic", - "camera_model": "GH5s", + "camera_model": "GH5S", "lens_model": "Samyang 14mm", "camera_setting": "Viltrox reducer", "calib_dimension": { diff --git a/Panasonic/Panasonic_GH5s_Samyang 85mm F1.5_16x9 V-log-l_C4k_1.90by1_4096x2160-59.94fps.json b/Panasonic/Panasonic_GH5s_Samyang 85mm F1.5_16x9 V-log-l_C4k_1.90by1_4096x2160-59.94fps.json index 33955c20..4a759013 100644 --- a/Panasonic/Panasonic_GH5s_Samyang 85mm F1.5_16x9 V-log-l_C4k_1.90by1_4096x2160-59.94fps.json +++ b/Panasonic/Panasonic_GH5s_Samyang 85mm F1.5_16x9 V-log-l_C4k_1.90by1_4096x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Niek Westerink", "camera_brand": "Panasonic", - "camera_model": "GH5s", + "camera_model": "GH5S", "lens_model": "Samyang 85mm F1.5", "camera_setting": "16x9 V-log-l", "calib_dimension": { diff --git a/Panasonic/Panasonic_GH5s_lumix 12-35__C4k_1.90by1_4096x2160-25.00fps.json b/Panasonic/Panasonic_GH5s_lumix 12-35__C4k_1.90by1_4096x2160-25.00fps.json index 4b3a7551..b0144366 100644 --- a/Panasonic/Panasonic_GH5s_lumix 12-35__C4k_1.90by1_4096x2160-25.00fps.json +++ b/Panasonic/Panasonic_GH5s_lumix 12-35__C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "邓硕", "camera_brand": "Panasonic", - "camera_model": "GH5s", + "camera_model": "GH5S", "lens_model": "lumix 12-35", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_LUMIX S52x_Sigma f1.4 30mm DC DN__1080p_16by9_1920x1080-100.00fps.json b/Panasonic/Panasonic_LUMIX S52x_Sigma f1.4 30mm DC DN__1080p_16by9_1920x1080-100.00fps.json index 4d3b7aa7..a38f6a2a 100644 --- a/Panasonic/Panasonic_LUMIX S52x_Sigma f1.4 30mm DC DN__1080p_16by9_1920x1080-100.00fps.json +++ b/Panasonic/Panasonic_LUMIX S52x_Sigma f1.4 30mm DC DN__1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "darran thompson", "camera_brand": "Panasonic", - "camera_model": "LUMIX S52x", + "camera_model": "LUMIX S52X", "lens_model": "Sigma f1.4 30mm DC DN", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_Lumix G9_14-140_60_4k_16by9_3840x2160-59.94fps.json b/Panasonic/Panasonic_Lumix G9_14-140_60_4k_16by9_3840x2160-59.94fps.json index 654d8610..8979bd8b 100644 --- a/Panasonic/Panasonic_Lumix G9_14-140_60_4k_16by9_3840x2160-59.94fps.json +++ b/Panasonic/Panasonic_Lumix G9_14-140_60_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "钱胜", "camera_brand": "Panasonic", - "camera_model": "Lumix G9", + "camera_model": "LUMIX G9", "lens_model": "14-140", "camera_setting": "60", "calib_dimension": { diff --git a/Panasonic/Panasonic_Lumix G9_7Artisans Vision 50mm T1.4 APSC__4k_16by9_3840x2160-50.00fps.json b/Panasonic/Panasonic_Lumix G9_7Artisans Vision 50mm T1.4 APSC__4k_16by9_3840x2160-50.00fps.json index dcfb997c..f822a62f 100644 --- a/Panasonic/Panasonic_Lumix G9_7Artisans Vision 50mm T1.4 APSC__4k_16by9_3840x2160-50.00fps.json +++ b/Panasonic/Panasonic_Lumix G9_7Artisans Vision 50mm T1.4 APSC__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Wojciech Dębski", "camera_brand": "Panasonic", - "camera_model": "Lumix G9", + "camera_model": "LUMIX G9", "lens_model": "7Artisans Vision 50mm T1.4 APSC", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_Lumix G9_Leica Vario 12-60 f2.8_25mm f3,5 SS1000_4k_16by9_3840x2160-59.94fps.json b/Panasonic/Panasonic_Lumix G9_Leica Vario 12-60 f2.8_25mm f3,5 SS1000_4k_16by9_3840x2160-59.94fps.json index af127635..f9ff92c9 100644 --- a/Panasonic/Panasonic_Lumix G9_Leica Vario 12-60 f2.8_25mm f3,5 SS1000_4k_16by9_3840x2160-59.94fps.json +++ b/Panasonic/Panasonic_Lumix G9_Leica Vario 12-60 f2.8_25mm f3,5 SS1000_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Leandra Holder", "camera_brand": "Panasonic", - "camera_model": "Lumix G9", + "camera_model": "LUMIX G9", "lens_model": "Leica Vario 12-60 f2.8", "camera_setting": "25mm f3,5 SS1000", "calib_dimension": { diff --git a/Panasonic/Panasonic_Lumix G9_Olympus M.Zuiko Digital 17 mm f1.8__4k_16by9_3840x2160-25.00fps.json b/Panasonic/Panasonic_Lumix G9_Olympus M.Zuiko Digital 17 mm f1.8__4k_16by9_3840x2160-25.00fps.json index 763d719d..b993cf94 100644 --- a/Panasonic/Panasonic_Lumix G9_Olympus M.Zuiko Digital 17 mm f1.8__4k_16by9_3840x2160-25.00fps.json +++ b/Panasonic/Panasonic_Lumix G9_Olympus M.Zuiko Digital 17 mm f1.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "FOOJI", "camera_brand": "Panasonic", - "camera_model": "Lumix G9", + "camera_model": "LUMIX G9", "lens_model": "Olympus M.Zuiko Digital 17 mm f/1.8", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_Lumix G9_Sigma 30mm f1.4_f1,4 SS 1000_4k_16by9_3840x2160-59.94fps.json b/Panasonic/Panasonic_Lumix G9_Sigma 30mm f1.4_f1,4 SS 1000_4k_16by9_3840x2160-59.94fps.json index 874f56c4..d46c6db9 100644 --- a/Panasonic/Panasonic_Lumix G9_Sigma 30mm f1.4_f1,4 SS 1000_4k_16by9_3840x2160-59.94fps.json +++ b/Panasonic/Panasonic_Lumix G9_Sigma 30mm f1.4_f1,4 SS 1000_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Leandra Holder", "camera_brand": "Panasonic", - "camera_model": "Lumix G9", + "camera_model": "LUMIX G9", "lens_model": "Sigma 30mm f1.4", "camera_setting": "f1,4 SS 1000", "calib_dimension": { diff --git a/Panasonic/Panasonic_Lumix GH5S_11-16 MM__1080p_16by9_1920x1080-25.00fps.json b/Panasonic/Panasonic_Lumix GH5S_11-16 MM__1080p_16by9_1920x1080-25.00fps.json index 5774da96..1d735afd 100644 --- a/Panasonic/Panasonic_Lumix GH5S_11-16 MM__1080p_16by9_1920x1080-25.00fps.json +++ b/Panasonic/Panasonic_Lumix GH5S_11-16 MM__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "IRFAN SYAPUTRA", "camera_brand": "Panasonic", - "camera_model": "Lumix GH5S", + "camera_model": "LUMIX GH5S", "lens_model": "11-16 MM", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_Lumix GH5S_12-100_16_9_4k_16by9_3840x2160-25.00fps.json b/Panasonic/Panasonic_Lumix GH5S_12-100_16_9_4k_16by9_3840x2160-25.00fps.json index e319ca73..c3454635 100644 --- a/Panasonic/Panasonic_Lumix GH5S_12-100_16_9_4k_16by9_3840x2160-25.00fps.json +++ b/Panasonic/Panasonic_Lumix GH5S_12-100_16_9_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "16:9", "calibrated_by": "Сергей Емаев", "camera_brand": "Panasonic", - "camera_model": "Lumix GH5S", + "camera_model": "LUMIX GH5S", "lens_model": "12-100", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_Lumix GH5S_12-100__2.7k_4by3_3328x2496-50.00fps - 3.json b/Panasonic/Panasonic_Lumix GH5S_12-100__2.7k_4by3_3328x2496-50.00fps - 3.json index 3d6e04a5..f769a573 100644 --- a/Panasonic/Panasonic_Lumix GH5S_12-100__2.7k_4by3_3328x2496-50.00fps - 3.json +++ b/Panasonic/Panasonic_Lumix GH5S_12-100__2.7k_4by3_3328x2496-50.00fps - 3.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Артур Валишин", "camera_brand": "Panasonic", - "camera_model": "Lumix GH5S", + "camera_model": "LUMIX GH5S", "lens_model": "12-100", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_Lumix GH5S_12-100__2.7k_4by3_3328x2496-50.00fps.json b/Panasonic/Panasonic_Lumix GH5S_12-100__2.7k_4by3_3328x2496-50.00fps.json index 616b18b4..6b0fb1dc 100644 --- a/Panasonic/Panasonic_Lumix GH5S_12-100__2.7k_4by3_3328x2496-50.00fps.json +++ b/Panasonic/Panasonic_Lumix GH5S_12-100__2.7k_4by3_3328x2496-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Сергей Емаев", "camera_brand": "Panasonic", - "camera_model": "Lumix GH5S", + "camera_model": "LUMIX GH5S", "lens_model": "12-100", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_Lumix GH5S_Lumix 12-25_12mm_4k_16by9_3840x2160-50.00fps.json b/Panasonic/Panasonic_Lumix GH5S_Lumix 12-25_12mm_4k_16by9_3840x2160-50.00fps.json index ac0b9981..0fe41815 100644 --- a/Panasonic/Panasonic_Lumix GH5S_Lumix 12-25_12mm_4k_16by9_3840x2160-50.00fps.json +++ b/Panasonic/Panasonic_Lumix GH5S_Lumix 12-25_12mm_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Abdul", "camera_brand": "Panasonic", - "camera_model": "Lumix GH5S", + "camera_model": "LUMIX GH5S", "lens_model": "Lumix 12-25", "camera_setting": "12mm", "calib_dimension": { diff --git a/Panasonic/Panasonic_Lumix GH5S_Lumix 12-35_18mm_4k_16by9_3840x2160-50.00fps.json b/Panasonic/Panasonic_Lumix GH5S_Lumix 12-35_18mm_4k_16by9_3840x2160-50.00fps.json index 455c32cf..3dd9a977 100644 --- a/Panasonic/Panasonic_Lumix GH5S_Lumix 12-35_18mm_4k_16by9_3840x2160-50.00fps.json +++ b/Panasonic/Panasonic_Lumix GH5S_Lumix 12-35_18mm_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Abdul", "camera_brand": "Panasonic", - "camera_model": "Lumix GH5S", + "camera_model": "LUMIX GH5S", "lens_model": "Lumix 12-35", "camera_setting": "18mm", "calib_dimension": { diff --git a/Panasonic/Panasonic_Lumix GH5S_Olympus 12-100__1080p_16by9_1920x1080-25.00fps.json b/Panasonic/Panasonic_Lumix GH5S_Olympus 12-100__1080p_16by9_1920x1080-25.00fps.json index 7618a16d..fe1af9f1 100644 --- a/Panasonic/Panasonic_Lumix GH5S_Olympus 12-100__1080p_16by9_1920x1080-25.00fps.json +++ b/Panasonic/Panasonic_Lumix GH5S_Olympus 12-100__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Сергей Емаев", "camera_brand": "Panasonic", - "camera_model": "Lumix GH5S", + "camera_model": "LUMIX GH5S", "lens_model": "Olympus 12-100", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_Lumix GH5S__dcinelike_C4k_1.90by1_4096x2160-50.00fps.json b/Panasonic/Panasonic_Lumix GH5S__dcinelike_C4k_1.90by1_4096x2160-50.00fps.json index 508b8fe6..a870a0eb 100644 --- a/Panasonic/Panasonic_Lumix GH5S__dcinelike_C4k_1.90by1_4096x2160-50.00fps.json +++ b/Panasonic/Panasonic_Lumix GH5S__dcinelike_C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "man focus", "calibrated_by": "davide Morandi", "camera_brand": "Panasonic", - "camera_model": "Lumix GH5S", + "camera_model": "LUMIX GH5S", "lens_model": "", "camera_setting": "dcinelike", "calib_dimension": { diff --git a/Panasonic/Panasonic_Lumix GH5s_Leica DG 10-25f1.7_-8bit_4k_16by9_3840x2160-50.00fps.json b/Panasonic/Panasonic_Lumix GH5s_Leica DG 10-25f1.7_-8bit_4k_16by9_3840x2160-50.00fps.json index f3b9ca17..5a345042 100644 --- a/Panasonic/Panasonic_Lumix GH5s_Leica DG 10-25f1.7_-8bit_4k_16by9_3840x2160-50.00fps.json +++ b/Panasonic/Panasonic_Lumix GH5s_Leica DG 10-25f1.7_-8bit_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "25mm", "calibrated_by": "Rongthep22", "camera_brand": "Panasonic", - "camera_model": "Lumix GH5s", + "camera_model": "LUMIX GH5S", "lens_model": "Leica DG 10-25f1.7", "camera_setting": "-8bit", "calib_dimension": { diff --git a/Panasonic/Panasonic_Lumix GH5s_Leica DG 10-25f1.7_10mm_4k_16by9_3840x2160-25.00fps.json b/Panasonic/Panasonic_Lumix GH5s_Leica DG 10-25f1.7_10mm_4k_16by9_3840x2160-25.00fps.json index 64bea92a..f7e52763 100644 --- a/Panasonic/Panasonic_Lumix GH5s_Leica DG 10-25f1.7_10mm_4k_16by9_3840x2160-25.00fps.json +++ b/Panasonic/Panasonic_Lumix GH5s_Leica DG 10-25f1.7_10mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "10mm", "calibrated_by": "Rongthep22", "camera_brand": "Panasonic", - "camera_model": "Lumix GH5s", + "camera_model": "LUMIX GH5S", "lens_model": "Leica DG 10-25f1.7", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_Lumix GH6_10-25__5k_1.89by1_5728x3024-25.00fps.json b/Panasonic/Panasonic_Lumix GH6_10-25__5k_1.89by1_5728x3024-25.00fps.json index 6c64f4b2..b0b55e5b 100644 --- a/Panasonic/Panasonic_Lumix GH6_10-25__5k_1.89by1_5728x3024-25.00fps.json +++ b/Panasonic/Panasonic_Lumix GH6_10-25__5k_1.89by1_5728x3024-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Pierre Guéguen", "camera_brand": "Panasonic", - "camera_model": "Lumix GH6", + "camera_model": "LUMIX GH6", "lens_model": "10-25", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_Lumix GH6_9MMF1.7__4k_16by9_3840x2160-59.94fps.json b/Panasonic/Panasonic_Lumix GH6_9MMF1.7__4k_16by9_3840x2160-59.94fps.json index d1f95fdd..46d1926f 100644 --- a/Panasonic/Panasonic_Lumix GH6_9MMF1.7__4k_16by9_3840x2160-59.94fps.json +++ b/Panasonic/Panasonic_Lumix GH6_9MMF1.7__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "TTFPV", "camera_brand": "Panasonic", - "camera_model": "Lumix GH6", + "camera_model": "LUMIX GH6", "lens_model": "9MM/F1.7", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_Lumix GH6_Laowa 7.5__4k_16by9_3840x2160-59.94fps.json b/Panasonic/Panasonic_Lumix GH6_Laowa 7.5__4k_16by9_3840x2160-59.94fps.json index f6d3d36d..4252cc13 100644 --- a/Panasonic/Panasonic_Lumix GH6_Laowa 7.5__4k_16by9_3840x2160-59.94fps.json +++ b/Panasonic/Panasonic_Lumix GH6_Laowa 7.5__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Elvis- Hj", "camera_brand": "Panasonic", - "camera_model": "Lumix GH6", + "camera_model": "LUMIX GH6", "lens_model": "Laowa 7.5", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_Lumix GH6_Panasonic Leica DG Summilux 9mm 1.7__5k_1.89by1_5727x3024-23.98fps.json b/Panasonic/Panasonic_Lumix GH6_Panasonic Leica DG Summilux 9mm 1.7__5k_1.89by1_5727x3024-23.98fps.json index ae64eddb..65cf0717 100644 --- a/Panasonic/Panasonic_Lumix GH6_Panasonic Leica DG Summilux 9mm 1.7__5k_1.89by1_5727x3024-23.98fps.json +++ b/Panasonic/Panasonic_Lumix GH6_Panasonic Leica DG Summilux 9mm 1.7__5k_1.89by1_5727x3024-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "V V", "camera_brand": "Panasonic", - "camera_model": "Lumix GH6", + "camera_model": "LUMIX GH6", "lens_model": "Panasonic Leica DG Summilux 9mm 1.7", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_Lumix S5ii_Lumix 35mm 1.8_C_C4k_1.90by1_4096x2160-29.97fps.json b/Panasonic/Panasonic_Lumix S5ii_Lumix 35mm 1.8_C_C4k_1.90by1_4096x2160-29.97fps.json index 1e00f1b2..5c4928c1 100644 --- a/Panasonic/Panasonic_Lumix S5ii_Lumix 35mm 1.8_C_C4k_1.90by1_4096x2160-29.97fps.json +++ b/Panasonic/Panasonic_Lumix S5ii_Lumix 35mm 1.8_C_C4k_1.90by1_4096x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Raeez", "camera_brand": "Panasonic", - "camera_model": "Lumix S5ii", + "camera_model": "Lumix S5II", "lens_model": "Lumix 35mm 1.8", "camera_setting": "C", "calib_dimension": { diff --git a/Panasonic/Panasonic_Lumix dc-s5_24-105__4k_16by9_3840x2160-29.97fps.json b/Panasonic/Panasonic_Lumix dc-s5_24-105__4k_16by9_3840x2160-29.97fps.json index 4c69eb87..06a510a6 100644 --- a/Panasonic/Panasonic_Lumix dc-s5_24-105__4k_16by9_3840x2160-29.97fps.json +++ b/Panasonic/Panasonic_Lumix dc-s5_24-105__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "George2022", "camera_brand": "Panasonic", - "camera_model": "Lumix dc-s5", + "camera_model": "LUMIX DC-S5", "lens_model": "24-105", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_Lumix gh4_xiaoyi 42.5__4k_16by9_3840x2160-29.97fps.json b/Panasonic/Panasonic_Lumix gh4_xiaoyi 42.5__4k_16by9_3840x2160-29.97fps.json index 2c562ef7..8dbc6648 100644 --- a/Panasonic/Panasonic_Lumix gh4_xiaoyi 42.5__4k_16by9_3840x2160-29.97fps.json +++ b/Panasonic/Panasonic_Lumix gh4_xiaoyi 42.5__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Panasonic", - "camera_model": "Lumix gh4", + "camera_model": "Lumix GH4", "lens_model": "xiaoyi 42.5", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_S5ii_Sigma 28-70_35mm_4k_16by9_3840x2160-25.00fps.json b/Panasonic/Panasonic_S5ii_Sigma 28-70_35mm_4k_16by9_3840x2160-25.00fps.json index 926cf11d..8997164d 100644 --- a/Panasonic/Panasonic_S5ii_Sigma 28-70_35mm_4k_16by9_3840x2160-25.00fps.json +++ b/Panasonic/Panasonic_S5ii_Sigma 28-70_35mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "35mm", "calibrated_by": "ADRIÀ", "camera_brand": "Panasonic", - "camera_model": "S5ii", + "camera_model": "S5II", "lens_model": "Sigma 28-70", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_S5iix_Sigma 24-70 DG DN_4k ProRes Full Frame_C4k_1.90by1_4096x2160-23.98fps.json b/Panasonic/Panasonic_S5iix_Sigma 24-70 DG DN_4k ProRes Full Frame_C4k_1.90by1_4096x2160-23.98fps.json index aba46369..1359f974 100644 --- a/Panasonic/Panasonic_S5iix_Sigma 24-70 DG DN_4k ProRes Full Frame_C4k_1.90by1_4096x2160-23.98fps.json +++ b/Panasonic/Panasonic_S5iix_Sigma 24-70 DG DN_4k ProRes Full Frame_C4k_1.90by1_4096x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "24 fps", "calibrated_by": "Jonas Jezreel Cena", "camera_brand": "Panasonic", - "camera_model": "S5iix", + "camera_model": "S5IIX", "lens_model": "Sigma 24-70 DG DN", "camera_setting": "4k ProRes Full Frame", "calib_dimension": { diff --git a/Panasonic/Panasonic_S5m2_20-60mm @ 20mm_all-off_5k_3by2_5952x3968-29.97fps.json b/Panasonic/Panasonic_S5m2_20-60mm @ 20mm_all-off_5k_3by2_5952x3968-29.97fps.json index 900a18f2..e5d8baa4 100644 --- a/Panasonic/Panasonic_S5m2_20-60mm @ 20mm_all-off_5k_3by2_5952x3968-29.97fps.json +++ b/Panasonic/Panasonic_S5m2_20-60mm @ 20mm_all-off_5k_3by2_5952x3968-29.97fps.json @@ -3,7 +3,7 @@ "note": "-", "calibrated_by": "No.19FALCON", "camera_brand": "Panasonic", - "camera_model": "S5m2", + "camera_model": "S5M2", "lens_model": "20-60mm @ 20mm", "camera_setting": "all-off", "calib_dimension": { diff --git a/Panasonic/Panasonic_S5m2_20-60mm @ 35mm_all-off_5k_3by2_5952x3968-29.97fps.json b/Panasonic/Panasonic_S5m2_20-60mm @ 35mm_all-off_5k_3by2_5952x3968-29.97fps.json index f04b5ea4..428eb0a0 100644 --- a/Panasonic/Panasonic_S5m2_20-60mm @ 35mm_all-off_5k_3by2_5952x3968-29.97fps.json +++ b/Panasonic/Panasonic_S5m2_20-60mm @ 35mm_all-off_5k_3by2_5952x3968-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "No.19FALCON", "camera_brand": "Panasonic", - "camera_model": "S5m2", + "camera_model": "S5M2", "lens_model": "20-60mm @ 35mm", "camera_setting": "all-off", "calib_dimension": { diff --git a/Panasonic/Panasonic_g100_1260-12__1080p_16by9_1920x1080-25.00fps - 2.json b/Panasonic/Panasonic_g100_1260-12__1080p_16by9_1920x1080-25.00fps - 2.json index 010ae6bb..2a12c311 100644 --- a/Panasonic/Panasonic_g100_1260-12__1080p_16by9_1920x1080-25.00fps - 2.json +++ b/Panasonic/Panasonic_g100_1260-12__1080p_16by9_1920x1080-25.00fps - 2.json @@ -7,7 +7,7 @@ "calibrated_by": "陈景霖", "calibrator_version": "1.5.4", "camera_brand": "Panasonic", - "camera_model": "g100", + "camera_model": "G100", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Panasonic/Panasonic_g100_1260-12__1080p_16by9_1920x1080-25.00fps - 3.json b/Panasonic/Panasonic_g100_1260-12__1080p_16by9_1920x1080-25.00fps - 3.json index 91531d1c..9f24559c 100644 --- a/Panasonic/Panasonic_g100_1260-12__1080p_16by9_1920x1080-25.00fps - 3.json +++ b/Panasonic/Panasonic_g100_1260-12__1080p_16by9_1920x1080-25.00fps - 3.json @@ -7,7 +7,7 @@ "calibrated_by": "陈景霖", "calibrator_version": "1.5.4", "camera_brand": "Panasonic", - "camera_model": "g100", + "camera_model": "G100", "camera_setting": "全防抖", "compatible_settings": [], "crop": null, diff --git a/Panasonic/Panasonic_g100_1260-12__1080p_16by9_1920x1080-25.00fps - 4.json b/Panasonic/Panasonic_g100_1260-12__1080p_16by9_1920x1080-25.00fps - 4.json index ee01ea24..457d0d91 100644 --- a/Panasonic/Panasonic_g100_1260-12__1080p_16by9_1920x1080-25.00fps - 4.json +++ b/Panasonic/Panasonic_g100_1260-12__1080p_16by9_1920x1080-25.00fps - 4.json @@ -7,7 +7,7 @@ "calibrated_by": "陈景霖", "calibrator_version": "1.5.4", "camera_brand": "Panasonic", - "camera_model": "g100", + "camera_model": "G100", "camera_setting": "镜头防抖", "compatible_settings": [], "crop": null, diff --git a/Panasonic/Panasonic_g100_1260-12__1080p_16by9_1920x1080-25.00fps.json b/Panasonic/Panasonic_g100_1260-12__1080p_16by9_1920x1080-25.00fps.json index 63c2b077..9df67b47 100644 --- a/Panasonic/Panasonic_g100_1260-12__1080p_16by9_1920x1080-25.00fps.json +++ b/Panasonic/Panasonic_g100_1260-12__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "陈景霖", "camera_brand": "Panasonic", - "camera_model": "g100", + "camera_model": "G100", "lens_model": "1260-12", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_g100_1260-12__4k_16by9_3840x2160-29.97fps.json b/Panasonic/Panasonic_g100_1260-12__4k_16by9_3840x2160-29.97fps.json index 0f196605..4ca7976b 100644 --- a/Panasonic/Panasonic_g100_1260-12__4k_16by9_3840x2160-29.97fps.json +++ b/Panasonic/Panasonic_g100_1260-12__4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "陈景霖", "calibrator_version": "1.5.4", "camera_brand": "Panasonic", - "camera_model": "g100", + "camera_model": "G100", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Panasonic/Panasonic_g7_40-150__1080p_16by9_1920x1080-59.94fps.json b/Panasonic/Panasonic_g7_40-150__1080p_16by9_1920x1080-59.94fps.json index 2b2518d2..7f30f2ff 100644 --- a/Panasonic/Panasonic_g7_40-150__1080p_16by9_1920x1080-59.94fps.json +++ b/Panasonic/Panasonic_g7_40-150__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "joshuji", "camera_brand": "Panasonic", - "camera_model": "g7", + "camera_model": "G7", "lens_model": "奥林巴斯40-150", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_g7_sigma 18-35_18mm_4k_16by9_3840x2160-29.97fps.json b/Panasonic/Panasonic_g7_sigma 18-35_18mm_4k_16by9_3840x2160-29.97fps.json index 9b013531..55dae62a 100644 --- a/Panasonic/Panasonic_g7_sigma 18-35_18mm_4k_16by9_3840x2160-29.97fps.json +++ b/Panasonic/Panasonic_g7_sigma 18-35_18mm_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "18mm", "calibrated_by": "v v", "camera_brand": "Panasonic", - "camera_model": "g7", + "camera_model": "G7", "lens_model": "sigma 18-35", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_g9_12-60mm_no ois_4k_16by9_3840x2160-50.00fps.json b/Panasonic/Panasonic_g9_12-60mm_no ois_4k_16by9_3840x2160-50.00fps.json index 40d2468b..3c212849 100644 --- a/Panasonic/Panasonic_g9_12-60mm_no ois_4k_16by9_3840x2160-50.00fps.json +++ b/Panasonic/Panasonic_g9_12-60mm_no ois_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "christian pisecki", "camera_brand": "Panasonic", - "camera_model": "g9", + "camera_model": "G9", "lens_model": "12-60mm", "camera_setting": "no ois", "calib_dimension": { diff --git a/Panasonic/Panasonic_gh5_12-40 2.8 pro_FHD 120FPS_1080p_16by9_1920x1080-24.00fps.json b/Panasonic/Panasonic_gh5_12-40 2.8 pro_FHD 120FPS_1080p_16by9_1920x1080-24.00fps.json index 60817193..4d3cd53f 100644 --- a/Panasonic/Panasonic_gh5_12-40 2.8 pro_FHD 120FPS_1080p_16by9_1920x1080-24.00fps.json +++ b/Panasonic/Panasonic_gh5_12-40 2.8 pro_FHD 120FPS_1080p_16by9_1920x1080-24.00fps.json @@ -3,7 +3,7 @@ "note": "100M 12mm", "calibrated_by": "Alex", "camera_brand": "Panasonic", - "camera_model": "gh5", + "camera_model": "GH5", "lens_model": "12-40 2.8 pro", "camera_setting": "FHD 120FPS", "calib_dimension": { diff --git a/Panasonic/Panasonic_gh5_olympus 12-40 pro 2.8_c4k_C4k_1.90by1_4096x2160-24.00fps.json b/Panasonic/Panasonic_gh5_olympus 12-40 pro 2.8_c4k_C4k_1.90by1_4096x2160-24.00fps.json index 8fd027d0..fee1ca82 100644 --- a/Panasonic/Panasonic_gh5_olympus 12-40 pro 2.8_c4k_C4k_1.90by1_4096x2160-24.00fps.json +++ b/Panasonic/Panasonic_gh5_olympus 12-40 pro 2.8_c4k_C4k_1.90by1_4096x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "my", "calibrated_by": "Alex", "camera_brand": "Panasonic", - "camera_model": "gh5", + "camera_model": "GH5", "lens_model": "olympus 12-40 pro 2.8", "camera_setting": "c4k", "calib_dimension": { diff --git a/Panasonic/Panasonic_gh5_olympus 50mm 1.8 + pixco__4k_16by9_3840x2160-25.00fps.json b/Panasonic/Panasonic_gh5_olympus 50mm 1.8 + pixco__4k_16by9_3840x2160-25.00fps.json index 8917841b..60c16abf 100644 --- a/Panasonic/Panasonic_gh5_olympus 50mm 1.8 + pixco__4k_16by9_3840x2160-25.00fps.json +++ b/Panasonic/Panasonic_gh5_olympus 50mm 1.8 + pixco__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Alex", "camera_brand": "Panasonic", - "camera_model": "gh5", + "camera_model": "GH5", "lens_model": "olympus 50mm 1.8 + pixco", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_lumix g7_kit lens_cine like D_4k_16by9_3840x2160-25.00fps.json b/Panasonic/Panasonic_lumix g7_kit lens_cine like D_4k_16by9_3840x2160-25.00fps.json index 4e8411de..c86fd77b 100644 --- a/Panasonic/Panasonic_lumix g7_kit lens_cine like D_4k_16by9_3840x2160-25.00fps.json +++ b/Panasonic/Panasonic_lumix g7_kit lens_cine like D_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "la gran estrella", "camera_brand": "Panasonic", - "camera_model": "lumix g7", + "camera_model": "Lumix G7", "lens_model": "kit lens", "camera_setting": "cine like D", "calib_dimension": { diff --git a/Panasonic/Panasonic_lx100_Leica_24mm_4k_16by9_3840x2160-29.97fps.json b/Panasonic/Panasonic_lx100_Leica_24mm_4k_16by9_3840x2160-29.97fps.json index 0bf479b6..eb6510e0 100644 --- a/Panasonic/Panasonic_lx100_Leica_24mm_4k_16by9_3840x2160-29.97fps.json +++ b/Panasonic/Panasonic_lx100_Leica_24mm_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "24mm", "calibrated_by": "Krystian", "camera_brand": "Panasonic", - "camera_model": "lx100", + "camera_model": "Lx100", "lens_model": "Leica", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_s5_14-28_30_4k_16by9_3840x2160-29.97fps.json b/Panasonic/Panasonic_s5_14-28_30_4k_16by9_3840x2160-29.97fps.json index f51013d6..e3c5af6a 100644 --- a/Panasonic/Panasonic_s5_14-28_30_4k_16by9_3840x2160-29.97fps.json +++ b/Panasonic/Panasonic_s5_14-28_30_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "鹿大攀", "camera_brand": "Panasonic", - "camera_model": "s5", + "camera_model": "S5", "lens_model": "14-28", "camera_setting": "30帧", "calib_dimension": { diff --git a/Panasonic/Panasonic_s5_24-105_24mm_4k_16by9_3840x2160-29.97fps.json b/Panasonic/Panasonic_s5_24-105_24mm_4k_16by9_3840x2160-29.97fps.json index 357d3fb7..6c85ba95 100644 --- a/Panasonic/Panasonic_s5_24-105_24mm_4k_16by9_3840x2160-29.97fps.json +++ b/Panasonic/Panasonic_s5_24-105_24mm_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "24mm", "calibrated_by": "L2004", "camera_brand": "Panasonic", - "camera_model": "s5", + "camera_model": "S5", "lens_model": "24-105", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_s5_24mm-105mm__4k_16by9_3840x2160-29.97fps.json b/Panasonic/Panasonic_s5_24mm-105mm__4k_16by9_3840x2160-29.97fps.json index 4e3936f0..db2aef37 100644 --- a/Panasonic/Panasonic_s5_24mm-105mm__4k_16by9_3840x2160-29.97fps.json +++ b/Panasonic/Panasonic_s5_24mm-105mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Megahom", "camera_brand": "Panasonic", - "camera_model": "s5", + "camera_model": "S5", "lens_model": "24mm-105mm", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_s5_Sigma 70 200 2.8 l mount_aps c_4k_16by9_3840x2160-59.94fps.json b/Panasonic/Panasonic_s5_Sigma 70 200 2.8 l mount_aps c_4k_16by9_3840x2160-59.94fps.json index 8edb8092..00b176f6 100644 --- a/Panasonic/Panasonic_s5_Sigma 70 200 2.8 l mount_aps c_4k_16by9_3840x2160-59.94fps.json +++ b/Panasonic/Panasonic_s5_Sigma 70 200 2.8 l mount_aps c_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "70mm", "calibrated_by": "jvc-1", "camera_brand": "Panasonic", - "camera_model": "s5", + "camera_model": "S5", "lens_model": "Sigma 70 200 2.8 l mount", "camera_setting": "aps c", "calib_dimension": { diff --git a/Panasonic/Panasonic_s5_irix 15mm_mp4_4k_16by9_3840x2160-25.00fps.json b/Panasonic/Panasonic_s5_irix 15mm_mp4_4k_16by9_3840x2160-25.00fps.json index b6ee8f52..a0c2ff13 100644 --- a/Panasonic/Panasonic_s5_irix 15mm_mp4_4k_16by9_3840x2160-25.00fps.json +++ b/Panasonic/Panasonic_s5_irix 15mm_mp4_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "15mm", "calibrated_by": "Martyna Jarczewska", "camera_brand": "Panasonic", - "camera_model": "s5", + "camera_model": "S5", "lens_model": "irix 15mm", "camera_setting": "mp4", "calib_dimension": { diff --git a/Panasonic/Panasonic_s5_lumix 50 1.8_4k_C4k_1.90by1_4096x2160-25.00fps.json b/Panasonic/Panasonic_s5_lumix 50 1.8_4k_C4k_1.90by1_4096x2160-25.00fps.json index cad26cbb..1584d4be 100644 --- a/Panasonic/Panasonic_s5_lumix 50 1.8_4k_C4k_1.90by1_4096x2160-25.00fps.json +++ b/Panasonic/Panasonic_s5_lumix 50 1.8_4k_C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Simon Chow", "camera_brand": "Panasonic", - "camera_model": "s5", + "camera_model": "S5", "lens_model": "lumix 50 1.8", "camera_setting": "4k", "calib_dimension": { diff --git a/Panasonic/Panasonic_s5_vario 20 60_20mm_4k_16by9_3840x2160-59.94fps - jvc-1 - 2.json b/Panasonic/Panasonic_s5_vario 20 60_20mm_4k_16by9_3840x2160-59.94fps - jvc-1 - 2.json index 986a79f1..aaea9a21 100644 --- a/Panasonic/Panasonic_s5_vario 20 60_20mm_4k_16by9_3840x2160-59.94fps - jvc-1 - 2.json +++ b/Panasonic/Panasonic_s5_vario 20 60_20mm_4k_16by9_3840x2160-59.94fps - jvc-1 - 2.json @@ -3,7 +3,7 @@ "note": "9:16", "calibrated_by": "jvc-1", "camera_brand": "Panasonic", - "camera_model": "s5", + "camera_model": "S5", "lens_model": "vario 20 60", "camera_setting": "20mm", "calib_dimension": { diff --git a/Panasonic/Panasonic_s5_vario 20 60_20mm_4k_16by9_3840x2160-59.94fps.json b/Panasonic/Panasonic_s5_vario 20 60_20mm_4k_16by9_3840x2160-59.94fps.json index 5a81b273..f154a00b 100644 --- a/Panasonic/Panasonic_s5_vario 20 60_20mm_4k_16by9_3840x2160-59.94fps.json +++ b/Panasonic/Panasonic_s5_vario 20 60_20mm_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "4k60 fps apsc", "calibrated_by": "jvc-1", "camera_brand": "Panasonic", - "camera_model": "s5", + "camera_model": "S5", "lens_model": "vario 20 60", "camera_setting": "20mm", "calib_dimension": { diff --git a/Panasonic/Panasonic_s5iix_sigma 24-70__4k_16by9_3840x2160-23.98fps.json b/Panasonic/Panasonic_s5iix_sigma 24-70__4k_16by9_3840x2160-23.98fps.json index c0f8cce1..1b60cd8a 100644 --- a/Panasonic/Panasonic_s5iix_sigma 24-70__4k_16by9_3840x2160-23.98fps.json +++ b/Panasonic/Panasonic_s5iix_sigma 24-70__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "DAVID AIKENS", "camera_brand": "Panasonic", - "camera_model": "s5iix", + "camera_model": "S5IIX", "lens_model": "sigma 24-70", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_s5m2_24-70 f2.8__1080p_16by9_1920x1080-59.94fps.json b/Panasonic/Panasonic_s5m2_24-70 f2.8__1080p_16by9_1920x1080-59.94fps.json index a27a6149..71df72bf 100644 --- a/Panasonic/Panasonic_s5m2_24-70 f2.8__1080p_16by9_1920x1080-59.94fps.json +++ b/Panasonic/Panasonic_s5m2_24-70 f2.8__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "全智勇", "camera_brand": "Panasonic", - "camera_model": "s5m2", + "camera_model": "S5M2", "lens_model": "24-70 f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_s5m2_s-s35__C4k_1.90by1_4096x2160-59.94fps.json b/Panasonic/Panasonic_s5m2_s-s35__C4k_1.90by1_4096x2160-59.94fps.json index 97af4f80..95818e4d 100644 --- a/Panasonic/Panasonic_s5m2_s-s35__C4k_1.90by1_4096x2160-59.94fps.json +++ b/Panasonic/Panasonic_s5m2_s-s35__C4k_1.90by1_4096x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "hairong tong", "camera_brand": "Panasonic", - "camera_model": "s5m2", + "camera_model": "S5M2", "lens_model": "s-s35", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_s5m2_s-s85__5k_3by2_5952x3968-29.97fps.json b/Panasonic/Panasonic_s5m2_s-s85__5k_3by2_5952x3968-29.97fps.json index c58dc229..1c6a0cda 100644 --- a/Panasonic/Panasonic_s5m2_s-s85__5k_3by2_5952x3968-29.97fps.json +++ b/Panasonic/Panasonic_s5m2_s-s85__5k_3by2_5952x3968-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "hairong tong", "camera_brand": "Panasonic", - "camera_model": "s5m2", + "camera_model": "S5M2", "lens_model": "s-s85", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_s5m2x_20-60mm @ 20mm__1080p_16by9_1920x1080-59.94fps.json b/Panasonic/Panasonic_s5m2x_20-60mm @ 20mm__1080p_16by9_1920x1080-59.94fps.json index f73cdaa9..0c26c84a 100644 --- a/Panasonic/Panasonic_s5m2x_20-60mm @ 20mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Panasonic/Panasonic_s5m2x_20-60mm @ 20mm__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "张崤钰", "camera_brand": "Panasonic", - "camera_model": "s5m2x", + "camera_model": "S5M2X", "lens_model": "20-60mm @ 20mm", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/Panasonic_s5m2x_24-70 F2.8__1080p_16by9_1920x1080-119.88fps.json b/Panasonic/Panasonic_s5m2x_24-70 F2.8__1080p_16by9_1920x1080-119.88fps.json index 53efd229..afd0c4d6 100644 --- a/Panasonic/Panasonic_s5m2x_24-70 F2.8__1080p_16by9_1920x1080-119.88fps.json +++ b/Panasonic/Panasonic_s5m2x_24-70 F2.8__1080p_16by9_1920x1080-119.88fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "米洛", "camera_brand": "Panasonic", - "camera_model": "s5m2x", + "camera_model": "S5M2X", "lens_model": "24-70 F2.8", "camera_setting": "", "calib_dimension": { diff --git a/Panasonic/panasonic_G7_Laowa 7.5mm__4k_16by9_3840x2160-29.97fps.json b/Panasonic/panasonic_G7_Laowa 7.5mm__4k_16by9_3840x2160-29.97fps.json index 57b47d4b..85c99025 100644 --- a/Panasonic/panasonic_G7_Laowa 7.5mm__4k_16by9_3840x2160-29.97fps.json +++ b/Panasonic/panasonic_G7_Laowa 7.5mm__4k_16by9_3840x2160-29.97fps.json @@ -2,7 +2,7 @@ "name": "panasonic_G7_Laowa 7.5mm__4k_16by9_3840x2160-29.97fps", "note": "", "calibrated_by": "Georgi Tushev", - "camera_brand": "panasonic", + "camera_brand": "Panasonic", "camera_model": "G7", "lens_model": "Laowa 7.5mm", "camera_setting": "", diff --git a/Panasonic/panasonic_GH5_7artisans 25mm_4208bitlongGOP_1080p_16by9_1920x1080-23.98fps.json b/Panasonic/panasonic_GH5_7artisans 25mm_4208bitlongGOP_1080p_16by9_1920x1080-23.98fps.json index 9e2d40fc..e3324000 100644 --- a/Panasonic/panasonic_GH5_7artisans 25mm_4208bitlongGOP_1080p_16by9_1920x1080-23.98fps.json +++ b/Panasonic/panasonic_GH5_7artisans 25mm_4208bitlongGOP_1080p_16by9_1920x1080-23.98fps.json @@ -2,7 +2,7 @@ "name": "panasonic_GH5_7artisans 25mm_420/8bit/longGOP_1080p_16by9_1920x1080-23.98fps", "note": "", "calibrated_by": "Aaron Leslie", - "camera_brand": "panasonic", + "camera_brand": "Panasonic", "camera_model": "GH5", "lens_model": "7artisans 25mm", "camera_setting": "420/8bit/longGOP", diff --git a/Panasonic/panasonic_GH5_Laowa_7.5mm_4k_16by9_3840x2160-50.00fps.json b/Panasonic/panasonic_GH5_Laowa_7.5mm_4k_16by9_3840x2160-50.00fps.json index 1c6d5e43..7a5bd4d8 100644 --- a/Panasonic/panasonic_GH5_Laowa_7.5mm_4k_16by9_3840x2160-50.00fps.json +++ b/Panasonic/panasonic_GH5_Laowa_7.5mm_4k_16by9_3840x2160-50.00fps.json @@ -2,7 +2,7 @@ "name": "panasonic_GH5_Laowa_7.5mm_4k_16by9_3840x2160-50.00fps", "note": "7.5mm", "calibrated_by": "ROYFPV", - "camera_brand": "panasonic", + "camera_brand": "Panasonic", "camera_model": "GH5", "lens_model": "Laowa", "camera_setting": "", diff --git a/RED/RED_Helium 8k_Sigma Art 24mm_prores_2k_1.90by1_2048x1080-25.00fps.json b/RED/RED_Helium 8k_Sigma Art 24mm_prores_2k_1.90by1_2048x1080-25.00fps.json index 3fa78c79..7e541ed3 100644 --- a/RED/RED_Helium 8k_Sigma Art 24mm_prores_2k_1.90by1_2048x1080-25.00fps.json +++ b/RED/RED_Helium 8k_Sigma Art 24mm_prores_2k_1.90by1_2048x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "25fps", "calibrated_by": "Hurcan Emre Yilm", "camera_brand": "RED", - "camera_model": "Helium 8k", + "camera_model": "Helium 8K", "lens_model": "Sigma Art 24mm", "camera_setting": "prores", "calib_dimension": { diff --git a/RED/RED_KOMODO 6k_9mm_24 144_4k_16by9_3840x2160-24.00fps.json b/RED/RED_KOMODO 6k_9mm_24 144_4k_16by9_3840x2160-24.00fps.json index 38a0c546..72464509 100644 --- a/RED/RED_KOMODO 6k_9mm_24 144_4k_16by9_3840x2160-24.00fps.json +++ b/RED/RED_KOMODO 6k_9mm_24 144_4k_16by9_3840x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Robert McEnaney", "camera_brand": "RED", - "camera_model": "KOMODO 6k", + "camera_model": "KOMODO 6K", "lens_model": "9mm", "camera_setting": "24 144", "calib_dimension": { diff --git a/RED/RED_KOMODO 6k_Atlas Orion 40mm@T5.6_Full 6K 17_9_8k_3.79by1_12288x3240-23.98fps.json b/RED/RED_KOMODO 6k_Atlas Orion 40mm@T5.6_Full 6K 17_9_8k_3.79by1_12288x3240-23.98fps.json index 43b2ba21..0657c9f9 100644 --- a/RED/RED_KOMODO 6k_Atlas Orion 40mm@T5.6_Full 6K 17_9_8k_3.79by1_12288x3240-23.98fps.json +++ b/RED/RED_KOMODO 6k_Atlas Orion 40mm@T5.6_Full 6K 17_9_8k_3.79by1_12288x3240-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "john", "camera_brand": "RED", - "camera_model": "KOMODO 6k", + "camera_model": "KOMODO 6K", "lens_model": "Atlas Orion 40mm@T5.6", "camera_setting": "Full 6K 17:9", "calib_dimension": { diff --git a/RED/RED_KOMODO 6k_Canon EF 24-70mm F2.8L II USM (5175B010)_6K 17_9_6k_1.90by1_6144x3240-25.00fps.json b/RED/RED_KOMODO 6k_Canon EF 24-70mm F2.8L II USM (5175B010)_6K 17_9_6k_1.90by1_6144x3240-25.00fps.json index 8a594e54..28eee028 100644 --- a/RED/RED_KOMODO 6k_Canon EF 24-70mm F2.8L II USM (5175B010)_6K 17_9_6k_1.90by1_6144x3240-25.00fps.json +++ b/RED/RED_KOMODO 6k_Canon EF 24-70mm F2.8L II USM (5175B010)_6K 17_9_6k_1.90by1_6144x3240-25.00fps.json @@ -3,7 +3,7 @@ "note": "Shot at 24mm", "calibrated_by": "Jean-Baptiste Andrez", "camera_brand": "RED", - "camera_model": "KOMODO 6k", + "camera_model": "KOMODO 6K", "lens_model": "Canon EF 24-70mm F/2.8L II USM (5175B010)", "camera_setting": "6K 17:9", "calib_dimension": { diff --git a/RED/RED_KOMODO 6k_Canon RF14-35_14mm_5k_16by9_5760x3240-29.97fps.json b/RED/RED_KOMODO 6k_Canon RF14-35_14mm_5k_16by9_5760x3240-29.97fps.json index 85d8c1a7..0ef7cdc8 100644 --- a/RED/RED_KOMODO 6k_Canon RF14-35_14mm_5k_16by9_5760x3240-29.97fps.json +++ b/RED/RED_KOMODO 6k_Canon RF14-35_14mm_5k_16by9_5760x3240-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "kisssy", "camera_brand": "RED", - "camera_model": "KOMODO 6k", + "camera_model": "KOMODO 6K", "lens_model": "Canon RF14-35", "camera_setting": "14mm", "calib_dimension": { diff --git a/RED/RED_KOMODO 6k_Laowa 14mm f4_ProRes_C4k_1.90by1_4096x2160-25.00fps.json b/RED/RED_KOMODO 6k_Laowa 14mm f4_ProRes_C4k_1.90by1_4096x2160-25.00fps.json index e81a1247..71b73d32 100644 --- a/RED/RED_KOMODO 6k_Laowa 14mm f4_ProRes_C4k_1.90by1_4096x2160-25.00fps.json +++ b/RED/RED_KOMODO 6k_Laowa 14mm f4_ProRes_C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "tofu10FPV", "camera_brand": "RED", - "camera_model": "KOMODO 6k", + "camera_model": "KOMODO 6K", "lens_model": "Laowa 14mm f4", "camera_setting": "ProRes", "calib_dimension": { diff --git a/RED/RED_KOMODO 6k_Laowa 14mm_17_9_6k_1.90by1_6144x3240-25.00fps.json b/RED/RED_KOMODO 6k_Laowa 14mm_17_9_6k_1.90by1_6144x3240-25.00fps.json index ed7e6d18..bc819e7a 100644 --- a/RED/RED_KOMODO 6k_Laowa 14mm_17_9_6k_1.90by1_6144x3240-25.00fps.json +++ b/RED/RED_KOMODO 6k_Laowa 14mm_17_9_6k_1.90by1_6144x3240-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Tofu10 DroneWorks", "camera_brand": "RED", - "camera_model": "KOMODO 6k", + "camera_model": "KOMODO 6K", "lens_model": "Laowa 14mm", "camera_setting": "17:9", "calib_dimension": { diff --git a/RED/RED_KOMODO 6k_Laowa Nanomorph 35mm T2.4 1.5x 35mm_6K 17_9_8k_2.84by1_9216x3240-23.98fps.json b/RED/RED_KOMODO 6k_Laowa Nanomorph 35mm T2.4 1.5x 35mm_6K 17_9_8k_2.84by1_9216x3240-23.98fps.json index 53daff24..8bbd6246 100644 --- a/RED/RED_KOMODO 6k_Laowa Nanomorph 35mm T2.4 1.5x 35mm_6K 17_9_8k_2.84by1_9216x3240-23.98fps.json +++ b/RED/RED_KOMODO 6k_Laowa Nanomorph 35mm T2.4 1.5x 35mm_6K 17_9_8k_2.84by1_9216x3240-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "SCAN2FX", "camera_brand": "RED", - "camera_model": "KOMODO 6k", + "camera_model": "KOMODO 6K", "lens_model": "Laowa Nanomorph 35mm T2.4 1.5x 35mm", "camera_setting": "6K 17:9", "calib_dimension": { diff --git a/RED/RED_KOMODO 6k_Sigma 8mm-16mm @8mm_4k 17 by 9_C4k_1.90by1_4096x2160-60.00fps.json b/RED/RED_KOMODO 6k_Sigma 8mm-16mm @8mm_4k 17 by 9_C4k_1.90by1_4096x2160-60.00fps.json index 6c1778ee..c103bbab 100644 --- a/RED/RED_KOMODO 6k_Sigma 8mm-16mm @8mm_4k 17 by 9_C4k_1.90by1_4096x2160-60.00fps.json +++ b/RED/RED_KOMODO 6k_Sigma 8mm-16mm @8mm_4k 17 by 9_C4k_1.90by1_4096x2160-60.00fps.json @@ -3,7 +3,7 @@ "note": "with canon speedbooster", "calibrated_by": "Florian Koch", "camera_brand": "RED", - "camera_model": "KOMODO 6k", + "camera_model": "KOMODO 6K", "lens_model": "Sigma 8mm-16mm @8mm", "camera_setting": "4k 17 by 9", "calib_dimension": { diff --git a/RED/RED_KOMODO 6k_Super Takumar 35mm f2_Lens adapted with Canon Mount Adaptor 0.71x_6k_1.90by1_6144x3240-24.00fps.json b/RED/RED_KOMODO 6k_Super Takumar 35mm f2_Lens adapted with Canon Mount Adaptor 0.71x_6k_1.90by1_6144x3240-24.00fps.json index 008240c5..d4767e6b 100644 --- a/RED/RED_KOMODO 6k_Super Takumar 35mm f2_Lens adapted with Canon Mount Adaptor 0.71x_6k_1.90by1_6144x3240-24.00fps.json +++ b/RED/RED_KOMODO 6k_Super Takumar 35mm f2_Lens adapted with Canon Mount Adaptor 0.71x_6k_1.90by1_6144x3240-24.00fps.json @@ -3,7 +3,7 @@ "note": "Lens adapted with Canon Mount Adaptor 0.71x", "calibrated_by": "Timothy Adamson", "camera_brand": "RED", - "camera_model": "KOMODO 6k", + "camera_model": "KOMODO 6K", "lens_model": "Super Takumar 35mm f/2", "camera_setting": "", "calib_dimension": { diff --git a/RED/RED_KOMODO 6k_Tamron SP 35mm F1.4 + Canon Speedbooster_6K 17_9_C4k_1.90by1_4096x2160-30.00fps.json b/RED/RED_KOMODO 6k_Tamron SP 35mm F1.4 + Canon Speedbooster_6K 17_9_C4k_1.90by1_4096x2160-30.00fps.json index b417919d..ce8bb88f 100644 --- a/RED/RED_KOMODO 6k_Tamron SP 35mm F1.4 + Canon Speedbooster_6K 17_9_C4k_1.90by1_4096x2160-30.00fps.json +++ b/RED/RED_KOMODO 6k_Tamron SP 35mm F1.4 + Canon Speedbooster_6K 17_9_C4k_1.90by1_4096x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Florian Koch", "camera_brand": "RED", - "camera_model": "KOMODO 6k", + "camera_model": "KOMODO 6K", "lens_model": "Tamron SP 35mm F1.4 + Canon Speedbooster", "camera_setting": "6K 17:9", "calib_dimension": { diff --git a/RED/RED_KOMODO 6k_Tokina 11-20 atx-i @11_Full Sensor_6k_1.90by1_6144x3240-25.00fps.json b/RED/RED_KOMODO 6k_Tokina 11-20 atx-i @11_Full Sensor_6k_1.90by1_6144x3240-25.00fps.json index 4e866b2f..85731db8 100644 --- a/RED/RED_KOMODO 6k_Tokina 11-20 atx-i @11_Full Sensor_6k_1.90by1_6144x3240-25.00fps.json +++ b/RED/RED_KOMODO 6k_Tokina 11-20 atx-i @11_Full Sensor_6k_1.90by1_6144x3240-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Florian Koch", "camera_brand": "RED", - "camera_model": "KOMODO 6k", + "camera_model": "KOMODO 6K", "lens_model": "Tokina 11-20 atx-i @11", "camera_setting": "Full Sensor", "calib_dimension": { diff --git a/RED/RED_KOMODO 6k_ZEISS Compact Prime CP.3 18 mmT2.9__6k_1.90by1_6144x3240-24.00fps.json b/RED/RED_KOMODO 6k_ZEISS Compact Prime CP.3 18 mmT2.9__6k_1.90by1_6144x3240-24.00fps.json index e2685940..8d28590c 100644 --- a/RED/RED_KOMODO 6k_ZEISS Compact Prime CP.3 18 mmT2.9__6k_1.90by1_6144x3240-24.00fps.json +++ b/RED/RED_KOMODO 6k_ZEISS Compact Prime CP.3 18 mmT2.9__6k_1.90by1_6144x3240-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Amedeo Caramazza", "camera_brand": "RED", - "camera_model": "KOMODO 6k", + "camera_model": "KOMODO 6K", "lens_model": "ZEISS Compact Prime CP.3 18 mm/T2.9", "camera_setting": "", "calib_dimension": { diff --git a/RED/RED_KOMODO 6k_kipon 75mm__6k_1.90by1_6144x3240-23.98fps.json b/RED/RED_KOMODO 6k_kipon 75mm__6k_1.90by1_6144x3240-23.98fps.json index 824889f2..67a5870d 100644 --- a/RED/RED_KOMODO 6k_kipon 75mm__6k_1.90by1_6144x3240-23.98fps.json +++ b/RED/RED_KOMODO 6k_kipon 75mm__6k_1.90by1_6144x3240-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "I", "camera_brand": "RED", - "camera_model": "KOMODO 6k", + "camera_model": "KOMODO 6K", "lens_model": "kipon 75mm", "camera_setting": "", "calib_dimension": { diff --git a/RED/RED_Komodo 6K_ARRI Ultra Prime 14mm_40FPS 45deg_C4k_1.90by1_4095x2160-24.00fps.json b/RED/RED_Komodo 6K_ARRI Ultra Prime 14mm_40FPS 45deg_C4k_1.90by1_4095x2160-24.00fps.json index 91a204e2..aeb8905c 100644 --- a/RED/RED_Komodo 6K_ARRI Ultra Prime 14mm_40FPS 45deg_C4k_1.90by1_4095x2160-24.00fps.json +++ b/RED/RED_Komodo 6K_ARRI Ultra Prime 14mm_40FPS 45deg_C4k_1.90by1_4095x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Productionconcept GmbH", "camera_brand": "RED", - "camera_model": "Komodo 6K", + "camera_model": "KOMODO 6K", "lens_model": "ARRI Ultra Prime 14mm", "camera_setting": "40FPS 45deg", "calib_dimension": { diff --git a/RED/RED_Komodo 6K_LAOWA 11mm F4.5 C-Dreamer_2.4_1_6k_2.37by1_6144x2592-50.00fps.json b/RED/RED_Komodo 6K_LAOWA 11mm F4.5 C-Dreamer_2.4_1_6k_2.37by1_6144x2592-50.00fps.json index a93ff206..558bf8fa 100644 --- a/RED/RED_Komodo 6K_LAOWA 11mm F4.5 C-Dreamer_2.4_1_6k_2.37by1_6144x2592-50.00fps.json +++ b/RED/RED_Komodo 6K_LAOWA 11mm F4.5 C-Dreamer_2.4_1_6k_2.37by1_6144x2592-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Armin Sky", "camera_brand": "RED", - "camera_model": "Komodo 6K", + "camera_model": "KOMODO 6K", "lens_model": "LAOWA 11mm F4.5 C-Dreamer", "camera_setting": "2.4:1", "calib_dimension": { diff --git a/RED/RED_Komodo 6K_Laowa 14mm FF_6K 17_9_C4k_1.90by1_4096x2160-25.00fps.json b/RED/RED_Komodo 6K_Laowa 14mm FF_6K 17_9_C4k_1.90by1_4096x2160-25.00fps.json index 29ca7da7..b03ca99d 100644 --- a/RED/RED_Komodo 6K_Laowa 14mm FF_6K 17_9_C4k_1.90by1_4096x2160-25.00fps.json +++ b/RED/RED_Komodo 6K_Laowa 14mm FF_6K 17_9_C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "R3D", "calibrated_by": "Charlie Locke", "camera_brand": "RED", - "camera_model": "Komodo 6K", + "camera_model": "KOMODO 6K", "lens_model": "Laowa 14mm FF", "camera_setting": "6K 17:9", "calib_dimension": { diff --git a/RED/RED_Komodo X_Vilrox Epic 50mm_6k_4k_16by9_3840x2160-24.00fps.json b/RED/RED_Komodo X_Vilrox Epic 50mm_6k_4k_16by9_3840x2160-24.00fps.json index 5cb6df53..4cd6dfbe 100644 --- a/RED/RED_Komodo X_Vilrox Epic 50mm_6k_4k_16by9_3840x2160-24.00fps.json +++ b/RED/RED_Komodo X_Vilrox Epic 50mm_6k_4k_16by9_3840x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Sir-Tay Jackson", "camera_brand": "RED", - "camera_model": "Komodo X", + "camera_model": "KOMODO X", "lens_model": "Vilrox Epic 50mm", "camera_setting": "6k", "calib_dimension": { diff --git a/RED/RED_Komodo X_Viltrox Epic 50mm_6K Anamorphic 1.33x_4k_16by9_3840x2160-24.00fps.json b/RED/RED_Komodo X_Viltrox Epic 50mm_6K Anamorphic 1.33x_4k_16by9_3840x2160-24.00fps.json index ec41aba4..5dd11882 100644 --- a/RED/RED_Komodo X_Viltrox Epic 50mm_6K Anamorphic 1.33x_4k_16by9_3840x2160-24.00fps.json +++ b/RED/RED_Komodo X_Viltrox Epic 50mm_6K Anamorphic 1.33x_4k_16by9_3840x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Sir-Tay Jackson", "camera_brand": "RED", - "camera_model": "Komodo X", + "camera_model": "KOMODO X", "lens_model": "Viltrox Epic 50mm", "camera_setting": "6K Anamorphic 1.33x", "calib_dimension": { diff --git a/RED/RED_Raven_Canon EF 100mm L f2.8__C4k_2.13by1_4608x2160-25.00fps.json b/RED/RED_Raven_Canon EF 100mm L f2.8__C4k_2.13by1_4608x2160-25.00fps.json index 913df4a3..dc57d6b7 100644 --- a/RED/RED_Raven_Canon EF 100mm L f2.8__C4k_2.13by1_4608x2160-25.00fps.json +++ b/RED/RED_Raven_Canon EF 100mm L f2.8__C4k_2.13by1_4608x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "re4mat0r", "camera_brand": "RED", - "camera_model": "Raven", + "camera_model": "RAVEN", "lens_model": "Canon EF 100mm L f2.8", "camera_setting": "", "calib_dimension": { diff --git a/RED/RED_Raven_Canon EF 14mm L f2.8__C4k_2.13by1_4608x2160-25.00fps.json b/RED/RED_Raven_Canon EF 14mm L f2.8__C4k_2.13by1_4608x2160-25.00fps.json index aed68088..7a964af9 100644 --- a/RED/RED_Raven_Canon EF 14mm L f2.8__C4k_2.13by1_4608x2160-25.00fps.json +++ b/RED/RED_Raven_Canon EF 14mm L f2.8__C4k_2.13by1_4608x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "re4mat0r", "camera_brand": "RED", - "camera_model": "Raven", + "camera_model": "RAVEN", "lens_model": "Canon EF 14mm L f2.8", "camera_setting": "", "calib_dimension": { diff --git a/RED/RED_Raven_Canon EF 24mm L f1.4__C4k_2.13by1_4608x2160-25.00fps.json b/RED/RED_Raven_Canon EF 24mm L f1.4__C4k_2.13by1_4608x2160-25.00fps.json index bad44272..58629d78 100644 --- a/RED/RED_Raven_Canon EF 24mm L f1.4__C4k_2.13by1_4608x2160-25.00fps.json +++ b/RED/RED_Raven_Canon EF 24mm L f1.4__C4k_2.13by1_4608x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "re4mat0r", "camera_brand": "RED", - "camera_model": "Raven", + "camera_model": "RAVEN", "lens_model": "Canon EF 24mm L f1.4", "camera_setting": "", "calib_dimension": { diff --git a/RED/RED_Raven_Canon EF 50mm L f1.2__C4k_2.13by1_4608x2160-25.00fps.json b/RED/RED_Raven_Canon EF 50mm L f1.2__C4k_2.13by1_4608x2160-25.00fps.json index c37ea3ee..a0b4601f 100644 --- a/RED/RED_Raven_Canon EF 50mm L f1.2__C4k_2.13by1_4608x2160-25.00fps.json +++ b/RED/RED_Raven_Canon EF 50mm L f1.2__C4k_2.13by1_4608x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "re4mat0r", "camera_brand": "RED", - "camera_model": "Raven", + "camera_model": "RAVEN", "lens_model": "Canon EF 50mm L f1.2", "camera_setting": "", "calib_dimension": { diff --git a/RED/RED_Raven_Canon EF S 24mm STM f2.8__C4k_2.13by1_4608x2160-25.00fps.json b/RED/RED_Raven_Canon EF S 24mm STM f2.8__C4k_2.13by1_4608x2160-25.00fps.json index 325a8c32..fc609272 100644 --- a/RED/RED_Raven_Canon EF S 24mm STM f2.8__C4k_2.13by1_4608x2160-25.00fps.json +++ b/RED/RED_Raven_Canon EF S 24mm STM f2.8__C4k_2.13by1_4608x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "re4mat0r", "camera_brand": "RED", - "camera_model": "Raven", + "camera_model": "RAVEN", "lens_model": "Canon EF S 24mm STM f2.8", "camera_setting": "", "calib_dimension": { diff --git a/RED/RED_Raven_Canon EF-s 10-18mm f4.5-5.6 at 10mm__C4k_2.13by1_4608x2160-25.00fps.json b/RED/RED_Raven_Canon EF-s 10-18mm f4.5-5.6 at 10mm__C4k_2.13by1_4608x2160-25.00fps.json index dd5ff3b5..4ca35f57 100644 --- a/RED/RED_Raven_Canon EF-s 10-18mm f4.5-5.6 at 10mm__C4k_2.13by1_4608x2160-25.00fps.json +++ b/RED/RED_Raven_Canon EF-s 10-18mm f4.5-5.6 at 10mm__C4k_2.13by1_4608x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "re4mat0r", "camera_brand": "RED", - "camera_model": "Raven", + "camera_model": "RAVEN", "lens_model": "Canon EF-s 10-18mm f4.5-5.6 at 10mm", "camera_setting": "", "calib_dimension": { diff --git a/RED/RED_Raven_Canon EF-s 10-18mm f4.5-5.6 at 14mm__C4k_2.13by1_4608x2160-25.00fps.json b/RED/RED_Raven_Canon EF-s 10-18mm f4.5-5.6 at 14mm__C4k_2.13by1_4608x2160-25.00fps.json index 8c48f0e5..bbd399dd 100644 --- a/RED/RED_Raven_Canon EF-s 10-18mm f4.5-5.6 at 14mm__C4k_2.13by1_4608x2160-25.00fps.json +++ b/RED/RED_Raven_Canon EF-s 10-18mm f4.5-5.6 at 14mm__C4k_2.13by1_4608x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "re4mat0r", "camera_brand": "RED", - "camera_model": "Raven", + "camera_model": "RAVEN", "lens_model": "Canon EF-s 10-18mm f4.5-5.6 at 14mm", "camera_setting": "", "calib_dimension": { diff --git a/RED/RED_Raven_Canon EF-s 10-18mm f4.5-5.6 at 18mm__C4k_2.13by1_4608x2160-25.00fps.json b/RED/RED_Raven_Canon EF-s 10-18mm f4.5-5.6 at 18mm__C4k_2.13by1_4608x2160-25.00fps.json index 77f0615c..9c811d89 100644 --- a/RED/RED_Raven_Canon EF-s 10-18mm f4.5-5.6 at 18mm__C4k_2.13by1_4608x2160-25.00fps.json +++ b/RED/RED_Raven_Canon EF-s 10-18mm f4.5-5.6 at 18mm__C4k_2.13by1_4608x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "re4mat0r", "camera_brand": "RED", - "camera_model": "Raven", + "camera_model": "RAVEN", "lens_model": "Canon EF-s 10-18mm f4.5-5.6 at 18mm", "camera_setting": "", "calib_dimension": { diff --git a/RED/RED_Raven_Fish-eye-Takumar 17mm f14__C4k_2.13by1_4608x2160-25.00fps.json b/RED/RED_Raven_Fish-eye-Takumar 17mm f14__C4k_2.13by1_4608x2160-25.00fps.json index 1e71a808..b0694fce 100644 --- a/RED/RED_Raven_Fish-eye-Takumar 17mm f14__C4k_2.13by1_4608x2160-25.00fps.json +++ b/RED/RED_Raven_Fish-eye-Takumar 17mm f14__C4k_2.13by1_4608x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "re4mat0r", "camera_brand": "RED", - "camera_model": "Raven", + "camera_model": "RAVEN", "lens_model": "Fish-eye-Takumar 17mm f1/4", "camera_setting": "", "calib_dimension": { diff --git a/RED/RED_Raven_Rokinon 10mm T3.1__C4k_2.13by1_4608x2160-25.00fps.json b/RED/RED_Raven_Rokinon 10mm T3.1__C4k_2.13by1_4608x2160-25.00fps.json index e85c7e90..4468dce2 100644 --- a/RED/RED_Raven_Rokinon 10mm T3.1__C4k_2.13by1_4608x2160-25.00fps.json +++ b/RED/RED_Raven_Rokinon 10mm T3.1__C4k_2.13by1_4608x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "re4mat0r", "camera_brand": "RED", - "camera_model": "Raven", + "camera_model": "RAVEN", "lens_model": "Rokinon 10mm T3.1", "camera_setting": "", "calib_dimension": { diff --git a/RED/RED_Raven_Super Takumar 300mm f4__C4k_2.13by1_4608x2160-25.00fps.json b/RED/RED_Raven_Super Takumar 300mm f4__C4k_2.13by1_4608x2160-25.00fps.json index 828d50ca..bb8556e7 100644 --- a/RED/RED_Raven_Super Takumar 300mm f4__C4k_2.13by1_4608x2160-25.00fps.json +++ b/RED/RED_Raven_Super Takumar 300mm f4__C4k_2.13by1_4608x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "re4mat0r", "camera_brand": "RED", - "camera_model": "Raven", + "camera_model": "RAVEN", "lens_model": "Super Takumar 300mm f4", "camera_setting": "", "calib_dimension": { diff --git a/RED/RED_Raven_Super-Multi-Coated Takumar 135mm f2.5__C4k_2.13by1_4608x2160-25.00fps.json b/RED/RED_Raven_Super-Multi-Coated Takumar 135mm f2.5__C4k_2.13by1_4608x2160-25.00fps.json index 38842c27..7097750b 100644 --- a/RED/RED_Raven_Super-Multi-Coated Takumar 135mm f2.5__C4k_2.13by1_4608x2160-25.00fps.json +++ b/RED/RED_Raven_Super-Multi-Coated Takumar 135mm f2.5__C4k_2.13by1_4608x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "re4mat0r", "camera_brand": "RED", - "camera_model": "Raven", + "camera_model": "RAVEN", "lens_model": "Super-Multi-Coated Takumar 135mm f2.5", "camera_setting": "", "calib_dimension": { diff --git a/RED/RED_Raven_Super-Multi-Coated Takumar 200mm f4__C4k_2.13by1_4608x2160-25.00fps.json b/RED/RED_Raven_Super-Multi-Coated Takumar 200mm f4__C4k_2.13by1_4608x2160-25.00fps.json index f2d0d45d..8f4f5e19 100644 --- a/RED/RED_Raven_Super-Multi-Coated Takumar 200mm f4__C4k_2.13by1_4608x2160-25.00fps.json +++ b/RED/RED_Raven_Super-Multi-Coated Takumar 200mm f4__C4k_2.13by1_4608x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "re4mat0r", "camera_brand": "RED", - "camera_model": "Raven", + "camera_model": "RAVEN", "lens_model": "Super-Multi-Coated Takumar 200mm f4", "camera_setting": "", "calib_dimension": { diff --git a/RED/RED_Raven_Super-Multi-Coated Takumar 35mm f2__C4k_2.13by1_4608x2160-25.00fps.json b/RED/RED_Raven_Super-Multi-Coated Takumar 35mm f2__C4k_2.13by1_4608x2160-25.00fps.json index 61f99553..a4264911 100644 --- a/RED/RED_Raven_Super-Multi-Coated Takumar 35mm f2__C4k_2.13by1_4608x2160-25.00fps.json +++ b/RED/RED_Raven_Super-Multi-Coated Takumar 35mm f2__C4k_2.13by1_4608x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "John", "camera_brand": "RED", - "camera_model": "Raven", + "camera_model": "RAVEN", "lens_model": "Super-Multi-Coated Takumar 35mm f2", "camera_setting": "", "calib_dimension": { diff --git a/RED/RED_Raven_Super-Takumar 24mm f3.5__C4k_2.13by1_4608x2160-25.00fps.json b/RED/RED_Raven_Super-Takumar 24mm f3.5__C4k_2.13by1_4608x2160-25.00fps.json index 3e695466..c3ff6d5c 100644 --- a/RED/RED_Raven_Super-Takumar 24mm f3.5__C4k_2.13by1_4608x2160-25.00fps.json +++ b/RED/RED_Raven_Super-Takumar 24mm f3.5__C4k_2.13by1_4608x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "re4mat0r", "camera_brand": "RED", - "camera_model": "Raven", + "camera_model": "RAVEN", "lens_model": "Super-Takumar 24mm f3.5", "camera_setting": "", "calib_dimension": { diff --git a/RED/RED_V-Raptor [X] 8K VV_35mm V35 Athena OM_8K 2.4_1 360_C4k_1.90by1_4096x2160-47.95fps.json b/RED/RED_V-Raptor [X] 8K VV_35mm V35 Athena OM_8K 2.4_1 360_C4k_1.90by1_4096x2160-47.95fps.json index bae56019..898fdcd2 100644 --- a/RED/RED_V-Raptor [X] 8K VV_35mm V35 Athena OM_8K 2.4_1 360_C4k_1.90by1_4096x2160-47.95fps.json +++ b/RED/RED_V-Raptor [X] 8K VV_35mm V35 Athena OM_8K 2.4_1 360_C4k_1.90by1_4096x2160-47.95fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Alexander Bracken", "camera_brand": "RED", - "camera_model": "V-Raptor [X] 8K VV", + "camera_model": "V-RAPTOR [X] 8K VV", "lens_model": "35mm V35 Athena OM", "camera_setting": "8K 2.4:1 360°", "calib_dimension": { diff --git a/RED/RED_V-Raptor_12mm__8k_1.90by1_8192x4320-23.98fps.json b/RED/RED_V-Raptor_12mm__8k_1.90by1_8192x4320-23.98fps.json index c9bdb30a..ffd74601 100644 --- a/RED/RED_V-Raptor_12mm__8k_1.90by1_8192x4320-23.98fps.json +++ b/RED/RED_V-Raptor_12mm__8k_1.90by1_8192x4320-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Flow Motion Aerials", "camera_brand": "RED", - "camera_model": "V-Raptor", + "camera_model": "V-RAPTOR", "lens_model": "12mm", "camera_setting": "", "calib_dimension": { diff --git a/RED/RED_V-Raptor_Arri Ultra Prime_8K_6k_16by9_7680x4320-25.00fps.json b/RED/RED_V-Raptor_Arri Ultra Prime_8K_6k_16by9_7680x4320-25.00fps.json index 396033d8..51d7c212 100644 --- a/RED/RED_V-Raptor_Arri Ultra Prime_8K_6k_16by9_7680x4320-25.00fps.json +++ b/RED/RED_V-Raptor_Arri Ultra Prime_8K_6k_16by9_7680x4320-25.00fps.json @@ -3,7 +3,7 @@ "note": "50mm", "calibrated_by": "Cassidy Lichtenstein", "camera_brand": "RED", - "camera_model": "V-Raptor", + "camera_model": "V-RAPTOR", "lens_model": "Arri Ultra Prime", "camera_setting": "8K", "calib_dimension": { diff --git a/RED/RED_V-Raptor_Laowa 11mm F3.5_8K_8k_1.90by1_8192x4320-23.98fps.json b/RED/RED_V-Raptor_Laowa 11mm F3.5_8K_8k_1.90by1_8192x4320-23.98fps.json index b59d072c..10b60547 100644 --- a/RED/RED_V-Raptor_Laowa 11mm F3.5_8K_8k_1.90by1_8192x4320-23.98fps.json +++ b/RED/RED_V-Raptor_Laowa 11mm F3.5_8K_8k_1.90by1_8192x4320-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rapha", "camera_brand": "RED", - "camera_model": "V-Raptor", + "camera_model": "V-RAPTOR", "lens_model": "Laowa 11mm F3.5", "camera_setting": "8K", "calib_dimension": { diff --git a/RED/RED_V-Raptor_Laowa 12mm Cine T2.9_17_9 8K_8k_1.90by1_8192x4320-23.98fps.json b/RED/RED_V-Raptor_Laowa 12mm Cine T2.9_17_9 8K_8k_1.90by1_8192x4320-23.98fps.json index 17288801..4182530f 100644 --- a/RED/RED_V-Raptor_Laowa 12mm Cine T2.9_17_9 8K_8k_1.90by1_8192x4320-23.98fps.json +++ b/RED/RED_V-Raptor_Laowa 12mm Cine T2.9_17_9 8K_8k_1.90by1_8192x4320-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Raphael Boudreault-Simard", "camera_brand": "RED", - "camera_model": "V-Raptor", + "camera_model": "V-RAPTOR", "lens_model": "Laowa 12mm Cine T2.9", "camera_setting": "17:9 8K", "calib_dimension": { diff --git a/RED/RED_V-Raptor_Leica 35mm f1.4 0.8 M_8K 17_9_C4k_1.90by1_4096x2160-23.98fps.json b/RED/RED_V-Raptor_Leica 35mm f1.4 0.8 M_8K 17_9_C4k_1.90by1_4096x2160-23.98fps.json index fbf07b97..d69b3d03 100644 --- a/RED/RED_V-Raptor_Leica 35mm f1.4 0.8 M_8K 17_9_C4k_1.90by1_4096x2160-23.98fps.json +++ b/RED/RED_V-Raptor_Leica 35mm f1.4 0.8 M_8K 17_9_C4k_1.90by1_4096x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Spencer Whiting", "camera_brand": "RED", - "camera_model": "V-Raptor", + "camera_model": "V-RAPTOR", "lens_model": "Leica 35mm f/1.4 0.8 M", "camera_setting": "8K 17:9", "calib_dimension": { diff --git a/RED/RED_V-Raptor_Leica Elmarit-R 19mm_8K_C4k_1.90by1_4096x2160-24.00fps.json b/RED/RED_V-Raptor_Leica Elmarit-R 19mm_8K_C4k_1.90by1_4096x2160-24.00fps.json index be984091..f56cef64 100644 --- a/RED/RED_V-Raptor_Leica Elmarit-R 19mm_8K_C4k_1.90by1_4096x2160-24.00fps.json +++ b/RED/RED_V-Raptor_Leica Elmarit-R 19mm_8K_C4k_1.90by1_4096x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Flow Motion Aerials", "camera_brand": "RED", - "camera_model": "V-Raptor", + "camera_model": "V-RAPTOR", "lens_model": "Leica Elmarit-R 19mm", "camera_setting": "8K", "calib_dimension": { diff --git a/RED/RED_komodo_11mm__C4k_1.90by1_4096x2160-25.00fps.json b/RED/RED_komodo_11mm__C4k_1.90by1_4096x2160-25.00fps.json index cf840c24..28b887f1 100644 --- a/RED/RED_komodo_11mm__C4k_1.90by1_4096x2160-25.00fps.json +++ b/RED/RED_komodo_11mm__C4k_1.90by1_4096x2160-25.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "马永哲", "calibrator_version": "1.5.4", "camera_brand": "RED", - "camera_model": "komodo", + "camera_model": "KOMODO", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/RED/Red_V-Raptor_Laowa 9mm_6k prores_1080p_16by9_1920x1080-25.00fps.json b/RED/Red_V-Raptor_Laowa 9mm_6k prores_1080p_16by9_1920x1080-25.00fps.json index 4818e680..9353babc 100644 --- a/RED/Red_V-Raptor_Laowa 9mm_6k prores_1080p_16by9_1920x1080-25.00fps.json +++ b/RED/Red_V-Raptor_Laowa 9mm_6k prores_1080p_16by9_1920x1080-25.00fps.json @@ -2,8 +2,8 @@ "name": "Red_V-Raptor_Laowa 9mm_6k prores_1080p_16by9_1920x1080-25.00fps", "note": "", "calibrated_by": "Radar Kane", - "camera_brand": "Red", - "camera_model": "V-Raptor", + "camera_brand": "RED", + "camera_model": "V-RAPTOR", "lens_model": "Laowa 9mm", "camera_setting": "6k prores", "calib_dimension": { diff --git a/RunCam/RunCam_2 4k_Wide__4k_16by9_3840x2160-0.00fps.json b/RunCam/RunCam_2 4k_Wide__4k_16by9_3840x2160-0.00fps.json index 1bb86bce..03f88073 100644 --- a/RunCam/RunCam_2 4k_Wide__4k_16by9_3840x2160-0.00fps.json +++ b/RunCam/RunCam_2 4k_Wide__4k_16by9_3840x2160-0.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "objptr", "camera_brand": "RunCam", - "camera_model": "2 4k", + "camera_model": "2 4K", "lens_model": "Wide", "camera_setting": "", "calibrator_version": "0.2.1-alpha", diff --git a/RunCam/RunCam_2 4k___2.7k_16by9_2704x1520-60.00fps.json b/RunCam/RunCam_2 4k___2.7k_16by9_2704x1520-60.00fps.json index 331d0035..2deddd67 100644 --- a/RunCam/RunCam_2 4k___2.7k_16by9_2704x1520-60.00fps.json +++ b/RunCam/RunCam_2 4k___2.7k_16by9_2704x1520-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "PC", "camera_brand": "RunCam", - "camera_model": "2 4k", + "camera_model": "2 4K", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/RunCam/RunCam_HDZero Micro V2___720p_16by9_1280x720-59.94fps.json b/RunCam/RunCam_HDZero Micro V2___720p_16by9_1280x720-59.94fps.json index cfeba41f..e4caf6d7 100644 --- a/RunCam/RunCam_HDZero Micro V2___720p_16by9_1280x720-59.94fps.json +++ b/RunCam/RunCam_HDZero Micro V2___720p_16by9_1280x720-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "https://052.jp", "camera_brand": "RunCam", - "camera_model": "HDZero Micro V2", + "camera_model": "HDZERO Micro V2", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/RunCam/RunCam_Thumb Pro w_IMX577(12MP)_30602K 120_1080p_16by9_1920x1080-30.00fps.json b/RunCam/RunCam_Thumb Pro w_IMX577(12MP)_30602K 120_1080p_16by9_1920x1080-30.00fps.json index 332d93ba..57438aec 100644 --- a/RunCam/RunCam_Thumb Pro w_IMX577(12MP)_30602K 120_1080p_16by9_1920x1080-30.00fps.json +++ b/RunCam/RunCam_Thumb Pro w_IMX577(12MP)_30602K 120_1080p_16by9_1920x1080-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Andrew El-Hayek", "camera_brand": "RunCam", - "camera_model": "Thumb Pro w", + "camera_model": "Thumb Pro W", "lens_model": "IMX577(12MP)", "camera_setting": "30/60/2K 120", "calib_dimension": { diff --git a/RunCam/RunCam_Thumb pro W_IMX577(12MP)_30602K 120_4k_16by9_3840x2160-29.95fps.json b/RunCam/RunCam_Thumb pro W_IMX577(12MP)_30602K 120_4k_16by9_3840x2160-29.95fps.json index 46c80651..782e92dd 100644 --- a/RunCam/RunCam_Thumb pro W_IMX577(12MP)_30602K 120_4k_16by9_3840x2160-29.95fps.json +++ b/RunCam/RunCam_Thumb pro W_IMX577(12MP)_30602K 120_4k_16by9_3840x2160-29.95fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Andrew El-Hayek", "camera_brand": "RunCam", - "camera_model": "Thumb pro W", + "camera_model": "Thumb Pro W", "lens_model": "IMX577(12MP)", "camera_setting": "30/60/2K 120", "calib_dimension": { diff --git a/RunCam/RunCam_ThumbPro_RC18G__2.7k_16by9_2704x1520-60.00fps.json b/RunCam/RunCam_ThumbPro_RC18G__2.7k_16by9_2704x1520-60.00fps.json index b23b30e2..a1ac643d 100644 --- a/RunCam/RunCam_ThumbPro_RC18G__2.7k_16by9_2704x1520-60.00fps.json +++ b/RunCam/RunCam_ThumbPro_RC18G__2.7k_16by9_2704x1520-60.00fps.json @@ -2,7 +2,7 @@ "name": "Runcam_ThumbPro_RC18G__2.7k_16by9_2704x1520-60.00fps", "note": "", "calibrated_by": "Marco Huerta", - "camera_brand": "Runcam", + "camera_brand": "RunCam", "camera_model": "ThumbPro", "lens_model": "RC18G", "camera_setting": "", diff --git a/RunCam/RunCam_ThumbPro_rc19g_wide_4k_16by9_3840x2160-30.00fps.json b/RunCam/RunCam_ThumbPro_rc19g_wide_4k_16by9_3840x2160-30.00fps.json index 497d806f..bc5855b1 100644 --- a/RunCam/RunCam_ThumbPro_rc19g_wide_4k_16by9_3840x2160-30.00fps.json +++ b/RunCam/RunCam_ThumbPro_rc19g_wide_4k_16by9_3840x2160-30.00fps.json @@ -2,7 +2,7 @@ "name": "Runcam_ThumbPro_rc19g_wide_4k_16by9_3840x2160-30.00fps", "note": "", "calibrated_by": "rahma jhon", - "camera_brand": "Runcam", + "camera_brand": "RunCam", "camera_model": "ThumbPro", "lens_model": "rc19g", "camera_setting": "wide", diff --git a/RunCam/RunCam_phoenix__Link_720p_16by9_1280x720-25.00fps.json b/RunCam/RunCam_phoenix__Link_720p_16by9_1280x720-25.00fps.json index 32d2b7f4..f32a02c8 100644 --- a/RunCam/RunCam_phoenix__Link_720p_16by9_1280x720-25.00fps.json +++ b/RunCam/RunCam_phoenix__Link_720p_16by9_1280x720-25.00fps.json @@ -3,7 +3,7 @@ "note": "Link", "calibrated_by": "Administrator", "camera_brand": "RunCam", - "camera_model": "phoenix", + "camera_model": "Phoenix", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/RunCam/RunCam_thumb pro_2.1 ratel_xv_4k_16by9_3840x2160-25.00fps.json b/RunCam/RunCam_thumb pro_2.1 ratel_xv_4k_16by9_3840x2160-25.00fps.json index 8308ba73..2d824b3d 100644 --- a/RunCam/RunCam_thumb pro_2.1 ratel_xv_4k_16by9_3840x2160-25.00fps.json +++ b/RunCam/RunCam_thumb pro_2.1 ratel_xv_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "dnlkrnwn", "camera_brand": "RunCam", - "camera_model": "thumb pro", + "camera_model": "Thumb Pro", "lens_model": "2.1 ratel", "camera_setting": "xv", "calib_dimension": { diff --git a/RunCam/Runcam_6_wide__1080p_16by9_1920x1080-60.00fps-1704791268.json b/RunCam/Runcam_6_wide__1080p_16by9_1920x1080-60.00fps-1704791268.json index f44dcd74..44cab6e3 100644 --- a/RunCam/Runcam_6_wide__1080p_16by9_1920x1080-60.00fps-1704791268.json +++ b/RunCam/Runcam_6_wide__1080p_16by9_1920x1080-60.00fps-1704791268.json @@ -2,7 +2,7 @@ "name": "Runcam_6_wide__1080p_16by9_1920x1080-60.00fps", "note": "", "calibrated_by": "RUNCAM", - "camera_brand": "Runcam", + "camera_brand": "RunCam", "camera_model": "6", "lens_model": "wide", "camera_setting": "", diff --git a/RunCam/Runcam_6_wide__1440p_4by3_1920x1440-60.00fps-1704791175.json b/RunCam/Runcam_6_wide__1440p_4by3_1920x1440-60.00fps-1704791175.json index f10c2b54..df60e229 100644 --- a/RunCam/Runcam_6_wide__1440p_4by3_1920x1440-60.00fps-1704791175.json +++ b/RunCam/Runcam_6_wide__1440p_4by3_1920x1440-60.00fps-1704791175.json @@ -2,7 +2,7 @@ "name": "Runcam_6_wide__1440p_4by3_1920x1440-60.00fps", "note": "", "calibrated_by": "RUNCAM", - "camera_brand": "Runcam", + "camera_brand": "RunCam", "camera_model": "6", "lens_model": "wide", "camera_setting": "", diff --git a/RunCam/Runcam_6_wide__2.7k_16by9_2704x1520-30.00fps-1704790633.json b/RunCam/Runcam_6_wide__2.7k_16by9_2704x1520-30.00fps-1704790633.json index 6a53cea0..1d4d6243 100644 --- a/RunCam/Runcam_6_wide__2.7k_16by9_2704x1520-30.00fps-1704790633.json +++ b/RunCam/Runcam_6_wide__2.7k_16by9_2704x1520-30.00fps-1704790633.json @@ -2,7 +2,7 @@ "name": "Runcam_6_wide__2.7k_16by9_2704x1520-30.00fps", "note": "", "calibrated_by": "RUNCAM", - "camera_brand": "Runcam", + "camera_brand": "RunCam", "camera_model": "6", "lens_model": "wide", "camera_setting": "", diff --git a/RunCam/Runcam_6_wide__2.7k_16by9_2704x1520-60.00fps-1704791122.json b/RunCam/Runcam_6_wide__2.7k_16by9_2704x1520-60.00fps-1704791122.json index c5ba1f30..f903a450 100644 --- a/RunCam/Runcam_6_wide__2.7k_16by9_2704x1520-60.00fps-1704791122.json +++ b/RunCam/Runcam_6_wide__2.7k_16by9_2704x1520-60.00fps-1704791122.json @@ -2,7 +2,7 @@ "name": "Runcam_6_wide__2.7k_16by9_2704x1520-60.00fps", "note": "", "calibrated_by": "RUNCAM", - "camera_brand": "Runcam", + "camera_brand": "RunCam", "camera_model": "6", "lens_model": "wide", "camera_setting": "", diff --git a/RunCam/Runcam_6_wide__4k_16by9_3840x2160-30.00fps-1704787078.json b/RunCam/Runcam_6_wide__4k_16by9_3840x2160-30.00fps-1704787078.json index 818d2750..ecf70f0a 100644 --- a/RunCam/Runcam_6_wide__4k_16by9_3840x2160-30.00fps-1704787078.json +++ b/RunCam/Runcam_6_wide__4k_16by9_3840x2160-30.00fps-1704787078.json @@ -2,7 +2,7 @@ "name": "Runcam_6_wide__4k_16by9_3840x2160-30.00fps", "note": "", "calibrated_by": "RUNCAM", - "camera_brand": "Runcam", + "camera_brand": "RunCam", "camera_model": "6", "lens_model": "wide", "camera_setting": "", diff --git a/RunCam/Runcam_Thumb2_16by9.json b/RunCam/Runcam_Thumb2_16by9.json index 7126cd00..54943ca6 100644 --- a/RunCam/Runcam_Thumb2_16by9.json +++ b/RunCam/Runcam_Thumb2_16by9.json @@ -2,7 +2,7 @@ "name": "Runcam_Thumb2_16by9", "note": "", "calibrated_by": "Eddy", - "camera_brand": "Runcam", + "camera_brand": "RunCam", "camera_model": "Thumb2", "lens_model": "wide", "camera_setting": "", diff --git a/RunCam/Runcam_Thumb2_4by3.json b/RunCam/Runcam_Thumb2_4by3.json index 8cbeaac7..fd841da1 100644 --- a/RunCam/Runcam_Thumb2_4by3.json +++ b/RunCam/Runcam_Thumb2_4by3.json @@ -2,7 +2,7 @@ "name": "Runcam_Thumb2_4by3", "note": "", "calibrated_by": "Eddy", - "camera_brand": "Runcam", + "camera_brand": "RunCam", "camera_model": "Thumb2", "lens_model": "wide", "camera_setting": "", diff --git a/RunCam/Runcam_ThumbPW_wide_1080p60_16by9.json b/RunCam/Runcam_ThumbPW_wide_1080p60_16by9.json index 0dacc45a..d82ecf2f 100644 --- a/RunCam/Runcam_ThumbPW_wide_1080p60_16by9.json +++ b/RunCam/Runcam_ThumbPW_wide_1080p60_16by9.json @@ -2,7 +2,7 @@ "name": "Runcam_ThumbPW_wide_1080p60_1080p_16by9_1920x1080-60.00fps", "note": "", "calibrated_by": "Elvin", - "camera_brand": "Runcam", + "camera_brand": "RunCam", "camera_model": "ThumbPW", "lens_model": "wide", "camera_setting": "1080p60", diff --git a/RunCam/Runcam_ThumbPW_wide_1440p60_4by3.json b/RunCam/Runcam_ThumbPW_wide_1440p60_4by3.json index 3db073e9..86ad0c2e 100644 --- a/RunCam/Runcam_ThumbPW_wide_1440p60_4by3.json +++ b/RunCam/Runcam_ThumbPW_wide_1440p60_4by3.json @@ -2,7 +2,7 @@ "name": "Runcam_ThumbPW_wide_1440p60_1440p_4by3_1920x1440-60.00fps", "note": "", "calibrated_by": "Elvin", - "camera_brand": "Runcam", + "camera_brand": "RunCam", "camera_model": "ThumbPW", "lens_model": "wide", "camera_setting": "1440p60", diff --git a/RunCam/Runcam_ThumbPW_wide_2.7k60_16by9.json b/RunCam/Runcam_ThumbPW_wide_2.7k60_16by9.json index ef627584..b80b36d4 100644 --- a/RunCam/Runcam_ThumbPW_wide_2.7k60_16by9.json +++ b/RunCam/Runcam_ThumbPW_wide_2.7k60_16by9.json @@ -2,7 +2,7 @@ "name": "Runcam_ThumbPW_wide_2.7k60_2.7k_16by9_2704x1520-60.00fps", "note": "", "calibrated_by": "Elvin", - "camera_brand": "Runcam", + "camera_brand": "RunCam", "camera_model": "ThumbPW", "lens_model": "wide", "camera_setting": "2.7k60", diff --git a/RunCam/Runcam_ThumbPW_wide_4k30_16by9.json b/RunCam/Runcam_ThumbPW_wide_4k30_16by9.json index 04fef603..069d4a0e 100644 --- a/RunCam/Runcam_ThumbPW_wide_4k30_16by9.json +++ b/RunCam/Runcam_ThumbPW_wide_4k30_16by9.json @@ -2,7 +2,7 @@ "name": "Runcam_ThumbPW_wide_4k30_4k_16by9_3840x2160-30.00fps", "note": "", "calibrated_by": "Elvin", - "camera_brand": "Runcam", + "camera_brand": "RunCam", "camera_model": "ThumbPW", "lens_model": "wide", "camera_setting": "4k30", diff --git a/RunCam/Runcam_ThumbPW_wide_4k30_16by9_vertical.json b/RunCam/Runcam_ThumbPW_wide_4k30_16by9_vertical.json index 728172aa..9cfc8eaa 100644 --- a/RunCam/Runcam_ThumbPW_wide_4k30_16by9_vertical.json +++ b/RunCam/Runcam_ThumbPW_wide_4k30_16by9_vertical.json @@ -2,7 +2,7 @@ "name": "Runcam_ThumbPW_wide_4k30_4k_16by9_2160x3840-30.00fps", "note": "", "calibrated_by": "Elvin", - "camera_brand": "Runcam", + "camera_brand": "RunCam", "camera_model": "ThumbPW", "lens_model": "wide", "camera_setting": "4k30", diff --git a/RunCam/Runcam_ThumbPW_wide__720p_3by4_1440x1920-60.00fps - 2.json b/RunCam/Runcam_ThumbPW_wide__720p_3by4_1440x1920-60.00fps - 2.json index f94ba37e..7f97e6e4 100644 --- a/RunCam/Runcam_ThumbPW_wide__720p_3by4_1440x1920-60.00fps - 2.json +++ b/RunCam/Runcam_ThumbPW_wide__720p_3by4_1440x1920-60.00fps - 2.json @@ -2,7 +2,7 @@ "name": "Runcam_ThumbPW_wide__720p_3by4_1440x1920-60.00fps", "note": "", "calibrated_by": "Максим Александров", - "camera_brand": "Runcam", + "camera_brand": "RunCam", "camera_model": "ThumbPW", "lens_model": "wide", "camera_setting": "", diff --git a/RunCam/Runcam_ThumbPW_wide__720p_3by4_1440x1920-60.00fps - 3.json b/RunCam/Runcam_ThumbPW_wide__720p_3by4_1440x1920-60.00fps - 3.json index dc76d695..dbf2aa00 100644 --- a/RunCam/Runcam_ThumbPW_wide__720p_3by4_1440x1920-60.00fps - 3.json +++ b/RunCam/Runcam_ThumbPW_wide__720p_3by4_1440x1920-60.00fps - 3.json @@ -2,7 +2,7 @@ "name": "Runcam_ThumbPW_wide__720p_3by4_1440x1920-60.00fps", "note": "", "calibrated_by": "Максим Александров", - "camera_brand": "Runcam", + "camera_brand": "RunCam", "camera_model": "ThumbPW", "lens_model": "wide", "camera_setting": "", diff --git a/RunCam/Runcam_ThumbPW_xv_4k30.json b/RunCam/Runcam_ThumbPW_xv_4k30.json index 150fd054..a96614b4 100644 --- a/RunCam/Runcam_ThumbPW_xv_4k30.json +++ b/RunCam/Runcam_ThumbPW_xv_4k30.json @@ -2,7 +2,7 @@ "name": "Runcam_ThumbPW_xv_4k30xv_4k_4by3_3840x2880-30.00fps", "note": "", "calibrated_by": "Elvin", - "camera_brand": "Runcam", + "camera_brand": "RunCam", "camera_model": "ThumbPW", "lens_model": "xv", "camera_setting": "4k30xv", diff --git a/RunCam/Runcam_ThumbPW_xv_90'_2k_9by16_2160x3840-30.00fps.json b/RunCam/Runcam_ThumbPW_xv_90'_2k_9by16_2160x3840-30.00fps.json index 3a6cd457..1ced47e5 100644 --- a/RunCam/Runcam_ThumbPW_xv_90'_2k_9by16_2160x3840-30.00fps.json +++ b/RunCam/Runcam_ThumbPW_xv_90'_2k_9by16_2160x3840-30.00fps.json @@ -2,7 +2,7 @@ "name": "Runcam_ThumbPW_xv_90'_2k_9by16_2160x3840-30.00fps", "note": "90'", "calibrated_by": "omar", - "camera_brand": "Runcam", + "camera_brand": "RunCam", "camera_model": "ThumbPW", "lens_model": "xv", "camera_setting": "", diff --git a/RunCam/Runcam_ThumbPro_Goveisee 2.1mm_No Distortion 2.1mm 1-2.7 sensor_4k_16by9_3840x2160-30.00fps.json b/RunCam/Runcam_ThumbPro_Goveisee 2.1mm_No Distortion 2.1mm 1-2.7 sensor_4k_16by9_3840x2160-30.00fps.json index ffdf66ef..df6e8a60 100644 --- a/RunCam/Runcam_ThumbPro_Goveisee 2.1mm_No Distortion 2.1mm 1-2.7 sensor_4k_16by9_3840x2160-30.00fps.json +++ b/RunCam/Runcam_ThumbPro_Goveisee 2.1mm_No Distortion 2.1mm 1-2.7 sensor_4k_16by9_3840x2160-30.00fps.json @@ -2,7 +2,7 @@ "name": "Runcam_ThumbPro_Goveisee 2.1mm_No Distortion 2.1mm 1-2.7 sensor_4k_16by9_3840x2160-30.00fps", "note": "No Distortion 2.1mm 1-2.7 sensor", "calibrated_by": "Pretentiousmess", - "camera_brand": "Runcam", + "camera_brand": "RunCam", "camera_model": "ThumbPro", "lens_model": "Goveisee 2.1mm", "camera_setting": "", diff --git a/RunCam/Runcam_ThumbPro_RC18G_Lens Mod_2.7k_16by9_2704x1520-60.00fps.json b/RunCam/Runcam_ThumbPro_RC18G_Lens Mod_2.7k_16by9_2704x1520-60.00fps.json index 3740e7db..115266eb 100644 --- a/RunCam/Runcam_ThumbPro_RC18G_Lens Mod_2.7k_16by9_2704x1520-60.00fps.json +++ b/RunCam/Runcam_ThumbPro_RC18G_Lens Mod_2.7k_16by9_2704x1520-60.00fps.json @@ -2,7 +2,7 @@ "name": "Runcam_ThumbPro_RC18G_Lens Mod_2.7k_16by9_2704x1520-60.00fps", "note": "Lens Mod", "calibrated_by": "Christian Protte", - "camera_brand": "Runcam", + "camera_brand": "RunCam", "camera_model": "ThumbPro", "lens_model": "RC18G", "camera_setting": "", diff --git a/RunCam/Runcam_ThumbPro_RC18G__4k_16by9_3840x2160-30.00fps - Erik Mackensen.json b/RunCam/Runcam_ThumbPro_RC18G__4k_16by9_3840x2160-30.00fps - Erik Mackensen.json index 3e8d60e7..23c7f704 100644 --- a/RunCam/Runcam_ThumbPro_RC18G__4k_16by9_3840x2160-30.00fps - Erik Mackensen.json +++ b/RunCam/Runcam_ThumbPro_RC18G__4k_16by9_3840x2160-30.00fps - Erik Mackensen.json @@ -2,7 +2,7 @@ "name": "Runcam_ThumbPro_RC18G__4k_16by9_3840x2160-30.00fps", "note": "", "calibrated_by": "Erik Mackensen", - "camera_brand": "Runcam", + "camera_brand": "RunCam", "camera_model": "ThumbPro", "lens_model": "RC18G", "camera_setting": "", diff --git a/RunCam/Runcam_ThumbPro_stock_30_4k_16by9_3840x2160-30.00fps.json b/RunCam/Runcam_ThumbPro_stock_30_4k_16by9_3840x2160-30.00fps.json index dbdf61ce..cebb03a0 100644 --- a/RunCam/Runcam_ThumbPro_stock_30_4k_16by9_3840x2160-30.00fps.json +++ b/RunCam/Runcam_ThumbPro_stock_30_4k_16by9_3840x2160-30.00fps.json @@ -2,7 +2,7 @@ "name": "Runcam_ThumbPro_stock_30_4k_16by9_3840x2160-30.00fps", "note": "auto all", "calibrated_by": "Timberton402", - "camera_brand": "Runcam", + "camera_brand": "RunCam", "camera_model": "ThumbPro", "lens_model": "stock", "camera_setting": "30", diff --git a/RunCam/Runcam_Thumb_Pro_xv_4k.json b/RunCam/Runcam_Thumb_Pro_xv_4k.json index 1b559fd5..f1068af0 100644 --- a/RunCam/Runcam_Thumb_Pro_xv_4k.json +++ b/RunCam/Runcam_Thumb_Pro_xv_4k.json @@ -2,7 +2,7 @@ "name": "Runcam_ThumbPro_xv_4k_4by3_3840x2880-30.00fps", "note": "", "calibrated_by": "Elvin", - "camera_brand": "Runcam", + "camera_brand": "RunCam", "camera_model": "ThumbPro", "lens_model": "xv", "camera_setting": "4k30xv", diff --git a/SJCAM/SJCAM_11___4k_16by9_3840x2160-30.00fps.json b/SJCAM/SJCAM_11___4k_16by9_3840x2160-30.00fps.json index f3291930..099c9cef 100644 --- a/SJCAM/SJCAM_11___4k_16by9_3840x2160-30.00fps.json +++ b/SJCAM/SJCAM_11___4k_16by9_3840x2160-30.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_11___4k_16by9_3840x2160-30.00fps", "note": "", "calibrated_by": "Administrator", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "11", "lens_model": "", "camera_setting": "", diff --git a/SJCAM/SJCAM_200pro___2.5k_16by9_2560x1440-30.00fps.json b/SJCAM/SJCAM_200pro___2.5k_16by9_2560x1440-30.00fps.json index fee3d682..c1cad143 100644 --- a/SJCAM/SJCAM_200pro___2.5k_16by9_2560x1440-30.00fps.json +++ b/SJCAM/SJCAM_200pro___2.5k_16by9_2560x1440-30.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_200pro___2.5k_16by9_2560x1440-30.00fps", "note": "", "calibrated_by": "U0 A208", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "200pro", "lens_model": "", "camera_setting": "", diff --git a/SJCAM/SJCAM_4000 AIR_Wide__4k_16by9_3840x2160-30.01fps.json b/SJCAM/SJCAM_4000 AIR_Wide__4k_16by9_3840x2160-30.01fps.json index 6afa3cb4..a0661883 100644 --- a/SJCAM/SJCAM_4000 AIR_Wide__4k_16by9_3840x2160-30.01fps.json +++ b/SJCAM/SJCAM_4000 AIR_Wide__4k_16by9_3840x2160-30.01fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_4000 AIR_Wide__4k_16by9_3840x2160-30.01fps", "note": "", "calibrated_by": "OOg Images", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "4000 AIR", "lens_model": "Wide", "camera_setting": "", diff --git a/SJCAM/SJCAM_4000air___2.5k_16by9_2688x1520-30.04fps.json b/SJCAM/SJCAM_4000air___2.5k_16by9_2688x1520-30.04fps.json index 861754b7..1955448a 100644 --- a/SJCAM/SJCAM_4000air___2.5k_16by9_2688x1520-30.04fps.json +++ b/SJCAM/SJCAM_4000air___2.5k_16by9_2688x1520-30.04fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_4000air___2.5k_16by9_2688x1520-30.04fps", "note": "", "calibrated_by": "JayDeePee", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "4000air", "lens_model": "", "camera_setting": "", diff --git a/SJCAM/SJCAM_8 Pro_Standard_(error 1.392)_2.7k_16by9_2720x1520-29.97fps.json b/SJCAM/SJCAM_8 Pro_Standard_(error 1.392)_2.7k_16by9_2720x1520-29.97fps.json index f9c4bb77..3de980a4 100644 --- a/SJCAM/SJCAM_8 Pro_Standard_(error 1.392)_2.7k_16by9_2720x1520-29.97fps.json +++ b/SJCAM/SJCAM_8 Pro_Standard_(error 1.392)_2.7k_16by9_2720x1520-29.97fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_8 Pro_Standard_(error 1.392)_2.7k_16by9_2720x1520-29.97fps", "note": "(error 1.392)", "calibrated_by": "Кузнецов Евгений Романович", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "8 Pro", "lens_model": "Standard", "camera_setting": "", diff --git a/SJCAM/SJCAM_8Pro_Standart_stab_4k_16by9_3840x2160-29.97fps.json b/SJCAM/SJCAM_8Pro_Standart_stab_4k_16by9_3840x2160-29.97fps.json index 7def2e64..6f80e2c4 100644 --- a/SJCAM/SJCAM_8Pro_Standart_stab_4k_16by9_3840x2160-29.97fps.json +++ b/SJCAM/SJCAM_8Pro_Standart_stab_4k_16by9_3840x2160-29.97fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_8Pro_Standart_stab_4k_16by9_3840x2160-29.97fps", "note": "", "calibrated_by": "Воцензук Евгений", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "8Pro", "lens_model": "Standart", "camera_setting": "stab", diff --git a/SJCAM/SJCAM_C200_SONY IMX335__1080p_16by9_1920x1080-60.00fps.json b/SJCAM/SJCAM_C200_SONY IMX335__1080p_16by9_1920x1080-60.00fps.json index 1e1ee846..9382b772 100644 --- a/SJCAM/SJCAM_C200_SONY IMX335__1080p_16by9_1920x1080-60.00fps.json +++ b/SJCAM/SJCAM_C200_SONY IMX335__1080p_16by9_1920x1080-60.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_C200_SONY IMX335__1080p_16by9_1920x1080-60.00fps", "note": "", "calibrated_by": "小马", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "C200", "lens_model": "SONY IMX335", "camera_setting": "", diff --git a/SJCAM/SJCAM_C300__2. Super View_2.5k_4by3_2560x1920-30.00fps.json b/SJCAM/SJCAM_C300__2. Super View_2.5k_4by3_2560x1920-30.00fps.json index 0abd1e44..3bb8b38b 100644 --- a/SJCAM/SJCAM_C300__2. Super View_2.5k_4by3_2560x1920-30.00fps.json +++ b/SJCAM/SJCAM_C300__2. Super View_2.5k_4by3_2560x1920-30.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_C300__2. Super View_2.5k_4by3_2560x1920-30.00fps", "note": "", "calibrated_by": "Administrator", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "C300", "lens_model": "", "camera_setting": "2. Super View", diff --git a/SJCAM/SJCAM_C300__2K 60 No anti distor_2.5k_16by9_2560x1440-60.00fps.json b/SJCAM/SJCAM_C300__2K 60 No anti distor_2.5k_16by9_2560x1440-60.00fps.json index 55a962cf..d451378a 100644 --- a/SJCAM/SJCAM_C300__2K 60 No anti distor_2.5k_16by9_2560x1440-60.00fps.json +++ b/SJCAM/SJCAM_C300__2K 60 No anti distor_2.5k_16by9_2560x1440-60.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_C300__2K 60 No anti distor_2.5k_16by9_2560x1440-60.00fps", "note": "", "calibrated_by": "Andy", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "C300", "lens_model": "", "camera_setting": "2K 60 No anti distor", diff --git a/SJCAM/SJCAM_C300__2K_2.5k_16by9_2560x1440-60.00fps.json b/SJCAM/SJCAM_C300__2K_2.5k_16by9_2560x1440-60.00fps.json index 6d2ce61a..3ef22e2c 100644 --- a/SJCAM/SJCAM_C300__2K_2.5k_16by9_2560x1440-60.00fps.json +++ b/SJCAM/SJCAM_C300__2K_2.5k_16by9_2560x1440-60.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_C300__2K_2.5k_16by9_2560x1440-60.00fps", "note": "", "calibrated_by": "Andy", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "C300", "lens_model": "", "camera_setting": "2K", diff --git a/SJCAM/SJCAM_C300__2k_2.5k_16by9_2560x1440-60.00fps - RH Yap - 2.json b/SJCAM/SJCAM_C300__2k_2.5k_16by9_2560x1440-60.00fps - RH Yap - 2.json index d93556d1..b00e4b7f 100644 --- a/SJCAM/SJCAM_C300__2k_2.5k_16by9_2560x1440-60.00fps - RH Yap - 2.json +++ b/SJCAM/SJCAM_C300__2k_2.5k_16by9_2560x1440-60.00fps - RH Yap - 2.json @@ -2,7 +2,7 @@ "name": "SJCAM_C300__2k_2.5k_16by9_2560x1440-60.00fps", "note": "Gyro stabilisation off", "calibrated_by": "RH Yap", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "C300", "lens_model": "", "camera_setting": "2k", diff --git a/SJCAM/SJCAM_C300__P_1080p_16by9_1920x1080-60.00fps.json b/SJCAM/SJCAM_C300__P_1080p_16by9_1920x1080-60.00fps.json index 23d202e1..e12c8401 100644 --- a/SJCAM/SJCAM_C300__P_1080p_16by9_1920x1080-60.00fps.json +++ b/SJCAM/SJCAM_C300__P_1080p_16by9_1920x1080-60.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_C300__P_1080p_16by9_1920x1080-60.00fps", "note": "", "calibrated_by": "Andy", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "C300", "lens_model": "", "camera_setting": "P", diff --git a/SJCAM/SJCAM_C300___2.5k_16by9_2560x1440-60.00fps.json b/SJCAM/SJCAM_C300___2.5k_16by9_2560x1440-60.00fps.json index 85bea9e0..873d3781 100644 --- a/SJCAM/SJCAM_C300___2.5k_16by9_2560x1440-60.00fps.json +++ b/SJCAM/SJCAM_C300___2.5k_16by9_2560x1440-60.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_C300___2.5k_16by9_2560x1440-60.00fps", "note": "", "calibrated_by": "Administrator", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "C300", "lens_model": "", "camera_setting": "", diff --git a/SJCAM/SJCAM_C300___480p_16by9_960x544-30.00fps.json b/SJCAM/SJCAM_C300___480p_16by9_960x544-30.00fps.json index 93ef6952..1ce77e0a 100644 --- a/SJCAM/SJCAM_C300___480p_16by9_960x544-30.00fps.json +++ b/SJCAM/SJCAM_C300___480p_16by9_960x544-30.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_C300___480p_16by9_960x544-30.00fps", "note": "", "calibrated_by": "cy j", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "C300", "lens_model": "", "camera_setting": "", diff --git a/SJCAM/SJCAM_C_300P__2.5k_16by9_2560x1440-60.00fps.json b/SJCAM/SJCAM_C_300P__2.5k_16by9_2560x1440-60.00fps.json index 952a68b8..4ae4e218 100644 --- a/SJCAM/SJCAM_C_300P__2.5k_16by9_2560x1440-60.00fps.json +++ b/SJCAM/SJCAM_C_300P__2.5k_16by9_2560x1440-60.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_C_300P__2.5k_16by9_2560x1440-60.00fps", "note": "", "calibrated_by": "Administrator", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "C", "lens_model": "300P", "camera_setting": "", diff --git a/SJCAM/SJCAM_C_300R__2.5k_16by9_2560x1440-60.00fps.json b/SJCAM/SJCAM_C_300R__2.5k_16by9_2560x1440-60.00fps.json index eb81c42a..62f24950 100644 --- a/SJCAM/SJCAM_C_300R__2.5k_16by9_2560x1440-60.00fps.json +++ b/SJCAM/SJCAM_C_300R__2.5k_16by9_2560x1440-60.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_C_300R__2.5k_16by9_2560x1440-60.00fps", "note": "", "calibrated_by": "Administrator", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "C", "lens_model": "300R", "camera_setting": "", diff --git a/SJCAM/SJCAM_C_300__2.5k_16by9_2560x1440-60.00fps.json b/SJCAM/SJCAM_C_300__2.5k_16by9_2560x1440-60.00fps.json index 7dfe62fe..38e8f684 100644 --- a/SJCAM/SJCAM_C_300__2.5k_16by9_2560x1440-60.00fps.json +++ b/SJCAM/SJCAM_C_300__2.5k_16by9_2560x1440-60.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_C_300__2.5k_16by9_2560x1440-60.00fps", "note": "", "calibrated_by": "Administrator", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "C", "lens_model": "300", "camera_setting": "", diff --git a/SJCAM/SJCAM_Legend 6___720p_4by3_1440x1080-30.00fps.json b/SJCAM/SJCAM_Legend 6___720p_4by3_1440x1080-30.00fps.json index ad2aee82..14aedc84 100644 --- a/SJCAM/SJCAM_Legend 6___720p_4by3_1440x1080-30.00fps.json +++ b/SJCAM/SJCAM_Legend 6___720p_4by3_1440x1080-30.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_Legend 6___720p_4by3_1440x1080-30.00fps", "note": "", "calibrated_by": "Moshe Nahari", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "Legend 6", "lens_model": "", "camera_setting": "", diff --git a/SJCAM/SJCAM_M10+__Wide_1080p_16by9_1920x1080-60.00fps.json b/SJCAM/SJCAM_M10+__Wide_1080p_16by9_1920x1080-60.00fps.json index 8d27b832..d125513e 100644 --- a/SJCAM/SJCAM_M10+__Wide_1080p_16by9_1920x1080-60.00fps.json +++ b/SJCAM/SJCAM_M10+__Wide_1080p_16by9_1920x1080-60.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_M10+__Wide_1080p_16by9_1920x1080-60.00fps", "note": "WDR", "calibrated_by": "Fabian Louwers", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "M10+", "lens_model": "", "camera_setting": "Wide", diff --git a/SJCAM/SJCAM_M20__HD No Correction_1080p_16by9_1920x1080-60.00fps.json b/SJCAM/SJCAM_M20__HD No Correction_1080p_16by9_1920x1080-60.00fps.json index 0d346620..9e67f091 100644 --- a/SJCAM/SJCAM_M20__HD No Correction_1080p_16by9_1920x1080-60.00fps.json +++ b/SJCAM/SJCAM_M20__HD No Correction_1080p_16by9_1920x1080-60.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_M20__HD No Correction_1080p_16by9_1920x1080-60.00fps", "note": "", "calibrated_by": "OOg Images", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "M20", "lens_model": "", "camera_setting": "HD No Correction", diff --git a/SJCAM/SJCAM_SJ 7 STAR_Wide_V1_2.5k_16by9_2560x1440-59.94fps.json b/SJCAM/SJCAM_SJ 7 STAR_Wide_V1_2.5k_16by9_2560x1440-59.94fps.json index 3552d014..7b947059 100644 --- a/SJCAM/SJCAM_SJ 7 STAR_Wide_V1_2.5k_16by9_2560x1440-59.94fps.json +++ b/SJCAM/SJCAM_SJ 7 STAR_Wide_V1_2.5k_16by9_2560x1440-59.94fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_SJ 7 STAR_Wide_V1_2.5k_16by9_2560x1440-59.94fps", "note": "V1", "calibrated_by": "VeeoN", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "SJ 7 STAR", "lens_model": "Wide", "camera_setting": "", diff --git a/SJCAM/SJCAM_SJ 8 Pro_Without Len correction__4k_16by9_3840x2160-29.97fps.json b/SJCAM/SJCAM_SJ 8 Pro_Without Len correction__4k_16by9_3840x2160-29.97fps.json index 747e5298..76af586c 100644 --- a/SJCAM/SJCAM_SJ 8 Pro_Without Len correction__4k_16by9_3840x2160-29.97fps.json +++ b/SJCAM/SJCAM_SJ 8 Pro_Without Len correction__4k_16by9_3840x2160-29.97fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_SJ 8 Pro_Without Len correction__4k_16by9_3840x2160-29.97fps", "note": "", "calibrated_by": "VictorMPG83", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "SJ 8 Pro", "lens_model": "Without Len correction", "camera_setting": "", diff --git a/SJCAM/SJCAM_SJ10 Pro_standart_stab off_4k_16by9_3840x2160-29.97fps.json b/SJCAM/SJCAM_SJ10 Pro_standart_stab off_4k_16by9_3840x2160-29.97fps.json index 4817d3ea..c144b01b 100644 --- a/SJCAM/SJCAM_SJ10 Pro_standart_stab off_4k_16by9_3840x2160-29.97fps.json +++ b/SJCAM/SJCAM_SJ10 Pro_standart_stab off_4k_16by9_3840x2160-29.97fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_SJ10 Pro_standart_stab off_4k_16by9_3840x2160-29.97fps", "note": "fw:R1.2.2NMP(08.09.2021)cfn", "calibrated_by": "Сергей", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "SJ10 Pro", "lens_model": "standart", "camera_setting": "stab off", diff --git a/SJCAM/SJCAM_SJ20_Dual__1080p_16by9_1920x1080-30.00fps.json b/SJCAM/SJCAM_SJ20_Dual__1080p_16by9_1920x1080-30.00fps.json index a1ec1cd6..814b52c9 100644 --- a/SJCAM/SJCAM_SJ20_Dual__1080p_16by9_1920x1080-30.00fps.json +++ b/SJCAM/SJCAM_SJ20_Dual__1080p_16by9_1920x1080-30.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_SJ20_Dual__1080p_16by9_1920x1080-30.00fps", "note": "", "calibrated_by": "U0 A293", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "SJ20", "lens_model": "Dual", "camera_setting": "", diff --git a/SJCAM/SJCAM_SJ4000 Air___2.5k_16by9_2688x1520-30.02fps.json b/SJCAM/SJCAM_SJ4000 Air___2.5k_16by9_2688x1520-30.02fps.json index c2617c36..9768b86d 100644 --- a/SJCAM/SJCAM_SJ4000 Air___2.5k_16by9_2688x1520-30.02fps.json +++ b/SJCAM/SJCAM_SJ4000 Air___2.5k_16by9_2688x1520-30.02fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_SJ4000 Air___2.5k_16by9_2688x1520-30.02fps", "note": "", "calibrated_by": "Владислав Леонов", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "SJ4000 Air", "lens_model": "", "camera_setting": "", diff --git a/SJCAM/SJCAM_SJ4000___1080p_16by9_1920x1080-30.00fps (2).json b/SJCAM/SJCAM_SJ4000___1080p_16by9_1920x1080-30.00fps (2).json index 3fd24dfa..3af40803 100644 --- a/SJCAM/SJCAM_SJ4000___1080p_16by9_1920x1080-30.00fps (2).json +++ b/SJCAM/SJCAM_SJ4000___1080p_16by9_1920x1080-30.00fps (2).json @@ -2,7 +2,7 @@ "name": "SJCAM_SJ4000___1080p_16by9_1920x1080-30.00fps", "note": "", "calibrated_by": "Никитос", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "SJ4000", "lens_model": "", "camera_setting": "", diff --git a/SJCAM/SJCAM_SJ4000___1080p_16by9_1920x1080-30.00fps - Yavor - 2.json b/SJCAM/SJCAM_SJ4000___1080p_16by9_1920x1080-30.00fps - Yavor - 2.json index 925b9ef5..1a3d4950 100644 --- a/SJCAM/SJCAM_SJ4000___1080p_16by9_1920x1080-30.00fps - Yavor - 2.json +++ b/SJCAM/SJCAM_SJ4000___1080p_16by9_1920x1080-30.00fps - Yavor - 2.json @@ -2,7 +2,7 @@ "name": "SJCAM_SJ4000___1080p_16by9_1920x1080-30.00fps", "note": "", "calibrated_by": "Yavor", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "SJ4000", "lens_model": "", "camera_setting": "", diff --git a/SJCAM/SJCAM_SJ4000___1080p_16by9_1920x1080-30.00fps.json b/SJCAM/SJCAM_SJ4000___1080p_16by9_1920x1080-30.00fps.json index b490c746..7b79bf1b 100644 --- a/SJCAM/SJCAM_SJ4000___1080p_16by9_1920x1080-30.00fps.json +++ b/SJCAM/SJCAM_SJ4000___1080p_16by9_1920x1080-30.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_SJ4000___1080p_16by9_1920x1080-30.00fps", "note": "", "calibrated_by": "Morgan Jonasson", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "SJ4000", "lens_model": "", "camera_setting": "", diff --git a/SJCAM/SJCAM_SJ5000X_default_default_1080p_16by9_1920x1080-60.00fps.json b/SJCAM/SJCAM_SJ5000X_default_default_1080p_16by9_1920x1080-60.00fps.json index fc36cbe1..c763d8f5 100644 --- a/SJCAM/SJCAM_SJ5000X_default_default_1080p_16by9_1920x1080-60.00fps.json +++ b/SJCAM/SJCAM_SJ5000X_default_default_1080p_16by9_1920x1080-60.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_SJ5000X_default_default_1080p_16by9_1920x1080-60.00fps", "note": "", "calibrated_by": "Maxim Sakov", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "SJ5000X", "lens_model": "default", "camera_setting": "default", diff --git a/SJCAM/SJCAM_SJ5000___1080p_16by9_1920x1080-60.00fps.json b/SJCAM/SJCAM_SJ5000___1080p_16by9_1920x1080-60.00fps.json index 39371204..edff5a8c 100644 --- a/SJCAM/SJCAM_SJ5000___1080p_16by9_1920x1080-60.00fps.json +++ b/SJCAM/SJCAM_SJ5000___1080p_16by9_1920x1080-60.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_SJ5000___1080p_16by9_1920x1080-60.00fps", "note": "", "calibrated_by": "kkozu", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "SJ5000", "lens_model": "", "camera_setting": "", diff --git a/SJCAM/SJCAM_SJ5000x___1080p_16by9_1920x1080-60.00fps.json b/SJCAM/SJCAM_SJ5000x___1080p_16by9_1920x1080-60.00fps.json index 82c6a787..97686924 100644 --- a/SJCAM/SJCAM_SJ5000x___1080p_16by9_1920x1080-60.00fps.json +++ b/SJCAM/SJCAM_SJ5000x___1080p_16by9_1920x1080-60.00fps.json @@ -2,8 +2,8 @@ "name": "SJCAM_SJ5000x___1080p_16by9_1920x1080-60.00fps", "note": "", "calibrated_by": "AH", - "camera_brand": "SJCAM", - "camera_model": "SJ5000x", + "camera_brand": "SJCam", + "camera_model": "SJ5000X", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/SJCAM/SJCAM_SJ6 Legend___2.5k_16by9_2560x1440-30.00fps.json b/SJCAM/SJCAM_SJ6 Legend___2.5k_16by9_2560x1440-30.00fps.json index f945acb2..9f8de3e4 100644 --- a/SJCAM/SJCAM_SJ6 Legend___2.5k_16by9_2560x1440-30.00fps.json +++ b/SJCAM/SJCAM_SJ6 Legend___2.5k_16by9_2560x1440-30.00fps.json @@ -6,7 +6,7 @@ }, "calibrated_by": "Administrator", "calibrator_version": "1.5.4", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "SJ6 Legend", "camera_setting": "", "compatible_settings": [], diff --git a/SJCAM/SJCAM_SJ6 legend___1080p_16by9_1920x1080-60.00fps.json b/SJCAM/SJCAM_SJ6 legend___1080p_16by9_1920x1080-60.00fps.json index 00dec2ed..16d29f76 100644 --- a/SJCAM/SJCAM_SJ6 legend___1080p_16by9_1920x1080-60.00fps.json +++ b/SJCAM/SJCAM_SJ6 legend___1080p_16by9_1920x1080-60.00fps.json @@ -2,8 +2,8 @@ "name": "SJCAM_SJ6 legend___1080p_16by9_1920x1080-60.00fps", "note": "", "calibrated_by": "max", - "camera_brand": "SJCAM", - "camera_model": "SJ6 legend", + "camera_brand": "SJCam", + "camera_model": "SJ6 Legend", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/SJCAM/SJCAM_SJ6PRO___4k_16by9_3840x2160-60.00fps.json b/SJCAM/SJCAM_SJ6PRO___4k_16by9_3840x2160-60.00fps.json index 847e865c..87033a7c 100644 --- a/SJCAM/SJCAM_SJ6PRO___4k_16by9_3840x2160-60.00fps.json +++ b/SJCAM/SJCAM_SJ6PRO___4k_16by9_3840x2160-60.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_SJ6PRO___4k_16by9_3840x2160-60.00fps", "note": "", "calibrated_by": "潇洒哥哥", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "SJ6PRO", "lens_model": "", "camera_setting": "", diff --git a/SJCAM/SJCAM_SJ7__Wide_4k_16by9_3840x2160-29.97fps.json b/SJCAM/SJCAM_SJ7__Wide_4k_16by9_3840x2160-29.97fps.json index e93babae..77b0e1a6 100644 --- a/SJCAM/SJCAM_SJ7__Wide_4k_16by9_3840x2160-29.97fps.json +++ b/SJCAM/SJCAM_SJ7__Wide_4k_16by9_3840x2160-29.97fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_SJ7__Wide_4k_16by9_3840x2160-29.97fps", "note": "4K 30 FPS", "calibrated_by": "Fabian Louwers", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "SJ7", "lens_model": "", "camera_setting": "Wide", diff --git a/SJCAM/SJCAM_SJ7___2.7k_4by3_2880x2160-25.00fps.json b/SJCAM/SJCAM_SJ7___2.7k_4by3_2880x2160-25.00fps.json index f9c544e6..0b0e2b3e 100644 --- a/SJCAM/SJCAM_SJ7___2.7k_4by3_2880x2160-25.00fps.json +++ b/SJCAM/SJCAM_SJ7___2.7k_4by3_2880x2160-25.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_SJ7___2.7k_4by3_2880x2160-25.00fps", "note": "", "calibrated_by": "Ярослав", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "SJ7", "lens_model": "", "camera_setting": "", diff --git a/SJCAM/SJCAM_SJ8 PLUS_90 Lens_WIDE_4k_16by9_3840x2160-30.00fps.json b/SJCAM/SJCAM_SJ8 PLUS_90 Lens_WIDE_4k_16by9_3840x2160-30.00fps.json index 3ed74744..1b4835ac 100644 --- a/SJCAM/SJCAM_SJ8 PLUS_90 Lens_WIDE_4k_16by9_3840x2160-30.00fps.json +++ b/SJCAM/SJCAM_SJ8 PLUS_90 Lens_WIDE_4k_16by9_3840x2160-30.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_SJ8 PLUS_90° Lens_WIDE_4k_16by9_3840x2160-30.00fps", "note": "Not for original Lens", "calibrated_by": "Martin", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "SJ8 PLUS", "lens_model": "90° Lens", "camera_setting": "WIDE", diff --git a/SJCAM/SJCAM_SJ8 PRO_Without Len Correction__4k_16by9_3840x2160-50.00fps.json b/SJCAM/SJCAM_SJ8 PRO_Without Len Correction__4k_16by9_3840x2160-50.00fps.json index f19f7975..4f38fca5 100644 --- a/SJCAM/SJCAM_SJ8 PRO_Without Len Correction__4k_16by9_3840x2160-50.00fps.json +++ b/SJCAM/SJCAM_SJ8 PRO_Without Len Correction__4k_16by9_3840x2160-50.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_SJ8 PRO_Without Len Correction__4k_16by9_3840x2160-50.00fps", "note": "", "calibrated_by": "VictorMPG83", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "SJ8 PRO", "lens_model": "Without Len Correction", "camera_setting": "", diff --git a/SJCAM/SJCAM_SJ8 PRO_Without len correction__4k_16by9_3840x2160-59.94fps.json b/SJCAM/SJCAM_SJ8 PRO_Without len correction__4k_16by9_3840x2160-59.94fps.json index 80dc4db7..f94dcece 100644 --- a/SJCAM/SJCAM_SJ8 PRO_Without len correction__4k_16by9_3840x2160-59.94fps.json +++ b/SJCAM/SJCAM_SJ8 PRO_Without len correction__4k_16by9_3840x2160-59.94fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_SJ8 PRO_Without len correction__4k_16by9_3840x2160-59.94fps", "note": "", "calibrated_by": "VictorMPG83", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "SJ8 PRO", "lens_model": "Without len correction", "camera_setting": "", diff --git a/SJCAM/SJCAM_SJ8 PRO__sin correccin de lente_4k_16by9_3840x2160-59.94fps.json b/SJCAM/SJCAM_SJ8 PRO__sin correccin de lente_4k_16by9_3840x2160-59.94fps.json index c4857b05..bd828408 100644 --- a/SJCAM/SJCAM_SJ8 PRO__sin correccin de lente_4k_16by9_3840x2160-59.94fps.json +++ b/SJCAM/SJCAM_SJ8 PRO__sin correccin de lente_4k_16by9_3840x2160-59.94fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_SJ8 PRO__sin corrección de lente_4k_16by9_3840x2160-59.94fps", "note": "sin corrección de lente", "calibrated_by": "VictorMPG83", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "SJ8 PRO", "lens_model": "", "camera_setting": "", diff --git a/SJCAM/SJCAM_SJ8 PRO_int__4k_16by9_3840x2160-50.00fps.json b/SJCAM/SJCAM_SJ8 PRO_int__4k_16by9_3840x2160-50.00fps.json index db1b2304..76492030 100644 --- a/SJCAM/SJCAM_SJ8 PRO_int__4k_16by9_3840x2160-50.00fps.json +++ b/SJCAM/SJCAM_SJ8 PRO_int__4k_16by9_3840x2160-50.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_SJ8 PRO_int__4k_16by9_3840x2160-50.00fps", "note": "", "calibrated_by": "Vl", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "SJ8 PRO", "lens_model": "int", "camera_setting": "", diff --git a/SJCAM/SJCAM_SJ8 Plus___4k_16by9_3840x2160-30.00fps.json b/SJCAM/SJCAM_SJ8 Plus___4k_16by9_3840x2160-30.00fps.json index c33b8697..079c2b2d 100644 --- a/SJCAM/SJCAM_SJ8 Plus___4k_16by9_3840x2160-30.00fps.json +++ b/SJCAM/SJCAM_SJ8 Plus___4k_16by9_3840x2160-30.00fps.json @@ -2,8 +2,8 @@ "name": "SJCAM_SJ8 Plus___4k_16by9_3840x2160-30.00fps", "note": "", "calibrated_by": "Пользователь", - "camera_brand": "SJCAM", - "camera_model": "SJ8 Plus", + "camera_brand": "SJCam", + "camera_model": "SJ8 PLUS", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/SJCAM/SJCAM_SJ8 Pro_Without Len Correction__4k_16by9_3840x2160-29.97fps.json b/SJCAM/SJCAM_SJ8 Pro_Without Len Correction__4k_16by9_3840x2160-29.97fps.json index da1cc3e3..eccda2f6 100644 --- a/SJCAM/SJCAM_SJ8 Pro_Without Len Correction__4k_16by9_3840x2160-29.97fps.json +++ b/SJCAM/SJCAM_SJ8 Pro_Without Len Correction__4k_16by9_3840x2160-29.97fps.json @@ -2,8 +2,8 @@ "name": "SJCAM_SJ8 Pro_Without Len Correction__4k_16by9_3840x2160-29.97fps", "note": "", "calibrated_by": "VictorMPG83", - "camera_brand": "SJCAM", - "camera_model": "SJ8 Pro", + "camera_brand": "SJCam", + "camera_model": "SJ8 PRO", "lens_model": "Without Len Correction", "camera_setting": "", "calib_dimension": { diff --git a/SJCAM/SJCAM_SJ8 Pro___4k_16by9_3840x2160-59.94fps.json b/SJCAM/SJCAM_SJ8 Pro___4k_16by9_3840x2160-59.94fps.json index 65d403d1..d4a1cbf0 100644 --- a/SJCAM/SJCAM_SJ8 Pro___4k_16by9_3840x2160-59.94fps.json +++ b/SJCAM/SJCAM_SJ8 Pro___4k_16by9_3840x2160-59.94fps.json @@ -2,8 +2,8 @@ "name": "SJCAM_SJ8 Pro___4k_16by9_3840x2160-59.94fps", "note": "", "calibrated_by": "Vl", - "camera_brand": "SJCAM", - "camera_model": "SJ8 Pro", + "camera_brand": "SJCam", + "camera_model": "SJ8 PRO", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/SJCAM/SJCAM_SJ8PRO__@_2.7k_16by9_2720x1520-59.94fps.json b/SJCAM/SJCAM_SJ8PRO__@_2.7k_16by9_2720x1520-59.94fps.json index ea79b57d..e4ecee87 100644 --- a/SJCAM/SJCAM_SJ8PRO__@_2.7k_16by9_2720x1520-59.94fps.json +++ b/SJCAM/SJCAM_SJ8PRO__@_2.7k_16by9_2720x1520-59.94fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_SJ8PRO__@_2.7k_16by9_2720x1520-59.94fps", "note": "", "calibrated_by": "York Tam", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "SJ8PRO", "lens_model": "", "camera_setting": "@", diff --git a/SJCAM/SJCAM_SJ8___4k_16by9_3840x2160-59.94fps.json b/SJCAM/SJCAM_SJ8___4k_16by9_3840x2160-59.94fps.json index fcd52a89..04db474b 100644 --- a/SJCAM/SJCAM_SJ8___4k_16by9_3840x2160-59.94fps.json +++ b/SJCAM/SJCAM_SJ8___4k_16by9_3840x2160-59.94fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_SJ8___4k_16by9_3840x2160-59.94fps", "note": "", "calibrated_by": "dimon kabanets", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "SJ8", "lens_model": "", "camera_setting": "", diff --git a/SJCAM/SJCAM_c100+ Horizontal___480p_9by16_1088x1920-30.00fps.json b/SJCAM/SJCAM_c100+ Horizontal___480p_9by16_1088x1920-30.00fps.json index 5f5b4940..27a16514 100644 --- a/SJCAM/SJCAM_c100+ Horizontal___480p_9by16_1088x1920-30.00fps.json +++ b/SJCAM/SJCAM_c100+ Horizontal___480p_9by16_1088x1920-30.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_c100+ Horizontal___480p_9by16_1088x1920-30.00fps", "note": "", "calibrated_by": "Panda DLor", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "c100+ Horizontal", "lens_model": "", "camera_setting": "", diff --git a/SJCAM/SJCAM_c100+ Vertical___1080p_16by9_1920x1080-60.00fps.json b/SJCAM/SJCAM_c100+ Vertical___1080p_16by9_1920x1080-60.00fps.json index 9ffacdbf..98f0b734 100644 --- a/SJCAM/SJCAM_c100+ Vertical___1080p_16by9_1920x1080-60.00fps.json +++ b/SJCAM/SJCAM_c100+ Vertical___1080p_16by9_1920x1080-60.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_c100+ Vertical___1080p_16by9_1920x1080-60.00fps", "note": "", "calibrated_by": "Panda DLor", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "c100+ Vertical", "lens_model": "", "camera_setting": "", diff --git a/SJCAM/SJCAM_c100+__4k Horizontal_2.7k_4by3_2880x2160-30.00fps.json b/SJCAM/SJCAM_c100+__4k Horizontal_2.7k_4by3_2880x2160-30.00fps.json index 1593f488..bd577027 100644 --- a/SJCAM/SJCAM_c100+__4k Horizontal_2.7k_4by3_2880x2160-30.00fps.json +++ b/SJCAM/SJCAM_c100+__4k Horizontal_2.7k_4by3_2880x2160-30.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_c100+__4k Horizontal_2.7k_4by3_2880x2160-30.00fps", "note": "", "calibrated_by": "Luis Enrique QR", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "c100+", "lens_model": "", "camera_setting": "4k Horizontal", diff --git a/SJCAM/SJCAM_c100+___1080p_16by9_1920x1080-60.00fps.json b/SJCAM/SJCAM_c100+___1080p_16by9_1920x1080-60.00fps.json index 7afaa02c..ed768d67 100644 --- a/SJCAM/SJCAM_c100+___1080p_16by9_1920x1080-60.00fps.json +++ b/SJCAM/SJCAM_c100+___1080p_16by9_1920x1080-60.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_c100+___1080p_16by9_1920x1080-60.00fps", "note": "", "calibrated_by": "U0 A43", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "c100+", "lens_model": "", "camera_setting": "", diff --git a/SJCAM/SJCAM_c100+___2.5k_16by9_2560x1440-30.00fps.json b/SJCAM/SJCAM_c100+___2.5k_16by9_2560x1440-30.00fps.json index 8d299fb6..5b9881de 100644 --- a/SJCAM/SJCAM_c100+___2.5k_16by9_2560x1440-30.00fps.json +++ b/SJCAM/SJCAM_c100+___2.5k_16by9_2560x1440-30.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_c100+___2.5k_16by9_2560x1440-30.00fps", "note": "", "calibrated_by": "qianmo", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "c100+", "lens_model": "", "camera_setting": "", diff --git a/SJCAM/SJCAM_c100+___2.7k_4by3_2880x2160-30.00fps.json b/SJCAM/SJCAM_c100+___2.7k_4by3_2880x2160-30.00fps.json index 9a6da93f..5406631a 100644 --- a/SJCAM/SJCAM_c100+___2.7k_4by3_2880x2160-30.00fps.json +++ b/SJCAM/SJCAM_c100+___2.7k_4by3_2880x2160-30.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_c100+___2.7k_4by3_2880x2160-30.00fps", "note": "", "calibrated_by": "qianmo", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "c100+", "lens_model": "", "camera_setting": "", diff --git a/SJCAM/SJCAM_c200pro__NA_1080p_16by9_1920x1080-60.00fps.json b/SJCAM/SJCAM_c200pro__NA_1080p_16by9_1920x1080-60.00fps.json index 459d2b58..f827c179 100644 --- a/SJCAM/SJCAM_c200pro__NA_1080p_16by9_1920x1080-60.00fps.json +++ b/SJCAM/SJCAM_c200pro__NA_1080p_16by9_1920x1080-60.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_c200pro__NA_1080p_16by9_1920x1080-60.00fps", "note": "", "calibrated_by": "U0 A462", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "c200pro", "lens_model": "", "camera_setting": "NA", diff --git a/SJCAM/SJCAM_c300_PR__2.5k_16by9_2560x1440-60.00fps.json b/SJCAM/SJCAM_c300_PR__2.5k_16by9_2560x1440-60.00fps.json index 776ee05b..990e2be6 100644 --- a/SJCAM/SJCAM_c300_PR__2.5k_16by9_2560x1440-60.00fps.json +++ b/SJCAM/SJCAM_c300_PR__2.5k_16by9_2560x1440-60.00fps.json @@ -2,8 +2,8 @@ "name": "SJCAM_c300_PR__2.5k_16by9_2560x1440-60.00fps", "note": "", "calibrated_by": "Administrator", - "camera_brand": "SJCAM", - "camera_model": "c300", + "camera_brand": "SJCam", + "camera_model": "C300", "lens_model": "PR", "camera_setting": "", "calib_dimension": { diff --git a/SJCAM/SJCAM_c300__2.5k sv_2.5k_4by3_2560x1920-30.00fps.json b/SJCAM/SJCAM_c300__2.5k sv_2.5k_4by3_2560x1920-30.00fps.json index f1c23c8a..f07a19e8 100644 --- a/SJCAM/SJCAM_c300__2.5k sv_2.5k_4by3_2560x1920-30.00fps.json +++ b/SJCAM/SJCAM_c300__2.5k sv_2.5k_4by3_2560x1920-30.00fps.json @@ -2,8 +2,8 @@ "name": "SJCAM_c300__2.5k sv_2.5k_4by3_2560x1920-30.00fps", "note": "2.5k sv", "calibrated_by": "何茂", - "camera_brand": "SJCAM", - "camera_model": "c300", + "camera_brand": "SJCam", + "camera_model": "C300", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/SJCAM/SJCAM_sj10pro___4k_16by9_3840x2160-29.97fps.json b/SJCAM/SJCAM_sj10pro___4k_16by9_3840x2160-29.97fps.json index 716473a9..534dad1a 100644 --- a/SJCAM/SJCAM_sj10pro___4k_16by9_3840x2160-29.97fps.json +++ b/SJCAM/SJCAM_sj10pro___4k_16by9_3840x2160-29.97fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_sj10pro___4k_16by9_3840x2160-29.97fps", "note": "", "calibrated_by": "Administrator", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "sj10pro", "lens_model": "", "camera_setting": "", diff --git a/SJCAM/SJCAM_sj4000___1080p_16by9_1920x1080-30.00fps (3).json b/SJCAM/SJCAM_sj4000___1080p_16by9_1920x1080-30.00fps (3).json index 3b6196ba..c91e0ef8 100644 --- a/SJCAM/SJCAM_sj4000___1080p_16by9_1920x1080-30.00fps (3).json +++ b/SJCAM/SJCAM_sj4000___1080p_16by9_1920x1080-30.00fps (3).json @@ -2,8 +2,8 @@ "name": "SJCAM_sj4000___1080p_16by9_1920x1080-30.00fps", "note": "", "calibrated_by": "Yavor", - "camera_brand": "SJCAM", - "camera_model": "sj4000", + "camera_brand": "SJCam", + "camera_model": "SJ4000", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/SJCAM/SJCAM_sj6 legend___2.7k_4by3_2880x2160-24.00fps.json b/SJCAM/SJCAM_sj6 legend___2.7k_4by3_2880x2160-24.00fps.json index 9bd3c64e..3a958e8c 100644 --- a/SJCAM/SJCAM_sj6 legend___2.7k_4by3_2880x2160-24.00fps.json +++ b/SJCAM/SJCAM_sj6 legend___2.7k_4by3_2880x2160-24.00fps.json @@ -2,8 +2,8 @@ "name": "SJCAM_sj6 legend___2.7k_4by3_2880x2160-24.00fps", "note": "", "calibrated_by": "Liam Schouppe", - "camera_brand": "SJCAM", - "camera_model": "sj6 legend", + "camera_brand": "SJCam", + "camera_model": "SJ6 Legend", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/SJCAM/SJCAM_sj6 legend__max_1080p_16by9_1920x1080-60.00fps.json b/SJCAM/SJCAM_sj6 legend__max_1080p_16by9_1920x1080-60.00fps.json index 37e14fb4..b15983dc 100644 --- a/SJCAM/SJCAM_sj6 legend__max_1080p_16by9_1920x1080-60.00fps.json +++ b/SJCAM/SJCAM_sj6 legend__max_1080p_16by9_1920x1080-60.00fps.json @@ -2,8 +2,8 @@ "name": "SJCAM_sj6 legend__max_1080p_16by9_1920x1080-60.00fps", "note": "", "calibrated_by": "Ahmet Furkan Yavuz", - "camera_brand": "SJCAM", - "camera_model": "sj6 legend", + "camera_brand": "SJCam", + "camera_model": "SJ6 Legend", "lens_model": "", "camera_setting": "max", "calib_dimension": { diff --git a/SJCAM/SJCAM_sj6legend___1080p_16by9_1920x1080-60.00fps.json b/SJCAM/SJCAM_sj6legend___1080p_16by9_1920x1080-60.00fps.json index 33db0b00..70bde4e4 100644 --- a/SJCAM/SJCAM_sj6legend___1080p_16by9_1920x1080-60.00fps.json +++ b/SJCAM/SJCAM_sj6legend___1080p_16by9_1920x1080-60.00fps.json @@ -2,7 +2,7 @@ "name": "SJCAM_sj6legend___1080p_16by9_1920x1080-60.00fps", "note": "", "calibrated_by": "Dominik Jégl", - "camera_brand": "SJCAM", + "camera_brand": "SJCam", "camera_model": "sj6legend", "lens_model": "", "camera_setting": "", diff --git a/SJCAM/SJCAM_sj8 pro___4k_16by9_3840x2160-29.97fps.json b/SJCAM/SJCAM_sj8 pro___4k_16by9_3840x2160-29.97fps.json index da8552b8..8d833c50 100644 --- a/SJCAM/SJCAM_sj8 pro___4k_16by9_3840x2160-29.97fps.json +++ b/SJCAM/SJCAM_sj8 pro___4k_16by9_3840x2160-29.97fps.json @@ -2,8 +2,8 @@ "name": "SJCAM_sj8 pro___4k_16by9_3840x2160-29.97fps", "note": "", "calibrated_by": "thepaulius ltu", - "camera_brand": "SJCAM", - "camera_model": "sj8 pro", + "camera_brand": "SJCam", + "camera_model": "SJ8 PRO", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Sigma/Sigma_FP_HELIOS 44M 58MM__4k_16by9_3840x2160-29.97fps.json b/Sigma/Sigma_FP_HELIOS 44M 58MM__4k_16by9_3840x2160-29.97fps.json index 24299772..73cbdc2b 100644 --- a/Sigma/Sigma_FP_HELIOS 44M 58MM__4k_16by9_3840x2160-29.97fps.json +++ b/Sigma/Sigma_FP_HELIOS 44M 58MM__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "tagetage", "camera_brand": "Sigma", - "camera_model": "FP", + "camera_model": "fp", "lens_model": "HELIOS 44M 58MM", "camera_setting": "", "calib_dimension": { diff --git a/Sigma/Sigma_FP_Helios 44m__4k_16by9_3840x2160-29.97fps.json b/Sigma/Sigma_FP_Helios 44m__4k_16by9_3840x2160-29.97fps.json index d474a651..4b78ca42 100644 --- a/Sigma/Sigma_FP_Helios 44m__4k_16by9_3840x2160-29.97fps.json +++ b/Sigma/Sigma_FP_Helios 44m__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "tagetage", "camera_brand": "Sigma", - "camera_model": "FP", + "camera_model": "fp", "lens_model": "Helios 44m", "camera_setting": "", "calib_dimension": { diff --git a/Sigma/Sigma_FP_NIKKOR NIKON 24mm F2.0 AIS_MOV all-I_4k_16by9_3840x2160-25.00fps.json b/Sigma/Sigma_FP_NIKKOR NIKON 24mm F2.0 AIS_MOV all-I_4k_16by9_3840x2160-25.00fps.json index fca59ff9..c2cc53bc 100644 --- a/Sigma/Sigma_FP_NIKKOR NIKON 24mm F2.0 AIS_MOV all-I_4k_16by9_3840x2160-25.00fps.json +++ b/Sigma/Sigma_FP_NIKKOR NIKON 24mm F2.0 AIS_MOV all-I_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Yoav_D", "camera_brand": "Sigma", - "camera_model": "FP", + "camera_model": "fp", "lens_model": "NIKKOR NIKON 24mm F2.0 AIS", "camera_setting": "MOV all-I", "calib_dimension": { diff --git a/Sigma/Sigma_FP_Sigma 35mm 1.2f__1080p_16by9_1920x1080-25.00fps.json b/Sigma/Sigma_FP_Sigma 35mm 1.2f__1080p_16by9_1920x1080-25.00fps.json index c1b6280f..4829731d 100644 --- a/Sigma/Sigma_FP_Sigma 35mm 1.2f__1080p_16by9_1920x1080-25.00fps.json +++ b/Sigma/Sigma_FP_Sigma 35mm 1.2f__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Luka Denic", "camera_brand": "Sigma", - "camera_model": "FP", + "camera_model": "fp", "lens_model": "Sigma 35mm 1.2f", "camera_setting": "", "calib_dimension": { diff --git a/Sigma/Sigma_FP_Voigtlander 21mm 1.4__4k_16by9_3840x2160-23.98fps.json b/Sigma/Sigma_FP_Voigtlander 21mm 1.4__4k_16by9_3840x2160-23.98fps.json index 8789b447..c5a51ab3 100644 --- a/Sigma/Sigma_FP_Voigtlander 21mm 1.4__4k_16by9_3840x2160-23.98fps.json +++ b/Sigma/Sigma_FP_Voigtlander 21mm 1.4__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Edward Robison", "camera_brand": "Sigma", - "camera_model": "FP", + "camera_model": "fp", "lens_model": "Voigtlander 21mm 1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sigma/sigma_fp_Sigma 45mm F2.8__1080p_16by9_1920x1080-24.00fps.json b/Sigma/sigma_fp_Sigma 45mm F2.8__1080p_16by9_1920x1080-24.00fps.json index ba9c6c1f..00106f69 100644 --- a/Sigma/sigma_fp_Sigma 45mm F2.8__1080p_16by9_1920x1080-24.00fps.json +++ b/Sigma/sigma_fp_Sigma 45mm F2.8__1080p_16by9_1920x1080-24.00fps.json @@ -2,7 +2,7 @@ "name": "sigma_fp_Sigma 45mm F2.8__1080p_16by9_1920x1080-24.00fps", "note": "", "calibrated_by": "David Clark", - "camera_brand": "sigma", + "camera_brand": "Sigma", "camera_model": "fp", "lens_model": "Sigma 45mm F2.8", "camera_setting": "", diff --git a/Sony/SONY_a7rII_SAMYANG 12MM T3.1__4k_16by9_3840x2160-25.00fps.json b/Sony/SONY_a7rII_SAMYANG 12MM T3.1__4k_16by9_3840x2160-25.00fps.json index 7ed2a06b..285cac5a 100644 --- a/Sony/SONY_a7rII_SAMYANG 12MM T3.1__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/SONY_a7rII_SAMYANG 12MM T3.1__4k_16by9_3840x2160-25.00fps.json @@ -2,8 +2,8 @@ "name": "SONY_a7rII_SAMYANG 12MM T3.1__4k_16by9_3840x2160-25.00fps", "note": "", "calibrated_by": "SUMGLE", - "camera_brand": "SONY", - "camera_model": "a7rII", + "camera_brand": "Sony", + "camera_model": "Alpha 7R II", "lens_model": "SAMYANG 12MM T3.1", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_A1_Sigma 14-24mm__1080p_16by9_1920x1080-23.98fps.json b/Sony/Sony_A1_Sigma 14-24mm__1080p_16by9_1920x1080-23.98fps.json index 4cee2b05..0c103d37 100644 --- a/Sony/Sony_A1_Sigma 14-24mm__1080p_16by9_1920x1080-23.98fps.json +++ b/Sony/Sony_A1_Sigma 14-24mm__1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Adam Larsen", "camera_brand": "Sony", - "camera_model": "A1", + "camera_model": "Alpha 1", "lens_model": "Sigma 14-24mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_A37_SAL1855_18mm ISO100 160_720p_4by3_1440x1080-25.00fps.json b/Sony/Sony_A37_SAL1855_18mm ISO100 160_720p_4by3_1440x1080-25.00fps.json index abbc832d..a2399f41 100644 --- a/Sony/Sony_A37_SAL1855_18mm ISO100 160_720p_4by3_1440x1080-25.00fps.json +++ b/Sony/Sony_A37_SAL1855_18mm ISO100 160_720p_4by3_1440x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "HOSUFPV", "camera_brand": "Sony", - "camera_model": "A37", + "camera_model": "Alpha 37", "lens_model": "SAL1855", "camera_setting": "18mm ISO100 1/60", "calib_dimension": { diff --git a/Sony/Sony_A7C_Sony FE 35mm f1.8_3_2 150_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_A7C_Sony FE 35mm f1.8_3_2 150_4k_16by9_3840x2160-25.00fps.json index 34ec7cb3..574ef595 100644 --- a/Sony/Sony_A7C_Sony FE 35mm f1.8_3_2 150_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_A7C_Sony FE 35mm f1.8_3_2 150_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "mdf", "camera_brand": "Sony", - "camera_model": "A7C", + "camera_model": "Alpha 7C", "lens_model": "Sony FE 35mm f1.8", "camera_setting": "3:2 1/50", "calib_dimension": { diff --git a/Sony/Sony_A7C_Zeiss Loxia 35mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_A7C_Zeiss Loxia 35mm__4k_16by9_3840x2160-25.00fps.json index 0bb6cc33..41fbbcf9 100644 --- a/Sony/Sony_A7C_Zeiss Loxia 35mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_A7C_Zeiss Loxia 35mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jakub Vondra", "camera_brand": "Sony", - "camera_model": "A7C", + "camera_model": "Alpha 7C", "lens_model": "Zeiss Loxia 35mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_A7III_35mm F1.8_4k_2k_9by16_2160x3840-23.98fps.json b/Sony/Sony_A7III_35mm F1.8_4k_2k_9by16_2160x3840-23.98fps.json index 04873af9..29120098 100644 --- a/Sony/Sony_A7III_35mm F1.8_4k_2k_9by16_2160x3840-23.98fps.json +++ b/Sony/Sony_A7III_35mm F1.8_4k_2k_9by16_2160x3840-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Lori", "camera_brand": "Sony", - "camera_model": "A7III", + "camera_model": "Alpha 7 III", "lens_model": "35mm F1.8", "camera_setting": "4k", "calib_dimension": { diff --git a/Sony/Sony_A7III_Helios 44-6__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_A7III_Helios 44-6__4k_16by9_3840x2160-25.00fps.json index aa057bd1..e7aad0a2 100644 --- a/Sony/Sony_A7III_Helios 44-6__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_A7III_Helios 44-6__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Berno", "camera_brand": "Sony", - "camera_model": "A7III", + "camera_model": "Alpha 7 III", "lens_model": "Helios 44-6", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_A7III_Sony 35mm F1.8_9_16_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_A7III_Sony 35mm F1.8_9_16_4k_16by9_3840x2160-23.98fps.json index a5a4cc90..ca5366a5 100644 --- a/Sony/Sony_A7III_Sony 35mm F1.8_9_16_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_A7III_Sony 35mm F1.8_9_16_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "9:16", "calibrated_by": "Lori", "camera_brand": "Sony", - "camera_model": "A7III", + "camera_model": "Alpha 7 III", "lens_model": "Sony 35mm F1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_A7III_Tamron202.8__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_A7III_Tamron202.8__4k_16by9_3840x2160-23.98fps.json index d71d2d02..1058d6b5 100644 --- a/Sony/Sony_A7III_Tamron202.8__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_A7III_Tamron202.8__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eric", "camera_brand": "Sony", - "camera_model": "A7III", + "camera_model": "Alpha 7 III", "lens_model": "Tamron20/2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_A7III_kit FE 3.55.6 28-70 55__1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_A7III_kit FE 3.55.6 28-70 55__1080p_16by9_1920x1080-100.00fps.json index 2ef6780c..77019a89 100644 --- a/Sony/Sony_A7III_kit FE 3.55.6 28-70 55__1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_A7III_kit FE 3.55.6 28-70 55__1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Alessio Tricarico", "camera_brand": "Sony", - "camera_model": "A7III", + "camera_model": "Alpha 7 III", "lens_model": "kit FE 3.5/5.6 28-70 55", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_A7II_28-70mm__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_A7II_28-70mm__1080p_16by9_1920x1080-59.94fps.json index 7becd409..ee12b233 100644 --- a/Sony/Sony_A7II_28-70mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_A7II_28-70mm__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Antonio Alonso", "camera_brand": "Sony", - "camera_model": "A7II", + "camera_model": "Alpha 7 II", "lens_model": "28-70mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_A7R_Sony FE 1.850mm__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_A7R_Sony FE 1.850mm__1080p_16by9_1920x1080-50.00fps.json index bacba6f1..1a8c243e 100644 --- a/Sony/Sony_A7R_Sony FE 1.850mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_A7R_Sony FE 1.850mm__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Schöne Aussicht", "camera_brand": "Sony", - "camera_model": "A7R", + "camera_model": "Alpha 7R", "lens_model": "Sony FE 1.8/50mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_A7iv_Tamron 35-150mm Di III VXD__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_A7iv_Tamron 35-150mm Di III VXD__4k_16by9_3840x2160-25.00fps.json index cfe6af78..1c0d9b7c 100644 --- a/Sony/Sony_A7iv_Tamron 35-150mm Di III VXD__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_A7iv_Tamron 35-150mm Di III VXD__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Sebastien FRANCOIS", "camera_brand": "Sony", - "camera_model": "A7iv", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 35-150mm Di III VXD", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_A7sIII_Canon FD 50mm 1.4 S.S.C_120_4k_16by9_3840x2160-100.00fps.json b/Sony/Sony_A7sIII_Canon FD 50mm 1.4 S.S.C_120_4k_16by9_3840x2160-100.00fps.json index 76a1d2c8..3b8db21e 100644 --- a/Sony/Sony_A7sIII_Canon FD 50mm 1.4 S.S.C_120_4k_16by9_3840x2160-100.00fps.json +++ b/Sony/Sony_A7sIII_Canon FD 50mm 1.4 S.S.C_120_4k_16by9_3840x2160-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Warat Archawanuntagul", "camera_brand": "Sony", - "camera_model": "A7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Canon FD 50mm 1.4 S.S.C", "camera_setting": "120", "calib_dimension": { diff --git a/Sony/Sony_A7sII_Sony 14m f1.8 GM__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_A7sII_Sony 14m f1.8 GM__1080p_16by9_1920x1080-59.94fps.json index 7ab667d2..69affc2e 100644 --- a/Sony/Sony_A7sII_Sony 14m f1.8 GM__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_A7sII_Sony 14m f1.8 GM__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Zen Savona", "camera_brand": "Sony", - "camera_model": "A7sII", + "camera_model": "Alpha 7S II", "lens_model": "Sony 14m f1.8 GM", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_DSC-RX0M2_9fab2ee1__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_DSC-RX0M2_9fab2ee1__4k_16by9_3840x2160-23.98fps.json index 23686219..aecfa0e3 100644 --- a/Sony/Sony_DSC-RX0M2_9fab2ee1__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_DSC-RX0M2_9fab2ee1__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Mark Feiden", "camera_brand": "Sony", - "camera_model": "DSC-RX0M2", + "camera_model": "RX0 II", "lens_model": "9fab2ee1", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_DSC-RX0M2_dd4199c6__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_DSC-RX0M2_dd4199c6__1080p_16by9_1920x1080-50.00fps.json index 88c8dadf..72e978bd 100644 --- a/Sony/Sony_DSC-RX0M2_dd4199c6__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_DSC-RX0M2_dd4199c6__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "rhyme林浩", "camera_brand": "Sony", - "camera_model": "DSC-RX0M2", + "camera_model": "RX0 II", "lens_model": "dd4199c6", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_DSC-RX0___1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_DSC-RX0___1080p_16by9_1920x1080-50.00fps.json index 686f35e7..183c47c1 100644 --- a/Sony/Sony_DSC-RX0___1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_DSC-RX0___1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "DSC-RX0", + "camera_model": "RX0", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_DSC-RX10M4___1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_DSC-RX10M4___1080p_16by9_1920x1080-50.00fps.json index c5a38bb2..05cd7eee 100644 --- a/Sony/Sony_DSC-RX10M4___1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_DSC-RX10M4___1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "姚一鹏", "camera_brand": "Sony", - "camera_model": "DSC-RX10M4", + "camera_model": "RX10 IV", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_ILME-FX3_14.00mm__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_ILME-FX3_14.00mm__4k_16by9_3840x2160-50.00fps.json index c122a7e6..e78dae60 100644 --- a/Sony/Sony_ILME-FX3_14.00mm__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_ILME-FX3_14.00mm__4k_16by9_3840x2160-50.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Daniel Wagner / thedrone.studio GmbH", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "ILME-FX3", + "camera_model": "FX3", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_ILME-FX3_35.00mm_XAVC HS 4K_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_ILME-FX3_35.00mm_XAVC HS 4K_4k_16by9_3840x2160-50.00fps.json index 15479477..5db96c83 100644 --- a/Sony/Sony_ILME-FX3_35.00mm_XAVC HS 4K_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_ILME-FX3_35.00mm_XAVC HS 4K_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "f2.2 1/1000", "calibrated_by": "Rayne", "camera_brand": "Sony", - "camera_model": "ILME-FX3", + "camera_model": "FX3", "lens_model": "35.00mm", "camera_setting": "XAVC HS 4K", "calib_dimension": { diff --git a/Sony/Sony_Venice_Canon K35 50mm_OCXM XT_6k_3by2_6040x4032-23.98fps.json b/Sony/Sony_Venice_Canon K35 50mm_OCXM XT_6k_3by2_6040x4032-23.98fps.json index a5ce8ce3..ab253d07 100644 --- a/Sony/Sony_Venice_Canon K35 50mm_OCXM XT_6k_3by2_6040x4032-23.98fps.json +++ b/Sony/Sony_Venice_Canon K35 50mm_OCXM XT_6k_3by2_6040x4032-23.98fps.json @@ -3,7 +3,7 @@ "note": "OCXM XT", "calibrated_by": "Nikolai Zychowicz", "camera_brand": "Sony", - "camera_model": "Venice", + "camera_model": "VENICE", "lens_model": "Canon K35 50mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_ZV-E10II_Laowa 9mm.json b/Sony/Sony_ZV-E10II_Laowa 9mm.json index 705fd38e..413eb265 100644 --- a/Sony/Sony_ZV-E10II_Laowa 9mm.json +++ b/Sony/Sony_ZV-E10II_Laowa 9mm.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "David Gu", "camera_brand": "Sony", - "camera_model": "ZV-E10M2", + "camera_model": "ZV-E10 II", "lens_model": "Laowa 9mm 2.8", "camera_setting": "59.94FPS", "calib_dimension": { diff --git a/Sony/Sony_a1_101.00mm_TAMRON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a1_101.00mm_TAMRON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json index 9c89ff94..5de7bb75 100644 --- a/Sony/Sony_a1_101.00mm_TAMRON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a1_101.00mm_TAMRON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "TAMRON35-150/2-2.8", "calibrated_by": "李墨", "camera_brand": "Sony", - "camera_model": "a1", + "camera_model": "Alpha 1", "lens_model": "101.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a1_135.00mm_A1@50P- TAMRON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a1_135.00mm_A1@50P- TAMRON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json index 4aafa9b2..a0a371cc 100644 --- a/Sony/Sony_a1_135.00mm_A1@50P- TAMRON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a1_135.00mm_A1@50P- TAMRON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "A1@50P- TAMRON35-150/2-2.8", "calibrated_by": "李墨", "camera_brand": "Sony", - "camera_model": "a1", + "camera_model": "Alpha 1", "lens_model": "135.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a1_150.00mm_A1@50P- TAMRON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a1_150.00mm_A1@50P- TAMRON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json index 9d5d7c1f..55cff928 100644 --- a/Sony/Sony_a1_150.00mm_A1@50P- TAMRON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a1_150.00mm_A1@50P- TAMRON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "A1@50P- TAMRON35-150/2-2.8", "calibrated_by": "李墨", "camera_brand": "Sony", - "camera_model": "a1", + "camera_model": "Alpha 1", "lens_model": "150.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a1_16-35 GM_16mm_6k_16by9_7680x4320-23.98fps.json b/Sony/Sony_a1_16-35 GM_16mm_6k_16by9_7680x4320-23.98fps.json index 6e9975e0..ebec9892 100644 --- a/Sony/Sony_a1_16-35 GM_16mm_6k_16by9_7680x4320-23.98fps.json +++ b/Sony/Sony_a1_16-35 GM_16mm_6k_16by9_7680x4320-23.98fps.json @@ -3,7 +3,7 @@ "note": "16mm", "calibrated_by": "Matt Larson", "camera_brand": "Sony", - "camera_model": "a1", + "camera_model": "Alpha 1", "lens_model": "16-35 GM", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a1_18.00mm Samyang F2.8 FE_Flim, Manual_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a1_18.00mm Samyang F2.8 FE_Flim, Manual_4k_16by9_3840x2160-59.94fps.json index 622072a0..4db9672d 100644 --- a/Sony/Sony_a1_18.00mm Samyang F2.8 FE_Flim, Manual_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a1_18.00mm Samyang F2.8 FE_Flim, Manual_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "bart", "camera_brand": "Sony", - "camera_model": "a1", + "camera_model": "Alpha 1", "lens_model": "18.00mm Samyang F2.8 FE", "camera_setting": "Flim, Manual", "calib_dimension": { diff --git a/Sony/Sony_a1_24mm (Sigma DG DN 24-70 f2.8)_full frame_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a1_24mm (Sigma DG DN 24-70 f2.8)_full frame_4k_16by9_3840x2160-25.00fps.json index d2c75d8a..7beaafae 100644 --- a/Sony/Sony_a1_24mm (Sigma DG DN 24-70 f2.8)_full frame_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a1_24mm (Sigma DG DN 24-70 f2.8)_full frame_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Mei Lewis", "camera_brand": "Sony", - "camera_model": "a1", + "camera_model": "Alpha 1", "lens_model": "24mm (Sigma DG DN 24-70 f2.8)", "camera_setting": "full frame", "calib_dimension": { diff --git a/Sony/Sony_a1_35.00mm_TAMRON 35-1502-2.8_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a1_35.00mm_TAMRON 35-1502-2.8_4k_16by9_3840x2160-50.00fps.json index a56ec2ef..ee0e5458 100644 --- a/Sony/Sony_a1_35.00mm_TAMRON 35-1502-2.8_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a1_35.00mm_TAMRON 35-1502-2.8_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "TAMRON 35-150/2-2.8", "calibrated_by": "李墨", "camera_brand": "Sony", - "camera_model": "a1", + "camera_model": "Alpha 1", "lens_model": "35.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a1_50.00mm_SLOG3 CINETONE_6k_16by9_7680x4320-25.00fps.json b/Sony/Sony_a1_50.00mm_SLOG3 CINETONE_6k_16by9_7680x4320-25.00fps.json index 0bfc8e80..e71f974f 100644 --- a/Sony/Sony_a1_50.00mm_SLOG3 CINETONE_6k_16by9_7680x4320-25.00fps.json +++ b/Sony/Sony_a1_50.00mm_SLOG3 CINETONE_6k_16by9_7680x4320-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Romain Chollet", "camera_brand": "Sony", - "camera_model": "a1", + "camera_model": "Alpha 1", "lens_model": "50.00mm", "camera_setting": "SLOG3 CINETONE", "calib_dimension": { diff --git a/Sony/Sony_a1_50.00mm_TAMRON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a1_50.00mm_TAMRON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json index a5cd1034..0a1fd8f8 100644 --- a/Sony/Sony_a1_50.00mm_TAMRON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a1_50.00mm_TAMRON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "TAMRON35-150/2-2.8", "calibrated_by": "李墨", "camera_brand": "Sony", - "camera_model": "a1", + "camera_model": "Alpha 1", "lens_model": "50.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a1_70.00mm_TAMRON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a1_70.00mm_TAMRON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json index 0cd0999a..8e944016 100644 --- a/Sony/Sony_a1_70.00mm_TAMRON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a1_70.00mm_TAMRON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "TAMRON35-150/2-2.8", "calibrated_by": "李墨", "camera_brand": "Sony", - "camera_model": "a1", + "camera_model": "Alpha 1", "lens_model": "70.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a1_87.00mm_TAMRON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a1_87.00mm_TAMRON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json index e8f3c3d5..b2d3a139 100644 --- a/Sony/Sony_a1_87.00mm_TAMRON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a1_87.00mm_TAMRON35-1502-2.8_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "TAMRON35-150/2-2.8", "calibrated_by": "李墨", "camera_brand": "Sony", - "camera_model": "a1", + "camera_model": "Alpha 1", "lens_model": "87.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a1_APO Lanthar 35.00mm_8k_6k_16by9_7680x4320-23.98fps.json b/Sony/Sony_a1_APO Lanthar 35.00mm_8k_6k_16by9_7680x4320-23.98fps.json index 4af6a07a..83521da6 100644 --- a/Sony/Sony_a1_APO Lanthar 35.00mm_8k_6k_16by9_7680x4320-23.98fps.json +++ b/Sony/Sony_a1_APO Lanthar 35.00mm_8k_6k_16by9_7680x4320-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Matt MacKenzie", "camera_brand": "Sony", - "camera_model": "a1", + "camera_model": "Alpha 1", "lens_model": "APO Lanthar 35.00mm", "camera_setting": "8k", "calib_dimension": { diff --git a/Sony/Sony_a1_Batis 25.00mm__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a1_Batis 25.00mm__4k_16by9_3840x2160-59.94fps.json index bd492350..b7a09086 100644 --- a/Sony/Sony_a1_Batis 25.00mm__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a1_Batis 25.00mm__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "maki", "camera_brand": "Sony", - "camera_model": "a1", + "camera_model": "Alpha 1", "lens_model": "Batis 25.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a1_Batis 40.00mm__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a1_Batis 40.00mm__4k_16by9_3840x2160-59.94fps.json index 55aa21b2..0884108a 100644 --- a/Sony/Sony_a1_Batis 40.00mm__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a1_Batis 40.00mm__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "maki", "camera_brand": "Sony", - "camera_model": "a1", + "camera_model": "Alpha 1", "lens_model": "Batis 40.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a1_Laowa 14mm f4 Zero-D__6k_16by9_7680x4320-25.00fps.json b/Sony/Sony_a1_Laowa 14mm f4 Zero-D__6k_16by9_7680x4320-25.00fps.json index 2ab8c080..341cdbf2 100644 --- a/Sony/Sony_a1_Laowa 14mm f4 Zero-D__6k_16by9_7680x4320-25.00fps.json +++ b/Sony/Sony_a1_Laowa 14mm f4 Zero-D__6k_16by9_7680x4320-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Alexey Vasyunin", "camera_brand": "Sony", - "camera_model": "a1", + "camera_model": "Alpha 1", "lens_model": "Laowa 14mm f/4 Zero-D", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a1_Meike FF Cine 135mm_8K 1200s_6k_16by9_7680x4320-23.98fps.json b/Sony/Sony_a1_Meike FF Cine 135mm_8K 1200s_6k_16by9_7680x4320-23.98fps.json index fb588ed2..2307a11a 100644 --- a/Sony/Sony_a1_Meike FF Cine 135mm_8K 1200s_6k_16by9_7680x4320-23.98fps.json +++ b/Sony/Sony_a1_Meike FF Cine 135mm_8K 1200s_6k_16by9_7680x4320-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Joseph Moore", "camera_brand": "Sony", - "camera_model": "a1", + "camera_model": "Alpha 1", "lens_model": "Meike FF Cine 135mm", "camera_setting": "8K 1/200s", "calib_dimension": { diff --git a/Sony/Sony_a1_Nokton 40mm_8k_6k_16by9_7680x4320-23.98fps.json b/Sony/Sony_a1_Nokton 40mm_8k_6k_16by9_7680x4320-23.98fps.json index 81fecf1b..6b9d9603 100644 --- a/Sony/Sony_a1_Nokton 40mm_8k_6k_16by9_7680x4320-23.98fps.json +++ b/Sony/Sony_a1_Nokton 40mm_8k_6k_16by9_7680x4320-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Matt MacKenzie", "camera_brand": "Sony", - "camera_model": "a1", + "camera_model": "Alpha 1", "lens_model": "Nokton 40mm", "camera_setting": "8k", "calib_dimension": { diff --git a/Sony/Sony_a1_Sigma 14-24mm_14mm_1080p_16by9_1920x1080-23.98fps.json b/Sony/Sony_a1_Sigma 14-24mm_14mm_1080p_16by9_1920x1080-23.98fps.json index 9b905fef..0adee1b4 100644 --- a/Sony/Sony_a1_Sigma 14-24mm_14mm_1080p_16by9_1920x1080-23.98fps.json +++ b/Sony/Sony_a1_Sigma 14-24mm_14mm_1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "14mm", "calibrated_by": "Adam Larsen", "camera_brand": "Sony", - "camera_model": "a1", + "camera_model": "Alpha 1", "lens_model": "Sigma 14-24mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a1_Sigma 28-70 f2.8_8K 180_6k_16by9_7680x4320-25.00fps.json b/Sony/Sony_a1_Sigma 28-70 f2.8_8K 180_6k_16by9_7680x4320-25.00fps.json index cd1b24db..c6551c3a 100644 --- a/Sony/Sony_a1_Sigma 28-70 f2.8_8K 180_6k_16by9_7680x4320-25.00fps.json +++ b/Sony/Sony_a1_Sigma 28-70 f2.8_8K 180_6k_16by9_7680x4320-25.00fps.json @@ -3,7 +3,7 @@ "note": "@70mm", "calibrated_by": "Martin Hirmer", "camera_brand": "Sony", - "camera_model": "a1", + "camera_model": "Alpha 1", "lens_model": "Sigma 28-70 f2.8", "camera_setting": "8K 180°", "calib_dimension": { diff --git a/Sony/Sony_a1_Sigma 28-70_8k 180_6k_16by9_7680x4320-25.00fps.json b/Sony/Sony_a1_Sigma 28-70_8k 180_6k_16by9_7680x4320-25.00fps.json index 2920b2dd..26df22ae 100644 --- a/Sony/Sony_a1_Sigma 28-70_8k 180_6k_16by9_7680x4320-25.00fps.json +++ b/Sony/Sony_a1_Sigma 28-70_8k 180_6k_16by9_7680x4320-25.00fps.json @@ -3,7 +3,7 @@ "note": "@28mm", "calibrated_by": "Martin Hirmer", "camera_brand": "Sony", - "camera_model": "a1", + "camera_model": "Alpha 1", "lens_model": "Sigma 28-70", "camera_setting": "8k 180°", "calib_dimension": { diff --git a/Sony/Sony_a1_Sigma Art Canon w MC11 14.00mm 1.8f__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a1_Sigma Art Canon w MC11 14.00mm 1.8f__4k_16by9_3840x2160-25.00fps.json index 36f966b2..d5e1479c 100644 --- a/Sony/Sony_a1_Sigma Art Canon w MC11 14.00mm 1.8f__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a1_Sigma Art Canon w MC11 14.00mm 1.8f__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "JFK_Creator", "camera_brand": "Sony", - "camera_model": "a1", + "camera_model": "Alpha 1", "lens_model": "Sigma Art Canon /w MC11 14.00mm 1.8f", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a1_Sigma DG DN 85mm F1.4_C8K_6k_16by9_7680x4320-29.97fps.json b/Sony/Sony_a1_Sigma DG DN 85mm F1.4_C8K_6k_16by9_7680x4320-29.97fps.json index 819b34c9..20447b81 100644 --- a/Sony/Sony_a1_Sigma DG DN 85mm F1.4_C8K_6k_16by9_7680x4320-29.97fps.json +++ b/Sony/Sony_a1_Sigma DG DN 85mm F1.4_C8K_6k_16by9_7680x4320-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Brian Soria", "camera_brand": "Sony", - "camera_model": "a1", + "camera_model": "Alpha 1", "lens_model": "Sigma DG DN 85mm F1.4", "camera_setting": "C8K", "calib_dimension": { diff --git a/Sony/Sony_a1_Sigma DG DN C 16-28 at 16mm_16MM_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a1_Sigma DG DN C 16-28 at 16mm_16MM_4k_16by9_3840x2160-59.94fps.json index 51261507..1d6932c4 100644 --- a/Sony/Sony_a1_Sigma DG DN C 16-28 at 16mm_16MM_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a1_Sigma DG DN C 16-28 at 16mm_16MM_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jordan Bellinger", "camera_brand": "Sony", - "camera_model": "a1", + "camera_model": "Alpha 1", "lens_model": "Sigma DG DN C 16-28 at 16mm", "camera_setting": "16MM", "calib_dimension": { diff --git a/Sony/Sony_a1_Tamron 17-28@17mm_NO-EIS_6k_16by9_7680x4320-29.97fps.json b/Sony/Sony_a1_Tamron 17-28@17mm_NO-EIS_6k_16by9_7680x4320-29.97fps.json index 1d1db6bc..70e94fee 100644 --- a/Sony/Sony_a1_Tamron 17-28@17mm_NO-EIS_6k_16by9_7680x4320-29.97fps.json +++ b/Sony/Sony_a1_Tamron 17-28@17mm_NO-EIS_6k_16by9_7680x4320-29.97fps.json @@ -3,7 +3,7 @@ "note": "NO-EIS", "calibrated_by": "Nicholas Tinsley", "camera_brand": "Sony", - "camera_model": "a1", + "camera_model": "Alpha 1", "lens_model": "Tamron 17-28@17mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a1_Tamron 17-28@28mm_NO-EIS_6k_16by9_7680x4320-29.97fps.json b/Sony/Sony_a1_Tamron 17-28@28mm_NO-EIS_6k_16by9_7680x4320-29.97fps.json index b2fd46d8..776cc0cb 100644 --- a/Sony/Sony_a1_Tamron 17-28@28mm_NO-EIS_6k_16by9_7680x4320-29.97fps.json +++ b/Sony/Sony_a1_Tamron 17-28@28mm_NO-EIS_6k_16by9_7680x4320-29.97fps.json @@ -3,7 +3,7 @@ "note": "NO-EIS", "calibrated_by": "Nicholas Tinsley", "camera_brand": "Sony", - "camera_model": "a1", + "camera_model": "Alpha 1", "lens_model": "Tamron 17-28@28mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a1_Voigtlander 75mm Nokton_8k_6k_16by9_7680x4320-23.98fps.json b/Sony/Sony_a1_Voigtlander 75mm Nokton_8k_6k_16by9_7680x4320-23.98fps.json index 994f5f1b..41ac713e 100644 --- a/Sony/Sony_a1_Voigtlander 75mm Nokton_8k_6k_16by9_7680x4320-23.98fps.json +++ b/Sony/Sony_a1_Voigtlander 75mm Nokton_8k_6k_16by9_7680x4320-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Matt MacKenzie", "camera_brand": "Sony", - "camera_model": "a1", + "camera_model": "Alpha 1", "lens_model": "Voigtlander 75mm Nokton", "camera_setting": "8k", "calib_dimension": { diff --git a/Sony/Sony_a5000_SEL1650OSS_16mm f3.6 180_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a5000_SEL1650OSS_16mm f3.6 180_1080p_16by9_1920x1080-25.00fps.json index cf674e6c..40207866 100644 --- a/Sony/Sony_a5000_SEL1650OSS_16mm f3.6 180_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a5000_SEL1650OSS_16mm f3.6 180_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Alfred", "camera_brand": "Sony", - "camera_model": "a5000", + "camera_model": "Alpha 5000", "lens_model": "SEL1650OSS", "camera_setting": "16mm f3.6 1/80", "calib_dimension": { diff --git a/Sony/Sony_a5100_16-50_16_720p_4by3_1440x1080-25.00fps.json b/Sony/Sony_a5100_16-50_16_720p_4by3_1440x1080-25.00fps.json index 67e79ccc..4c941883 100644 --- a/Sony/Sony_a5100_16-50_16_720p_4by3_1440x1080-25.00fps.json +++ b/Sony/Sony_a5100_16-50_16_720p_4by3_1440x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "win 10", "camera_brand": "Sony", - "camera_model": "a5100", + "camera_model": "Alpha 5100", "lens_model": "16-50", "camera_setting": "16", "calib_dimension": { diff --git a/Sony/Sony_a5100_7artisans 35mm f1.4_Adjusted to f1.4, ~6ft focal distance_1080p_16by9_1920x1080-29.97fps.json b/Sony/Sony_a5100_7artisans 35mm f1.4_Adjusted to f1.4, ~6ft focal distance_1080p_16by9_1920x1080-29.97fps.json index 29c44b5b..f250ba59 100644 --- a/Sony/Sony_a5100_7artisans 35mm f1.4_Adjusted to f1.4, ~6ft focal distance_1080p_16by9_1920x1080-29.97fps.json +++ b/Sony/Sony_a5100_7artisans 35mm f1.4_Adjusted to f1.4, ~6ft focal distance_1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "Adjusted to f1.4, ~6ft focal distance", "calibrated_by": "Matthew Scholefield", "camera_brand": "Sony", - "camera_model": "a5100", + "camera_model": "Alpha 5100", "lens_model": "7artisans 35mm f1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a5100_Sony E35 1.8_P 60Hz_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a5100_Sony E35 1.8_P 60Hz_1080p_16by9_1920x1080-59.94fps.json index 233d1086..f0876dad 100644 --- a/Sony/Sony_a5100_Sony E35 1.8_P 60Hz_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a5100_Sony E35 1.8_P 60Hz_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "TweeaakC", "camera_brand": "Sony", - "camera_model": "a5100", + "camera_model": "Alpha 5100", "lens_model": "Sony E35 1.8", "camera_setting": "P 60Hz", "calib_dimension": { diff --git a/Sony/Sony_a5100_sigma 16mm f1.4_160 shutter speed_1080p_16by9_1920x1080-29.97fps.json b/Sony/Sony_a5100_sigma 16mm f1.4_160 shutter speed_1080p_16by9_1920x1080-29.97fps.json index e165adaf..1c3cd7ed 100644 --- a/Sony/Sony_a5100_sigma 16mm f1.4_160 shutter speed_1080p_16by9_1920x1080-29.97fps.json +++ b/Sony/Sony_a5100_sigma 16mm f1.4_160 shutter speed_1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "1/60 shutter speed", "calibrated_by": "Matthew Scholefield", "camera_brand": "Sony", - "camera_model": "a5100", + "camera_model": "Alpha 5100", "lens_model": "sigma 16mm f/1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a5100_viltrox 23mm f.14_xavc-s_1080p_16by9_1920x1080-23.98fps.json b/Sony/Sony_a5100_viltrox 23mm f.14_xavc-s_1080p_16by9_1920x1080-23.98fps.json index e03b4e9e..9cdb036a 100644 --- a/Sony/Sony_a5100_viltrox 23mm f.14_xavc-s_1080p_16by9_1920x1080-23.98fps.json +++ b/Sony/Sony_a5100_viltrox 23mm f.14_xavc-s_1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "23mm", "calibrated_by": "Hengki Luo", "camera_brand": "Sony", - "camera_model": "a5100", + "camera_model": "Alpha 5100", "lens_model": "viltrox 23mm f.14", "camera_setting": "xavc-s", "calib_dimension": { diff --git a/Sony/Sony_a6000_16-50 F8 GM__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6000_16-50 F8 GM__1080p_16by9_1920x1080-50.00fps.json index 251dfeb8..bccd6d0b 100644 --- a/Sony/Sony_a6000_16-50 F8 GM__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6000_16-50 F8 GM__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ASO RE", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "16-50 F8 GM", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6000_16-50 at 16mm__720p_4by3_1440x1080-25.00fps.json b/Sony/Sony_a6000_16-50 at 16mm__720p_4by3_1440x1080-25.00fps.json index 3cf890f8..c4575d0f 100644 --- a/Sony/Sony_a6000_16-50 at 16mm__720p_4by3_1440x1080-25.00fps.json +++ b/Sony/Sony_a6000_16-50 at 16mm__720p_4by3_1440x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "user", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "16-50 at 16mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6000_16-50 f3.5-5.6_16mm_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6000_16-50 f3.5-5.6_16mm_1080p_16by9_1920x1080-59.94fps.json index 5e78fbcd..74696fd2 100644 --- a/Sony/Sony_a6000_16-50 f3.5-5.6_16mm_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6000_16-50 f3.5-5.6_16mm_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eddie", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "16-50 f3.5-5.6", "camera_setting": "16mm", "calib_dimension": { diff --git a/Sony/Sony_a6000_16-50__720p_4by3_1440x1080-25.00fps.json b/Sony/Sony_a6000_16-50__720p_4by3_1440x1080-25.00fps.json index 25f14f2a..523b6c2d 100644 --- a/Sony/Sony_a6000_16-50__720p_4by3_1440x1080-25.00fps.json +++ b/Sony/Sony_a6000_16-50__720p_4by3_1440x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "user", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "16-50", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6000_1650 3.5-5.6__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6000_1650 3.5-5.6__1080p_16by9_1920x1080-50.00fps.json index 6750558c..e3f6f942 100644 --- a/Sony/Sony_a6000_1650 3.5-5.6__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6000_1650 3.5-5.6__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "黄焕", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "1650 3.5-5.6", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6000_16mm 1_1.4__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6000_16mm 1_1.4__1080p_16by9_1920x1080-50.00fps.json index 9f9dc5e6..5e19c3e6 100644 --- a/Sony/Sony_a6000_16mm 1_1.4__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6000_16mm 1_1.4__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "tomato", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "16mm 1:1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6000_16nm 1_1.4__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6000_16nm 1_1.4__1080p_16by9_1920x1080-50.00fps.json index faeeb1c5..9d4b9020 100644 --- a/Sony/Sony_a6000_16nm 1_1.4__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6000_16nm 1_1.4__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "tomato", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "16nm 1:1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6000_18-55 kit__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6000_18-55 kit__1080p_16by9_1920x1080-59.94fps.json index bc558ee1..b666be28 100644 --- a/Sony/Sony_a6000_18-55 kit__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6000_18-55 kit__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "bodhi", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "18-55 kit", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6000_3.5-5.616-50 mm sony kit lens__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6000_3.5-5.616-50 mm sony kit lens__1080p_16by9_1920x1080-50.00fps.json index c55e481f..fecffbc4 100644 --- a/Sony/Sony_a6000_3.5-5.616-50 mm sony kit lens__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6000_3.5-5.616-50 mm sony kit lens__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Shwettam", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "3.5-5.6/16-50 mm sony kit lens", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6000_50 f2__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6000_50 f2__1080p_16by9_1920x1080-50.00fps.json index b3d6a6e3..82163bd0 100644 --- a/Sony/Sony_a6000_50 f2__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6000_50 f2__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "黄焕", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "岩石星50 f2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6000_50mm__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6000_50mm__1080p_16by9_1920x1080-59.94fps.json index f39f90c5..9b87f636 100644 --- a/Sony/Sony_a6000_50mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6000_50mm__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "victorsantos", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "50mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6000_55-210__720p_4by3_1440x1080-25.00fps.json b/Sony/Sony_a6000_55-210__720p_4by3_1440x1080-25.00fps.json index 924dbf69..4b755b3b 100644 --- a/Sony/Sony_a6000_55-210__720p_4by3_1440x1080-25.00fps.json +++ b/Sony/Sony_a6000_55-210__720p_4by3_1440x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "user", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "55-210", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6000_Helios-33__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6000_Helios-33__1080p_16by9_1920x1080-50.00fps.json index b6367efe..7098fae5 100644 --- a/Sony/Sony_a6000_Helios-33__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6000_Helios-33__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Yizhen Li", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "Helios-33", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6000_Laowa 9mm F2.8 Zero-D__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6000_Laowa 9mm F2.8 Zero-D__1080p_16by9_1920x1080-59.94fps.json index 6778a709..1338c196 100644 --- a/Sony/Sony_a6000_Laowa 9mm F2.8 Zero-D__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6000_Laowa 9mm F2.8 Zero-D__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Étienne Baritaud Figueroa", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "Laowa 9mm F2.8 Zero-D", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6000_SELP1650_16MM_720p_4by3_1440x1080-25.00fps - 2.json b/Sony/Sony_a6000_SELP1650_16MM_720p_4by3_1440x1080-25.00fps - 2.json index 5054d154..3a2a6598 100644 --- a/Sony/Sony_a6000_SELP1650_16MM_720p_4by3_1440x1080-25.00fps - 2.json +++ b/Sony/Sony_a6000_SELP1650_16MM_720p_4by3_1440x1080-25.00fps - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "李致", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "SELP1650", "camera_setting": "16MM", "calib_dimension": { diff --git a/Sony/Sony_a6000_SELP1650_16MM_720p_4by3_1440x1080-25.00fps - 3.json b/Sony/Sony_a6000_SELP1650_16MM_720p_4by3_1440x1080-25.00fps - 3.json index 7beaa1fc..513b4c6c 100644 --- a/Sony/Sony_a6000_SELP1650_16MM_720p_4by3_1440x1080-25.00fps - 3.json +++ b/Sony/Sony_a6000_SELP1650_16MM_720p_4by3_1440x1080-25.00fps - 3.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "李致", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "SELP1650", "camera_setting": "16MM", "calib_dimension": { diff --git a/Sony/Sony_a6000_SELP1650_16MM_720p_4by3_1440x1080-25.00fps - 4.json b/Sony/Sony_a6000_SELP1650_16MM_720p_4by3_1440x1080-25.00fps - 4.json index b6e4ba49..5871e3b1 100644 --- a/Sony/Sony_a6000_SELP1650_16MM_720p_4by3_1440x1080-25.00fps - 4.json +++ b/Sony/Sony_a6000_SELP1650_16MM_720p_4by3_1440x1080-25.00fps - 4.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "李致", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "SELP1650", "camera_setting": "16MM", "calib_dimension": { diff --git a/Sony/Sony_a6000_SELP1650_16MM_720p_4by3_1440x1080-25.00fps.json b/Sony/Sony_a6000_SELP1650_16MM_720p_4by3_1440x1080-25.00fps.json index d56f6930..4f10c452 100644 --- a/Sony/Sony_a6000_SELP1650_16MM_720p_4by3_1440x1080-25.00fps.json +++ b/Sony/Sony_a6000_SELP1650_16MM_720p_4by3_1440x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "李致", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "SELP1650", "camera_setting": "16MM", "calib_dimension": { diff --git a/Sony/Sony_a6000_SONY 50M_16.9_1080p_16by9_1920x1080-50.00fps - Massimo Bravetti - 2.json b/Sony/Sony_a6000_SONY 50M_16.9_1080p_16by9_1920x1080-50.00fps - Massimo Bravetti - 2.json index cccbe567..a2cf831a 100644 --- a/Sony/Sony_a6000_SONY 50M_16.9_1080p_16by9_1920x1080-50.00fps - Massimo Bravetti - 2.json +++ b/Sony/Sony_a6000_SONY 50M_16.9_1080p_16by9_1920x1080-50.00fps - Massimo Bravetti - 2.json @@ -3,7 +3,7 @@ "note": "50FPS", "calibrated_by": "Massimo Bravetti", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "SONY 50M", "camera_setting": "16.9", "calib_dimension": { diff --git a/Sony/Sony_a6000_Samyang 85mm t1.5 VDSLR__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6000_Samyang 85mm t1.5 VDSLR__1080p_16by9_1920x1080-50.00fps.json index b0634e4f..92fedd0f 100644 --- a/Sony/Sony_a6000_Samyang 85mm t1.5 VDSLR__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6000_Samyang 85mm t1.5 VDSLR__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "commander", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "Samyang 85mm t1.5 VDSLR", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6000_Sony 16-50mm_16mm_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6000_Sony 16-50mm_16mm_1080p_16by9_1920x1080-59.94fps.json index 6729c2f3..2afb06f6 100644 --- a/Sony/Sony_a6000_Sony 16-50mm_16mm_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6000_Sony 16-50mm_16mm_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "luca mosimann", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "Sony 16-50mm", "camera_setting": "16mm", "calib_dimension": { diff --git a/Sony/Sony_a6000_Sony 18-105 f4_16.9 full hd_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6000_Sony 18-105 f4_16.9 full hd_1080p_16by9_1920x1080-50.00fps.json index d46e32a4..01c45b07 100644 --- a/Sony/Sony_a6000_Sony 18-105 f4_16.9 full hd_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6000_Sony 18-105 f4_16.9 full hd_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "50fps", "calibrated_by": "Massimo Bravetti", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "Sony 18-105 f4", "camera_setting": "16.9 full hd", "calib_dimension": { diff --git a/Sony/Sony_a6000_Sony SEL16F28_1125 f2.8 Iso1000_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6000_Sony SEL16F28_1125 f2.8 Iso1000_1080p_16by9_1920x1080-59.94fps.json index 9783a816..d5df7d3d 100644 --- a/Sony/Sony_a6000_Sony SEL16F28_1125 f2.8 Iso1000_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6000_Sony SEL16F28_1125 f2.8 Iso1000_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Fred", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "Sony SEL16F28", "camera_setting": "1/125 f2.8 Iso1000", "calib_dimension": { diff --git a/Sony/Sony_a6000_Sony SELP1650 PZ 16-50mm f3.5-5.6 OSS; 9 elements in 8 groups, 4 aspheric surfaces__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6000_Sony SELP1650 PZ 16-50mm f3.5-5.6 OSS; 9 elements in 8 groups, 4 aspheric surfaces__1080p_16by9_1920x1080-59.94fps.json index ec48935e..b1e10e0d 100644 --- a/Sony/Sony_a6000_Sony SELP1650 PZ 16-50mm f3.5-5.6 OSS; 9 elements in 8 groups, 4 aspheric surfaces__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6000_Sony SELP1650 PZ 16-50mm f3.5-5.6 OSS; 9 elements in 8 groups, 4 aspheric surfaces__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Lastinvec", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "Sony SELP1650 PZ 16-50mm f/3.5-5.6 OSS; 9 elements in 8 groups, 4 aspheric surfaces", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6000_Sony__720p_4by3_1440x1080-29.97fps.json b/Sony/Sony_a6000_Sony__720p_4by3_1440x1080-29.97fps.json index eea1b82a..b5e3c3af 100644 --- a/Sony/Sony_a6000_Sony__720p_4by3_1440x1080-29.97fps.json +++ b/Sony/Sony_a6000_Sony__720p_4by3_1440x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Yadira T", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "Sony", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6000_Tamron 28-200 2.8-5.6__1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a6000_Tamron 28-200 2.8-5.6__1080p_16by9_1920x1080-25.00fps.json index 37c20f6a..3177fdf0 100644 --- a/Sony/Sony_a6000_Tamron 28-200 2.8-5.6__1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a6000_Tamron 28-200 2.8-5.6__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "urbt9", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "Tamron 28-200 2.8-5.6", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6000__16mm - 50mm_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6000__16mm - 50mm_1080p_16by9_1920x1080-59.94fps.json index 7b5afdcf..8def7811 100644 --- a/Sony/Sony_a6000__16mm - 50mm_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6000__16mm - 50mm_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "iso 200", "calibrated_by": "luca mosimann", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "", "camera_setting": "16mm - 50mm", "calib_dimension": { diff --git a/Sony/Sony_a6000_sony 18.108 emount f4_16.9_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6000_sony 18.108 emount f4_16.9_1080p_16by9_1920x1080-50.00fps.json index 08d350e4..c43491f0 100644 --- a/Sony/Sony_a6000_sony 18.108 emount f4_16.9_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6000_sony 18.108 emount f4_16.9_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Massimo Bravetti", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "sony 18.108 emount f4", "camera_setting": "16.9", "calib_dimension": { diff --git a/Sony/Sony_a6000_sony 50m_16.9_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6000_sony 50m_16.9_1080p_16by9_1920x1080-50.00fps.json index 7dd46c69..6b12230c 100644 --- a/Sony/Sony_a6000_sony 50m_16.9_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6000_sony 50m_16.9_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "50fps", "calibrated_by": "Massimo Bravetti", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "sony 50m", "camera_setting": "16.9", "calib_dimension": { diff --git a/Sony/Sony_a6000_sony 55-210__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6000_sony 55-210__1080p_16by9_1920x1080-59.94fps.json index 48bf6e4f..74cbf285 100644 --- a/Sony/Sony_a6000_sony 55-210__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6000_sony 55-210__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jason Hu", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "sony 55-210", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6000_stocklens@16mm__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6000_stocklens@16mm__1080p_16by9_1920x1080-50.00fps.json index 22262bcf..50963f26 100644 --- a/Sony/Sony_a6000_stocklens@16mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6000_stocklens@16mm__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "s .", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "stocklens@16mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6000_ttartisan 50mm f1.2__1080p_1.98by1_1920x968-50.00fps - dikapc - 2.json b/Sony/Sony_a6000_ttartisan 50mm f1.2__1080p_1.98by1_1920x968-50.00fps - dikapc - 2.json index 17265b9a..73f5e1a5 100644 --- a/Sony/Sony_a6000_ttartisan 50mm f1.2__1080p_1.98by1_1920x968-50.00fps - dikapc - 2.json +++ b/Sony/Sony_a6000_ttartisan 50mm f1.2__1080p_1.98by1_1920x968-50.00fps - dikapc - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "dikapc", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "ttartisan 50mm f1.2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6000_ttartisan 50mm f1.2__1080p_1.98by1_1920x968-50.00fps.json b/Sony/Sony_a6000_ttartisan 50mm f1.2__1080p_1.98by1_1920x968-50.00fps.json index c2bf6dae..5cb54759 100644 --- a/Sony/Sony_a6000_ttartisan 50mm f1.2__1080p_1.98by1_1920x968-50.00fps.json +++ b/Sony/Sony_a6000_ttartisan 50mm f1.2__1080p_1.98by1_1920x968-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "dikapc", "camera_brand": "Sony", - "camera_model": "a6000", + "camera_model": "Alpha 6000", "lens_model": "ttartisan 50mm f1.2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6100_16-50__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6100_16-50__1080p_16by9_1920x1080-50.00fps.json index 4d40a4e5..e874a553 100644 --- a/Sony/Sony_a6100_16-50__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6100_16-50__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "cs p", "camera_brand": "Sony", - "camera_model": "a6100", + "camera_model": "Alpha 6100", "lens_model": "16-50", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6100_16-50s_24_4k_16by9_3840x2160-29.97fps - FENGKAI LIU - 2.json b/Sony/Sony_a6100_16-50s_24_4k_16by9_3840x2160-29.97fps - FENGKAI LIU - 2.json index e1edbb64..24566335 100644 --- a/Sony/Sony_a6100_16-50s_24_4k_16by9_3840x2160-29.97fps - FENGKAI LIU - 2.json +++ b/Sony/Sony_a6100_16-50s_24_4k_16by9_3840x2160-29.97fps - FENGKAI LIU - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "FENGKAI LIU", "camera_brand": "Sony", - "camera_model": "a6100", + "camera_model": "Alpha 6100", "lens_model": "16-50s", "camera_setting": "24", "calib_dimension": { diff --git a/Sony/Sony_a6100_16-50s_24_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6100_16-50s_24_4k_16by9_3840x2160-29.97fps.json index db67a38d..92db6fad 100644 --- a/Sony/Sony_a6100_16-50s_24_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6100_16-50s_24_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "FENGKAI LIU", "camera_brand": "Sony", - "camera_model": "a6100", + "camera_model": "Alpha 6100", "lens_model": "16-50s", "camera_setting": "24", "calib_dimension": { diff --git a/Sony/Sony_a6100_18-105mm F4 G_18mm_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6100_18-105mm F4 G_18mm_1080p_16by9_1920x1080-59.94fps.json index 8dbd9fbc..37fd4124 100644 --- a/Sony/Sony_a6100_18-105mm F4 G_18mm_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6100_18-105mm F4 G_18mm_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "18mm", "calibrated_by": "Hilman Taqy M.", "camera_brand": "Sony", - "camera_model": "a6100", + "camera_model": "Alpha 6100", "lens_model": "18-105mm F4 G", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6100_30mmmacro__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6100_30mmmacro__4k_16by9_3840x2160-29.97fps.json index 6c885deb..5131a90e 100644 --- a/Sony/Sony_a6100_30mmmacro__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6100_30mmmacro__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "FENGKAI LIU", "camera_brand": "Sony", - "camera_model": "a6100", + "camera_model": "Alpha 6100", "lens_model": "30mmmacro", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6100_39mm macro__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6100_39mm macro__4k_16by9_3840x2160-29.97fps.json index 34932e23..7a8f2b55 100644 --- a/Sony/Sony_a6100_39mm macro__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6100_39mm macro__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "FENGKAI LIU", "camera_brand": "Sony", - "camera_model": "a6100", + "camera_model": "Alpha 6100", "lens_model": "39mm macro", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6100_7 artisans 25mm f1.8_NO RR _ RE=0.52_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6100_7 artisans 25mm f1.8_NO RR _ RE=0.52_1080p_16by9_1920x1080-50.00fps.json index ed14ebd9..ce1c32a9 100644 --- a/Sony/Sony_a6100_7 artisans 25mm f1.8_NO RR _ RE=0.52_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6100_7 artisans 25mm f1.8_NO RR _ RE=0.52_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "NO RR | RE=0.52", "calibrated_by": "Abhro Roy", "camera_brand": "Sony", - "camera_model": "a6100", + "camera_model": "Alpha 6100", "lens_model": "7 artisans 25mm f1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6100_Lente de Zoom de 16-50 mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6100_Lente de Zoom de 16-50 mm__4k_16by9_3840x2160-29.97fps.json index 0b4c9e5b..f76fd9e6 100644 --- a/Sony/Sony_a6100_Lente de Zoom de 16-50 mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6100_Lente de Zoom de 16-50 mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Personal", "camera_brand": "Sony", - "camera_model": "a6100", + "camera_model": "Alpha 6100", "lens_model": "Lente de Zoom de 16-50 mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6100_NIkon 60mm macro__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6100_NIkon 60mm macro__4k_16by9_3840x2160-29.97fps.json index 8035e02a..cd82f710 100644 --- a/Sony/Sony_a6100_NIkon 60mm macro__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6100_NIkon 60mm macro__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "FENGKAI LIU", "camera_brand": "Sony", - "camera_model": "a6100", + "camera_model": "Alpha 6100", "lens_model": "NIkon 60mm macro", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6100_OSS 3.5-5.616mm_steady_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6100_OSS 3.5-5.616mm_steady_4k_16by9_3840x2160-25.00fps.json index 55c60242..1b75a6dc 100644 --- a/Sony/Sony_a6100_OSS 3.5-5.616mm_steady_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6100_OSS 3.5-5.616mm_steady_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "thoma", "camera_brand": "Sony", - "camera_model": "a6100", + "camera_model": "Alpha 6100", "lens_model": "OSS 3.5-5.6/16mm", "camera_setting": "steady", "calib_dimension": { diff --git a/Sony/Sony_a6100_OSS 3.5-5.650mm_steady_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6100_OSS 3.5-5.650mm_steady_4k_16by9_3840x2160-25.00fps.json index c65340e8..8c18157a 100644 --- a/Sony/Sony_a6100_OSS 3.5-5.650mm_steady_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6100_OSS 3.5-5.650mm_steady_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "thoma", "camera_brand": "Sony", - "camera_model": "a6100", + "camera_model": "Alpha 6100", "lens_model": "OSS 3.5-5.6/50mm", "camera_setting": "steady", "calib_dimension": { diff --git a/Sony/Sony_a6100_OSS 4.5-6.3210mm_steady_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6100_OSS 4.5-6.3210mm_steady_4k_16by9_3840x2160-25.00fps.json index 69359766..91657891 100644 --- a/Sony/Sony_a6100_OSS 4.5-6.3210mm_steady_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6100_OSS 4.5-6.3210mm_steady_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "thoma", "camera_brand": "Sony", - "camera_model": "a6100", + "camera_model": "Alpha 6100", "lens_model": "OSS 4.5-6.3/210mm", "camera_setting": "steady", "calib_dimension": { diff --git a/Sony/Sony_a6100_Samyang 12mm f2 AF Sony e__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6100_Samyang 12mm f2 AF Sony e__4k_16by9_3840x2160-25.00fps.json index bdf2873b..fd5f5436 100644 --- a/Sony/Sony_a6100_Samyang 12mm f2 AF Sony e__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6100_Samyang 12mm f2 AF Sony e__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "cs p", "camera_brand": "Sony", - "camera_model": "a6100", + "camera_model": "Alpha 6100", "lens_model": "Samyang 12mm f2 AF Sony e", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6100_Sigma 18-50 2.8 DC DN__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6100_Sigma 18-50 2.8 DC DN__4k_16by9_3840x2160-25.00fps.json index dee27564..ae1bc93b 100644 --- a/Sony/Sony_a6100_Sigma 18-50 2.8 DC DN__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6100_Sigma 18-50 2.8 DC DN__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "cs p", "camera_brand": "Sony", - "camera_model": "a6100", + "camera_model": "Alpha 6100", "lens_model": "Sigma 18-50 2.8 DC DN", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6100_Sigma 18-50 2.8__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6100_Sigma 18-50 2.8__1080p_16by9_1920x1080-50.00fps.json index 1d764482..a1e24c48 100644 --- a/Sony/Sony_a6100_Sigma 18-50 2.8__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6100_Sigma 18-50 2.8__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "cs p", "camera_brand": "Sony", - "camera_model": "a6100", + "camera_model": "Alpha 6100", "lens_model": "Sigma 18-50 2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6100_Sigma 18-50 2.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6100_Sigma 18-50 2.8__4k_16by9_3840x2160-25.00fps.json index 053dd772..2570a1d9 100644 --- a/Sony/Sony_a6100_Sigma 18-50 2.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6100_Sigma 18-50 2.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "cs p", "camera_brand": "Sony", - "camera_model": "a6100", + "camera_model": "Alpha 6100", "lens_model": "Sigma 18-50 2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6100_Sony 18-55 Kit__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6100_Sony 18-55 Kit__4k_16by9_3840x2160-25.00fps.json index a7b2fd93..0601ebbc 100644 --- a/Sony/Sony_a6100_Sony 18-55 Kit__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6100_Sony 18-55 Kit__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Андрей Швед", "camera_brand": "Sony", - "camera_model": "a6100", + "camera_model": "Alpha 6100", "lens_model": "Sony 18-55 Kit", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6100_Sony 85mm 1.8 FE__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6100_Sony 85mm 1.8 FE__4k_16by9_3840x2160-25.00fps.json index f13f6a05..c9717e9c 100644 --- a/Sony/Sony_a6100_Sony 85mm 1.8 FE__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6100_Sony 85mm 1.8 FE__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "cs p", "camera_brand": "Sony", - "camera_model": "a6100", + "camera_model": "Alpha 6100", "lens_model": "Sony 85mm 1.8 FE", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6100_sony 55-210mm__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6100_sony 55-210mm__1080p_16by9_1920x1080-50.00fps.json index 89e21e3f..5e146067 100644 --- a/Sony/Sony_a6100_sony 55-210mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6100_sony 55-210mm__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Trishan", "camera_brand": "Sony", - "camera_model": "a6100", + "camera_model": "Alpha 6100", "lens_model": "sony 55-210mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_16 105 F4_16mm 25_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6300_16 105 F4_16mm 25_4k_16by9_3840x2160-25.00fps.json index f480f28b..c88022a3 100644 --- a/Sony/Sony_a6300_16 105 F4_16mm 25_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6300_16 105 F4_16mm 25_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Joker", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "16 105 F4", "camera_setting": "16mm 25", "calib_dimension": { diff --git a/Sony/Sony_a6300_16-35mm F4_manual_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a6300_16-35mm F4_manual_1080p_16by9_1920x1080-25.00fps.json index 53db6899..ed2b932d 100644 --- a/Sony/Sony_a6300_16-35mm F4_manual_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a6300_16-35mm F4_manual_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "holibert martinez suarez", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "16-35mm F4", "camera_setting": "manual", "calib_dimension": { diff --git a/Sony/Sony_a6300_16-50 Standard Kit_16mm_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6300_16-50 Standard Kit_16mm_4k_16by9_3840x2160-29.97fps.json index c8249aeb..4024f4b5 100644 --- a/Sony/Sony_a6300_16-50 Standard Kit_16mm_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6300_16-50 Standard Kit_16mm_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "4K 29.97 H264 8bit", "calibrated_by": "Rafael Stumpf", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "16-50 Standard Kit", "camera_setting": "16mm", "calib_dimension": { diff --git a/Sony/Sony_a6300_16-50.16mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6300_16-50.16mm__4k_16by9_3840x2160-23.98fps.json index 7a8a2e05..b88a8b60 100644 --- a/Sony/Sony_a6300_16-50.16mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6300_16-50.16mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "洪贵荣", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "16-50.16mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_16-50_16_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a6300_16-50_16_1080p_16by9_1920x1080-25.00fps.json index 6e6be790..44c0b706 100644 --- a/Sony/Sony_a6300_16-50_16_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a6300_16-50_16_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Иваненко Виктория", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "16-50", "camera_setting": "16", "calib_dimension": { diff --git a/Sony/Sony_a6300_16-50_60_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6300_16-50_60_1080p_16by9_1920x1080-59.94fps.json index e404f24e..8c32736c 100644 --- a/Sony/Sony_a6300_16-50_60_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6300_16-50_60_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "16mm", "calibrated_by": "Hugo Chiang", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "16-50", "camera_setting": "60", "calib_dimension": { diff --git a/Sony/Sony_a6300_16-50__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6300_16-50__4k_16by9_3840x2160-29.97fps.json index 68399cbc..e759db6c 100644 --- a/Sony/Sony_a6300_16-50__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6300_16-50__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "bear", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "16-50", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_16-50mm_XAVC S HD 50M_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6300_16-50mm_XAVC S HD 50M_1080p_16by9_1920x1080-59.94fps.json index 1f509288..229c7c94 100644 --- a/Sony/Sony_a6300_16-50mm_XAVC S HD 50M_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6300_16-50mm_XAVC S HD 50M_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Hugo Chiang", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "16-50mm", "camera_setting": "XAVC S HD 50M", "calib_dimension": { diff --git a/Sony/Sony_a6300_16-50mm__1080p_16by9_1920x1080-29.97fps.json b/Sony/Sony_a6300_16-50mm__1080p_16by9_1920x1080-29.97fps.json index 3591217f..580ec48d 100644 --- a/Sony/Sony_a6300_16-50mm__1080p_16by9_1920x1080-29.97fps.json +++ b/Sony/Sony_a6300_16-50mm__1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Mawloud Djeghloul", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "16-50mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_1650__1080p_16by9_1920x1080-50.00fps - 2.json b/Sony/Sony_a6300_1650__1080p_16by9_1920x1080-50.00fps - 2.json index c297c38d..6f9e12a1 100644 --- a/Sony/Sony_a6300_1650__1080p_16by9_1920x1080-50.00fps - 2.json +++ b/Sony/Sony_a6300_1650__1080p_16by9_1920x1080-50.00fps - 2.json @@ -3,7 +3,7 @@ "note": "无防抖", "calibrated_by": "吴金生", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "1650", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_1650__1080p_16by9_1920x1080-50.00fps - 4.json b/Sony/Sony_a6300_1650__1080p_16by9_1920x1080-50.00fps - 4.json index ddf6527a..b0428962 100644 --- a/Sony/Sony_a6300_1650__1080p_16by9_1920x1080-50.00fps - 4.json +++ b/Sony/Sony_a6300_1650__1080p_16by9_1920x1080-50.00fps - 4.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "吴金生", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "1650", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_1650__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6300_1650__1080p_16by9_1920x1080-50.00fps.json index cd75860e..9c4e3b0f 100644 --- a/Sony/Sony_a6300_1650__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6300_1650__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "吴金生", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "1650", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_18-135__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6300_18-135__1080p_16by9_1920x1080-50.00fps.json index 2791004f..0b911900 100644 --- a/Sony/Sony_a6300_18-135__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6300_18-135__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Win10-PC", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "18-135", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_18-50mm oss kit lens 16mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6300_18-50mm oss kit lens 16mm__4k_16by9_3840x2160-29.97fps.json index 3c8c59c0..26911e93 100644 --- a/Sony/Sony_a6300_18-50mm oss kit lens 16mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6300_18-50mm oss kit lens 16mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Artur", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "18-50mm oss kit lens 16mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_18__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6300_18__1080p_16by9_1920x1080-50.00fps.json index ebbcd3d3..e158fc8e 100644 --- a/Sony/Sony_a6300_18__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6300_18__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "18", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_3.5-5.616-50__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6300_3.5-5.616-50__4k_16by9_3840x2160-23.98fps.json index 8a35f3fd..5776df14 100644 --- a/Sony/Sony_a6300_3.5-5.616-50__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6300_3.5-5.616-50__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Florian Korber-Perner", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "3.5-5.6/16-50", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_30 f1.4__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6300_30 f1.4__4k_16by9_3840x2160-25.00fps.json index e89ac9fa..64ed71e5 100644 --- a/Sony/Sony_a6300_30 f1.4__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6300_30 f1.4__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "syh", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "30 f1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_50mm 1.8 OSS__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6300_50mm 1.8 OSS__4k_16by9_3840x2160-25.00fps.json index 34a908a8..46f68254 100644 --- a/Sony/Sony_a6300_50mm 1.8 OSS__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6300_50mm 1.8 OSS__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Admin", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "50mm 1.8 OSS", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_50mm F1.8_1100_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6300_50mm F1.8_1100_4k_16by9_3840x2160-25.00fps.json index 0c36117c..7228deb0 100644 --- a/Sony/Sony_a6300_50mm F1.8_1100_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6300_50mm F1.8_1100_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "1/100", "calibrated_by": "王鑫", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "50mm F1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_55210__1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a6300_55210__1080p_16by9_1920x1080-25.00fps.json index 19343d09..5a7595bb 100644 --- a/Sony/Sony_a6300_55210__1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a6300_55210__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "吴金生", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "55210", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_7.52.8fish__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6300_7.52.8fish__4k_16by9_3840x2160-29.97fps.json index a7bafb0b..b141b6c5 100644 --- a/Sony/Sony_a6300_7.52.8fish__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6300_7.52.8fish__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "姜竣峰", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "7.52.8fish", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_70-200mm F4_@70mm, 29.97_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6300_70-200mm F4_@70mm, 29.97_4k_16by9_3840x2160-29.97fps.json index 7f8ab6ef..08222cc7 100644 --- a/Sony/Sony_a6300_70-200mm F4_@70mm, 29.97_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6300_70-200mm F4_@70mm, 29.97_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "MM", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "70-200mm F4", "camera_setting": "@70mm, 29.97", "calib_dimension": { diff --git a/Sony/Sony_a6300_7Artisans 25mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6300_7Artisans 25mm__4k_16by9_3840x2160-29.97fps.json index cb3f7b3c..d28637d1 100644 --- a/Sony/Sony_a6300_7Artisans 25mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6300_7Artisans 25mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Michael", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "7Artisans 25mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_7Artisans 35mm f0.95 APS-C_35mm APS-C_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6300_7Artisans 35mm f0.95 APS-C_35mm APS-C_4k_16by9_3840x2160-23.98fps.json index 6cac52a0..1bd691bd 100644 --- a/Sony/Sony_a6300_7Artisans 35mm f0.95 APS-C_35mm APS-C_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6300_7Artisans 35mm f0.95 APS-C_35mm APS-C_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "35mm APS-C", "calibrated_by": "MogiYgJahat", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "7Artisans 35mm f/0.95 APS-C", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_7Artisans 7.5mm F2.8__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6300_7Artisans 7.5mm F2.8__4k_16by9_3840x2160-29.97fps.json index b91362a3..5a0ae96f 100644 --- a/Sony/Sony_a6300_7Artisans 7.5mm F2.8__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6300_7Artisans 7.5mm F2.8__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Nils Schreiner", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "7Artisans 7.5mm F2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_7artisans 12mm 2__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6300_7artisans 12mm 2__4k_16by9_3840x2160-29.97fps.json index 2e49c1f5..62f5e7a5 100644 --- a/Sony/Sony_a6300_7artisans 12mm 2__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6300_7artisans 12mm 2__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "陈gb", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "7artisans 12mm 2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Canon 24-105_24mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6300_Canon 24-105_24mm_4k_16by9_3840x2160-25.00fps.json index a3f9a8b2..d575f31c 100644 --- a/Sony/Sony_a6300_Canon 24-105_24mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6300_Canon 24-105_24mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "24mm", "calibrated_by": "Cerrudo", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Canon 24-105", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Laowa 10mm apc-s_super 35mm 100mbs_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6300_Laowa 10mm apc-s_super 35mm 100mbs_4k_16by9_3840x2160-23.98fps.json index 07093365..001228ec 100644 --- a/Sony/Sony_a6300_Laowa 10mm apc-s_super 35mm 100mbs_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6300_Laowa 10mm apc-s_super 35mm 100mbs_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Chris Lemanz", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Laowa 10mm apc-s", "camera_setting": "super 35mm 100mbs", "calib_dimension": { diff --git a/Sony/Sony_a6300_Laowa 9mm f2.8__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6300_Laowa 9mm f2.8__4k_16by9_3840x2160-23.98fps.json index 83efe94a..48603ca6 100644 --- a/Sony/Sony_a6300_Laowa 9mm f2.8__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6300_Laowa 9mm f2.8__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "My Butthole", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Laowa 9mm f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Rokinon 8mm Fisheye_XAVC S 4K_25FPS_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6300_Rokinon 8mm Fisheye_XAVC S 4K_25FPS_4k_16by9_3840x2160-25.00fps.json index 0ca106ca..935b33ad 100644 --- a/Sony/Sony_a6300_Rokinon 8mm Fisheye_XAVC S 4K_25FPS_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6300_Rokinon 8mm Fisheye_XAVC S 4K_25FPS_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "XAVC S 4K_25FPS", "calibrated_by": "Jonathan", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Rokinon 8mm Fisheye", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Rokinon 8mm Fisheye_XAVC S_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6300_Rokinon 8mm Fisheye_XAVC S_4k_16by9_3840x2160-25.00fps.json index 003bca17..6eca3a14 100644 --- a/Sony/Sony_a6300_Rokinon 8mm Fisheye_XAVC S_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6300_Rokinon 8mm Fisheye_XAVC S_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "V2", "calibrated_by": "Jonathan", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Rokinon 8mm Fisheye", "camera_setting": "XAVC S", "calib_dimension": { diff --git a/Sony/Sony_a6300_Rokinon 8mm Fisheye_XAVC S_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6300_Rokinon 8mm Fisheye_XAVC S_4k_16by9_3840x2160-29.97fps.json index 3d4a9e9c..b9298a51 100644 --- a/Sony/Sony_a6300_Rokinon 8mm Fisheye_XAVC S_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6300_Rokinon 8mm Fisheye_XAVC S_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "F2.8", "calibrated_by": "Jonathan Teo", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Rokinon 8mm Fisheye", "camera_setting": "XAVC S", "calib_dimension": { diff --git a/Sony/Sony_a6300_Rokinon__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6300_Rokinon__4k_16by9_3840x2160-23.98fps.json index f6adb2a1..66ec9994 100644 --- a/Sony/Sony_a6300_Rokinon__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6300_Rokinon__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "User", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Rokinon", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_SEL 70-200mm F4__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6300_SEL 70-200mm F4__4k_16by9_3840x2160-29.97fps.json index b213110a..a38ba3fd 100644 --- a/Sony/Sony_a6300_SEL 70-200mm F4__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6300_SEL 70-200mm F4__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "MM", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "SEL 70-200mm F4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_SEL16F28+VLC-ECU1_@12mm,29.97_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6300_SEL16F28+VLC-ECU1_@12mm,29.97_4k_16by9_3840x2160-29.97fps.json index 59be24a5..7d4bace4 100644 --- a/Sony/Sony_a6300_SEL16F28+VLC-ECU1_@12mm,29.97_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6300_SEL16F28+VLC-ECU1_@12mm,29.97_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "MM", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "SEL16F28+VLC-ECU1", "camera_setting": "@12mm,29.97", "calib_dimension": { diff --git a/Sony/Sony_a6300_SEL16F28_29.97_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6300_SEL16F28_29.97_4k_16by9_3840x2160-29.97fps.json index 523e4605..02e62799 100644 --- a/Sony/Sony_a6300_SEL16F28_29.97_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6300_SEL16F28_29.97_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "MM", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "SEL16F28", "camera_setting": "29.97", "calib_dimension": { diff --git a/Sony/Sony_a6300_SEL2870_XAVCS HD_1080p_16by9_1920x1080-29.97fps.json b/Sony/Sony_a6300_SEL2870_XAVCS HD_1080p_16by9_1920x1080-29.97fps.json index d8a03820..2f1085a7 100644 --- a/Sony/Sony_a6300_SEL2870_XAVCS HD_1080p_16by9_1920x1080-29.97fps.json +++ b/Sony/Sony_a6300_SEL2870_XAVCS HD_1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "FE3.5-5.6/28-70mm at 28mm F4", "calibrated_by": "Scott Zhang", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "SEL2870", "camera_setting": "XAVCS HD", "calib_dimension": { diff --git a/Sony/Sony_a6300_SIGMA 16mm f1.4 DC DN_16mm_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6300_SIGMA 16mm f1.4 DC DN_16mm_4k_16by9_3840x2160-23.98fps.json index 6fd659a6..49584b42 100644 --- a/Sony/Sony_a6300_SIGMA 16mm f1.4 DC DN_16mm_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6300_SIGMA 16mm f1.4 DC DN_16mm_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "16mm", "calibrated_by": "MogiYgJahat", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "SIGMA 16mm f/1.4 DC DN", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Samyang 12mm f2.0_12mm_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6300_Samyang 12mm f2.0_12mm_4k_16by9_3840x2160-23.98fps.json index 7953084c..93bfcb59 100644 --- a/Sony/Sony_a6300_Samyang 12mm f2.0_12mm_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6300_Samyang 12mm f2.0_12mm_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "12mm", "calibrated_by": "Carlo Emmanuel Zambrano Boldo", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Samyang 12mm f/2.0", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Samyang 12mm f2.0_60M_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6300_Samyang 12mm f2.0_60M_4k_16by9_3840x2160-23.98fps.json index f160fbe6..f0fbb8ff 100644 --- a/Sony/Sony_a6300_Samyang 12mm f2.0_60M_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6300_Samyang 12mm f2.0_60M_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Carlo Emmanuel Zambrano Boldo", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Samyang 12mm f/2.0", "camera_setting": "60M", "calib_dimension": { diff --git a/Sony/Sony_a6300_Samyang 12mm__4k_16by9_3840x2160-29.97fps - Leon.json b/Sony/Sony_a6300_Samyang 12mm__4k_16by9_3840x2160-29.97fps - Leon.json index 14fe05c2..01b89ec5 100644 --- a/Sony/Sony_a6300_Samyang 12mm__4k_16by9_3840x2160-29.97fps - Leon.json +++ b/Sony/Sony_a6300_Samyang 12mm__4k_16by9_3840x2160-29.97fps - Leon.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Leon", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Samyang 12mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Samyang 12mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6300_Samyang 12mm__4k_16by9_3840x2160-29.97fps.json index 448a9885..d2dd9a98 100644 --- a/Sony/Sony_a6300_Samyang 12mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6300_Samyang 12mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Leon", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Samyang 12mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Samyang 21mm f1.4__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6300_Samyang 21mm f1.4__4k_16by9_3840x2160-29.97fps.json index bcfc8817..44676373 100644 --- a/Sony/Sony_a6300_Samyang 21mm f1.4__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6300_Samyang 21mm f1.4__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Leon", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Samyang 21mm f1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Samyang12mm f2__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6300_Samyang12mm f2__4k_16by9_3840x2160-29.97fps.json index 1796b209..6095796b 100644 --- a/Sony/Sony_a6300_Samyang12mm f2__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6300_Samyang12mm f2__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Leon Knarr", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Samyang12mm f2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Sigma 16mm 1.4__1080p_16by9_1920x1080-23.98fps.json b/Sony/Sony_a6300_Sigma 16mm 1.4__1080p_16by9_1920x1080-23.98fps.json index aee52976..a872dbfb 100644 --- a/Sony/Sony_a6300_Sigma 16mm 1.4__1080p_16by9_1920x1080-23.98fps.json +++ b/Sony/Sony_a6300_Sigma 16mm 1.4__1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Suresh", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Sigma 16mm 1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Sigma 16mm F1.4__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6300_Sigma 16mm F1.4__4k_16by9_3840x2160-23.98fps.json index 346ebf56..56372319 100644 --- a/Sony/Sony_a6300_Sigma 16mm F1.4__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6300_Sigma 16mm F1.4__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Radek Rezny", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Sigma 16mm F1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Sigma 16mm f1.4 DN__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6300_Sigma 16mm f1.4 DN__4k_16by9_3840x2160-25.00fps.json index a1bbf8b4..65cf791c 100644 --- a/Sony/Sony_a6300_Sigma 16mm f1.4 DN__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6300_Sigma 16mm f1.4 DN__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Marek", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Sigma 16mm f1.4 DN", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Sigma 16mm f1.4_XAVC_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6300_Sigma 16mm f1.4_XAVC_4k_16by9_3840x2160-23.98fps.json index fa3bedcd..ee4be4ce 100644 --- a/Sony/Sony_a6300_Sigma 16mm f1.4_XAVC_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6300_Sigma 16mm f1.4_XAVC_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jared Alasa-as", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Sigma 16mm f1.4", "camera_setting": "XAVC", "calib_dimension": { diff --git a/Sony/Sony_a6300_Sigma 16mm f1.4__4k_16by9_3840x2160-23.98fps (2).json b/Sony/Sony_a6300_Sigma 16mm f1.4__4k_16by9_3840x2160-23.98fps (2).json index a9c634ff..1daeccf3 100644 --- a/Sony/Sony_a6300_Sigma 16mm f1.4__4k_16by9_3840x2160-23.98fps (2).json +++ b/Sony/Sony_a6300_Sigma 16mm f1.4__4k_16by9_3840x2160-23.98fps (2).json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "My Butthole", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Sigma 16mm f1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Sigma 16mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6300_Sigma 16mm__4k_16by9_3840x2160-23.98fps.json index 8686ec3e..3e336d29 100644 --- a/Sony/Sony_a6300_Sigma 16mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6300_Sigma 16mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "User", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Sigma 16mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Sigma 18-50mm 2.8_18mm_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6300_Sigma 18-50mm 2.8_18mm_1080p_16by9_1920x1080-59.94fps.json index 803f7974..2c8aa3a2 100644 --- a/Sony/Sony_a6300_Sigma 18-50mm 2.8_18mm_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6300_Sigma 18-50mm 2.8_18mm_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Marlowe Wilton", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Sigma 18-50mm 2.8", "camera_setting": "18mm", "calib_dimension": { diff --git a/Sony/Sony_a6300_Sigma 18-50mm F2.8 DC DN__4k_16by9_3840x2160-25.00fps - 2.json b/Sony/Sony_a6300_Sigma 18-50mm F2.8 DC DN__4k_16by9_3840x2160-25.00fps - 2.json index d267f816..f523abe4 100644 --- a/Sony/Sony_a6300_Sigma 18-50mm F2.8 DC DN__4k_16by9_3840x2160-25.00fps - 2.json +++ b/Sony/Sony_a6300_Sigma 18-50mm F2.8 DC DN__4k_16by9_3840x2160-25.00fps - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "春卷", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Sigma 18-50mm F2.8 DC DN", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Sigma 18-50mm F2.8 DC DN__4k_16by9_3840x2160-25.00fps - 4.json b/Sony/Sony_a6300_Sigma 18-50mm F2.8 DC DN__4k_16by9_3840x2160-25.00fps - 4.json index d3b2aca8..d057b786 100644 --- a/Sony/Sony_a6300_Sigma 18-50mm F2.8 DC DN__4k_16by9_3840x2160-25.00fps - 4.json +++ b/Sony/Sony_a6300_Sigma 18-50mm F2.8 DC DN__4k_16by9_3840x2160-25.00fps - 4.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "春卷", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Sigma 18-50mm F2.8 DC DN", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Sigma 18-50mm F2.8 DC DN__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6300_Sigma 18-50mm F2.8 DC DN__4k_16by9_3840x2160-25.00fps.json index 18f67d31..9f39b80c 100644 --- a/Sony/Sony_a6300_Sigma 18-50mm F2.8 DC DN__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6300_Sigma 18-50mm F2.8 DC DN__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "春卷", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Sigma 18-50mm F2.8 DC DN", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Sigma 30F1.4_x1920_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6300_Sigma 30F1.4_x1920_1080p_16by9_1920x1080-59.94fps.json index 413bf157..877d87ed 100644 --- a/Sony/Sony_a6300_Sigma 30F1.4_x1920_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6300_Sigma 30F1.4_x1920_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "1", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Sigma 30F1.4", "camera_setting": "x1920", "calib_dimension": { diff --git a/Sony/Sony_a6300_Sigma 30mm 1.4_XAVCS_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6300_Sigma 30mm 1.4_XAVCS_1080p_16by9_1920x1080-50.00fps.json index bea36c42..0269fbe1 100644 --- a/Sony/Sony_a6300_Sigma 30mm 1.4_XAVCS_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6300_Sigma 30mm 1.4_XAVCS_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ILQAR SULEYMANOV", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Sigma 30mm 1.4", "camera_setting": "XAVCS", "calib_dimension": { diff --git a/Sony/Sony_a6300_Sigma 30mm__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6300_Sigma 30mm__1080p_16by9_1920x1080-59.94fps.json index cf703de5..4eaeb70e 100644 --- a/Sony/Sony_a6300_Sigma 30mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6300_Sigma 30mm__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Alfariz", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Sigma 30mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Sigma 30mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6300_Sigma 30mm__4k_16by9_3840x2160-25.00fps.json index bd6aa3e2..be0bc6b0 100644 --- a/Sony/Sony_a6300_Sigma 30mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6300_Sigma 30mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Артём Клымко", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Sigma 30mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Sigma 30mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6300_Sigma 30mm__4k_16by9_3840x2160-29.97fps.json index 16e73b53..c846af6f 100644 --- a/Sony/Sony_a6300_Sigma 30mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6300_Sigma 30mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "MartyMacBookPro", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Sigma 30mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Sigma_16mm_f1.4_1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a6300_Sigma_16mm_f1.4_1080p_16by9_1920x1080-100.00fps.json index 89bbd8fc..a573c090 100644 --- a/Sony/Sony_a6300_Sigma_16mm_f1.4_1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a6300_Sigma_16mm_f1.4_1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Vinay Dhiman", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Sigma_16mm", "camera_setting": "f1.4", "calib_dimension": { diff --git a/Sony/Sony_a6300_Sony 10-18mm f4_10mm_1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a6300_Sony 10-18mm f4_10mm_1080p_16by9_1920x1080-100.00fps.json index 4f9894af..55a63fdd 100644 --- a/Sony/Sony_a6300_Sony 10-18mm f4_10mm_1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a6300_Sony 10-18mm f4_10mm_1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "10mm", "calibrated_by": "LeoMatis", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Sony 10-18mm f4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Sony 10-18mm f4_10mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6300_Sony 10-18mm f4_10mm_4k_16by9_3840x2160-25.00fps.json index c26698b9..ce028880 100644 --- a/Sony/Sony_a6300_Sony 10-18mm f4_10mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6300_Sony 10-18mm f4_10mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "10mm", "calibrated_by": "Leo Matis", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Sony 10-18mm f4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Sony 16-50@50__1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a6300_Sony 16-50@50__1080p_16by9_1920x1080-100.00fps.json index 922199cc..d94b88ed 100644 --- a/Sony/Sony_a6300_Sony 16-50@50__1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a6300_Sony 16-50@50__1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ivan", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Sony 16-50@50", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Sony 18-105mm F4_18mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6300_Sony 18-105mm F4_18mm_4k_16by9_3840x2160-25.00fps.json index 01e42e2c..9a6ff3b9 100644 --- a/Sony/Sony_a6300_Sony 18-105mm F4_18mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6300_Sony 18-105mm F4_18mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "18mm", "calibrated_by": "Anselme Jaosidy", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Sony 18-105mm F4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Sony 20mm f2.8__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6300_Sony 20mm f2.8__4k_16by9_3840x2160-23.98fps.json index 75b3a5bb..36e0d2cf 100644 --- a/Sony/Sony_a6300_Sony 20mm f2.8__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6300_Sony 20mm f2.8__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "aramaki", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Sony 20mm f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Sony 3,5-5,616-50_25p_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6300_Sony 3,5-5,616-50_25p_4k_16by9_3840x2160-23.98fps.json index ade757af..7d9ded37 100644 --- a/Sony/Sony_a6300_Sony 3,5-5,616-50_25p_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6300_Sony 3,5-5,616-50_25p_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Florian Korber-Perner", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Sony 3,5-5,6/16-50", "camera_setting": "25p", "calib_dimension": { diff --git a/Sony/Sony_a6300_Sony18-105__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6300_Sony18-105__4k_16by9_3840x2160-25.00fps.json index 22e1073f..cae5cc88 100644 --- a/Sony/Sony_a6300_Sony18-105__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6300_Sony18-105__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Sony18-105", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_TAMRON18-300mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6300_TAMRON18-300mm__4k_16by9_3840x2160-25.00fps.json index 01f41892..409a3ec4 100644 --- a/Sony/Sony_a6300_TAMRON18-300mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6300_TAMRON18-300mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "stan vemon", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "TAMRON18-300mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Tamron 17-70_HD_1080p_16by9_1920x1080-119.88fps.json b/Sony/Sony_a6300_Tamron 17-70_HD_1080p_16by9_1920x1080-119.88fps.json index 8d33680d..d41a25cb 100644 --- a/Sony/Sony_a6300_Tamron 17-70_HD_1080p_16by9_1920x1080-119.88fps.json +++ b/Sony/Sony_a6300_Tamron 17-70_HD_1080p_16by9_1920x1080-119.88fps.json @@ -3,7 +3,7 @@ "note": "17mm", "calibrated_by": "Stalone Ker", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Tamron 17-70", "camera_setting": "HD", "calib_dimension": { diff --git a/Sony/Sony_a6300_Tamron 28-200_28mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6300_Tamron 28-200_28mm_4k_16by9_3840x2160-25.00fps.json index 80a07d61..fb3fabec 100644 --- a/Sony/Sony_a6300_Tamron 28-200_28mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6300_Tamron 28-200_28mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "tczrn", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Tamron 28-200", "camera_setting": "28mm", "calib_dimension": { diff --git a/Sony/Sony_a6300_Tamron 35-150_35_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6300_Tamron 35-150_35_4k_16by9_3840x2160-23.98fps.json index 6778aba6..c24503a9 100644 --- a/Sony/Sony_a6300_Tamron 35-150_35_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6300_Tamron 35-150_35_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "35", "calibrated_by": "NDA", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Tamron 35-150", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_Yongnuo 50 f1.8_28M_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6300_Yongnuo 50 f1.8_28M_1080p_16by9_1920x1080-50.00fps.json index a255e68e..9e21c004 100644 --- a/Sony/Sony_a6300_Yongnuo 50 f1.8_28M_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6300_Yongnuo 50 f1.8_28M_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "phl", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "Yongnuo 50 f1.8", "camera_setting": "28M", "calib_dimension": { diff --git a/Sony/Sony_a6300_ZONLAI 25mm F1.8__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6300_ZONLAI 25mm F1.8__4k_16by9_3840x2160-29.97fps.json index 1e48854b..93e2fdcf 100644 --- a/Sony/Sony_a6300_ZONLAI 25mm F1.8__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6300_ZONLAI 25mm F1.8__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Kemi", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "ZONLAI 25mm F1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_e50__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6300_e50__1080p_16by9_1920x1080-50.00fps.json index e6218652..1cf8416c 100644 --- a/Sony/Sony_a6300_e50__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6300_e50__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "吴金生", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "索尼e50", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_ind__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6300_ind__4k_16by9_3840x2160-29.97fps.json index edf76f11..1abaf8ee 100644 --- a/Sony/Sony_a6300_ind__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6300_ind__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Bogdan Bublik", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "ind", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_iowa 10mm_100mbs apcs no super 35_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6300_iowa 10mm_100mbs apcs no super 35_4k_16by9_3840x2160-29.97fps.json index de3687b1..3aa782d1 100644 --- a/Sony/Sony_a6300_iowa 10mm_100mbs apcs no super 35_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6300_iowa 10mm_100mbs apcs no super 35_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Chris Lemanz", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "iowa 10mm", "camera_setting": "100mbs apcs no super 35", "calib_dimension": { diff --git a/Sony/Sony_a6300_kit 16-50_16mm_1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a6300_kit 16-50_16mm_1080p_16by9_1920x1080-100.00fps.json index ccf9890d..94a8845c 100644 --- a/Sony/Sony_a6300_kit 16-50_16mm_1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a6300_kit 16-50_16mm_1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "HD 100fps", "calibrated_by": "niksun", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "kit 16-50", "camera_setting": "16mm", "calib_dimension": { diff --git a/Sony/Sony_a6300_rockstar 10MM F8__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6300_rockstar 10MM F8__4k_16by9_3840x2160-29.97fps.json index ed6d6699..8d56d2f4 100644 --- a/Sony/Sony_a6300_rockstar 10MM F8__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6300_rockstar 10MM F8__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "午夜", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "rockstar 10MM F8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_sigem-501.4__1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a6300_sigem-501.4__1080p_16by9_1920x1080-100.00fps.json index 64074ea9..7d0b5c32 100644 --- a/Sony/Sony_a6300_sigem-501.4__1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a6300_sigem-501.4__1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "cqwsllf", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "sigem-50/1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_sigem501.4__1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a6300_sigem501.4__1080p_16by9_1920x1080-100.00fps.json index b758cb13..48ceb845 100644 --- a/Sony/Sony_a6300_sigem501.4__1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a6300_sigem501.4__1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "cqwsllf", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "sigem50/1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_sigma 30 f1.4_30mm_1080p_16by9_1920x1080-119.88fps.json b/Sony/Sony_a6300_sigma 30 f1.4_30mm_1080p_16by9_1920x1080-119.88fps.json index f5480849..07a86be8 100644 --- a/Sony/Sony_a6300_sigma 30 f1.4_30mm_1080p_16by9_1920x1080-119.88fps.json +++ b/Sony/Sony_a6300_sigma 30 f1.4_30mm_1080p_16by9_1920x1080-119.88fps.json @@ -3,7 +3,7 @@ "note": "30mm", "calibrated_by": "SepThang", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "sigma 30 f1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_sigma 30mm F1.4__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6300_sigma 30mm F1.4__1080p_16by9_1920x1080-50.00fps.json index b49e43ba..674134b9 100644 --- a/Sony/Sony_a6300_sigma 30mm F1.4__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6300_sigma 30mm F1.4__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "admin", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "sigma 30mm F1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_sony 35mm__1080p_16by9_1920x1080-23.98fps.json b/Sony/Sony_a6300_sony 35mm__1080p_16by9_1920x1080-23.98fps.json index 505293ea..86b9ff28 100644 --- a/Sony/Sony_a6300_sony 35mm__1080p_16by9_1920x1080-23.98fps.json +++ b/Sony/Sony_a6300_sony 35mm__1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Samu", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "sony 35mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_sony E 16-50mm f3.5-5.6 OSS PZ_super35mm_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6300_sony E 16-50mm f3.5-5.6 OSS PZ_super35mm_4k_16by9_3840x2160-23.98fps.json index caed3e05..f1165f6c 100644 --- a/Sony/Sony_a6300_sony E 16-50mm f3.5-5.6 OSS PZ_super35mm_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6300_sony E 16-50mm f3.5-5.6 OSS PZ_super35mm_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "DirectX Ben", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "sony E 16-50mm f/3.5-5.6 OSS PZ", "camera_setting": "super35mm", "calib_dimension": { diff --git a/Sony/Sony_a6300_tamron 17-70__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6300_tamron 17-70__4k_16by9_3840x2160-23.98fps.json index aa8168b8..608a1dc6 100644 --- a/Sony/Sony_a6300_tamron 17-70__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6300_tamron 17-70__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "zheng deng", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "tamron 17-70", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6300_yongnuo 50mm f1.8_1500_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6300_yongnuo 50mm f1.8_1500_1080p_16by9_1920x1080-59.94fps.json index 77d9a965..e325d2ba 100644 --- a/Sony/Sony_a6300_yongnuo 50mm f1.8_1500_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6300_yongnuo 50mm f1.8_1500_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "八月未央", "camera_brand": "Sony", - "camera_model": "a6300", + "camera_model": "Alpha 6300", "lens_model": "yongnuo 50mm f1.8", "camera_setting": "1/500", "calib_dimension": { diff --git a/Sony/Sony_a6400_ 20mm F2.8__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_ 20mm F2.8__4k_16by9_3840x2160-29.97fps.json index 20194903..8b2cf8a8 100644 --- a/Sony/Sony_a6400_ 20mm F2.8__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_ 20mm F2.8__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "NINGMEI", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "唯卓仕 20mm F2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_ 56mm F1.7_0.95793_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_ 56mm F1.7_0.95793_4k_16by9_3840x2160-29.97fps.json index 8f65fd1f..bd7ad731 100644 --- a/Sony/Sony_a6400_ 56mm F1.7_0.95793_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_ 56mm F1.7_0.95793_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "0.95793", "calibrated_by": "NINGMEI", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "唯卓仕 56mm F1.7", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_10-20 F4 G_10mm_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_10-20 F4 G_10mm_4k_16by9_3840x2160-29.97fps.json index f92c75c9..28fe7523 100644 --- a/Sony/Sony_a6400_10-20 F4 G_10mm_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_10-20 F4 G_10mm_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "WE4KON LIU", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "10-20 F4 G", "camera_setting": "10mm", "calib_dimension": { diff --git a/Sony/Sony_a6400_11-20 11 4k__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_11-20 11 4k__4k_16by9_3840x2160-29.97fps.json index f21a19ef..22f60679 100644 --- a/Sony/Sony_a6400_11-20 11 4k__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_11-20 11 4k__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "11-20 11 4k", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_11-20 16mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_11-20 16mm__4k_16by9_3840x2160-25.00fps.json index cbc298b4..123f2d04 100644 --- a/Sony/Sony_a6400_11-20 16mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_11-20 16mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "自测腾龙11-20 16mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_11-20 2.8__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6400_11-20 2.8__1080p_16by9_1920x1080-50.00fps.json index 8a57062c..e628607a 100644 --- a/Sony/Sony_a6400_11-20 2.8__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6400_11-20 2.8__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "腾龙11-20 2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_11-20__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_11-20__4k_16by9_3840x2160-25.00fps.json index 49f3fb47..53eb43b1 100644 --- a/Sony/Sony_a6400_11-20__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_11-20__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "腾龙11-20", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_11mm__4k_16by9_3840x2160-29.97fps - admin - 2.json b/Sony/Sony_a6400_11mm__4k_16by9_3840x2160-29.97fps - admin - 2.json index b9934168..05a04fa2 100644 --- a/Sony/Sony_a6400_11mm__4k_16by9_3840x2160-29.97fps - admin - 2.json +++ b/Sony/Sony_a6400_11mm__4k_16by9_3840x2160-29.97fps - admin - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "admin", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "11mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_11mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_11mm__4k_16by9_3840x2160-29.97fps.json index 8e1cd443..e6eab29d 100644 --- a/Sony/Sony_a6400_11mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_11mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "admin", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "11mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_16-50GMaster(16mm)__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_16-50GMaster(16mm)__4k_16by9_3840x2160-25.00fps.json index bb1b9de6..facc5eec 100644 --- a/Sony/Sony_a6400_16-50GMaster(16mm)__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_16-50GMaster(16mm)__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "赖雨丹", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "16-50GMaster(16mm端)", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_16-50_16mm_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6400_16-50_16mm_1080p_16by9_1920x1080-59.94fps.json index 14a76c2f..f3544ea1 100644 --- a/Sony/Sony_a6400_16-50_16mm_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6400_16-50_16mm_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Skull Drones", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "16-50", "camera_setting": "16mm", "calib_dimension": { diff --git a/Sony/Sony_a6400_16-50_25_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_16-50_25_4k_16by9_3840x2160-25.00fps.json index af9d3167..86d6d522 100644 --- a/Sony/Sony_a6400_16-50_25_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_16-50_25_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Asus", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "16-50", "camera_setting": "25", "calib_dimension": { diff --git a/Sony/Sony_a6400_16-50__1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a6400_16-50__1080p_16by9_1920x1080-100.00fps.json index fc97b67e..955f8929 100644 --- a/Sony/Sony_a6400_16-50__1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a6400_16-50__1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jiayu Huang", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "16-50", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_16-50__1080p_16by9_1920x1080-119.88fps.json b/Sony/Sony_a6400_16-50__1080p_16by9_1920x1080-119.88fps.json index 204bd835..e4f19694 100644 --- a/Sony/Sony_a6400_16-50__1080p_16by9_1920x1080-119.88fps.json +++ b/Sony/Sony_a6400_16-50__1080p_16by9_1920x1080-119.88fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "mong", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "16-50", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_16-50mm__4k_16by9_3840x2160-25.00fps (2).json b/Sony/Sony_a6400_16-50mm__4k_16by9_3840x2160-25.00fps (2).json index 4d3780f7..2f199de9 100644 --- a/Sony/Sony_a6400_16-50mm__4k_16by9_3840x2160-25.00fps (2).json +++ b/Sony/Sony_a6400_16-50mm__4k_16by9_3840x2160-25.00fps (2).json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Malav Shah", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "16-50mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_16-50mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_16-50mm__4k_16by9_3840x2160-25.00fps.json index f1614291..ce495508 100644 --- a/Sony/Sony_a6400_16-50mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_16-50mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Georges Fursin", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "16-50mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_16-50mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_16-50mm__4k_16by9_3840x2160-29.97fps.json index dbc9688b..2b89a855 100644 --- a/Sony/Sony_a6400_16-50mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_16-50mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Erik Quintero", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "16-50mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_16-50mmm_calibracion 10_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_16-50mmm_calibracion 10_4k_16by9_3840x2160-29.97fps.json index a6a120de..fe425727 100644 --- a/Sony/Sony_a6400_16-50mmm_calibracion 10_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_16-50mmm_calibracion 10_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "calibracion 10", "calibrated_by": "Erik Quintero", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "16-50mmm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_16-70__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_16-70__4k_16by9_3840x2160-25.00fps.json index 37d612ba..61b1162b 100644 --- a/Sony/Sony_a6400_16-70__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_16-70__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jason Ghisoni", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "16-70", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_17-70 17mm 4k__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_17-70 17mm 4k__4k_16by9_3840x2160-25.00fps.json index 453bd32f..eea27245 100644 --- a/Sony/Sony_a6400_17-70 17mm 4k__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_17-70 17mm 4k__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "自测腾龙17-70 17mm 4k", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_17-70 2.8__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6400_17-70 2.8__1080p_16by9_1920x1080-50.00fps.json index f2bdb183..1a3352aa 100644 --- a/Sony/Sony_a6400_17-70 2.8__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6400_17-70 2.8__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "腾龙17-70 2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_17-70 35__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_17-70 35__4k_16by9_3840x2160-29.97fps.json index 51008998..2c7ad37a 100644 --- a/Sony/Sony_a6400_17-70 35__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_17-70 35__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "17-70 35", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_17-70 35mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_17-70 35mm__4k_16by9_3840x2160-25.00fps.json index 80647612..4758ca92 100644 --- a/Sony/Sony_a6400_17-70 35mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_17-70 35mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "腾龙17-70 35mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_17-70__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6400_17-70__1080p_16by9_1920x1080-50.00fps.json index 7159609d..b66e937f 100644 --- a/Sony/Sony_a6400_17-70__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6400_17-70__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "腾龙17-70", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_1770 2.8 17_25_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6400_1770 2.8 17_25_4k_16by9_3840x2160-23.98fps.json index 7cd6731d..07cbf9b9 100644 --- a/Sony/Sony_a6400_1770 2.8 17_25_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6400_1770 2.8 17_25_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Hu Guoxin", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "1770 2.8 17", "camera_setting": "25", "calib_dimension": { diff --git a/Sony/Sony_a6400_1770 f2.8 at 17_25fps_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6400_1770 f2.8 at 17_25fps_4k_16by9_3840x2160-23.98fps.json index e82e3945..74c23876 100644 --- a/Sony/Sony_a6400_1770 f2.8 at 17_25fps_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6400_1770 f2.8 at 17_25fps_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Hu Guoxin", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "1770 f2.8 at 17", "camera_setting": "25fps", "calib_dimension": { diff --git a/Sony/Sony_a6400_18-105 F4__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_18-105 F4__4k_16by9_3840x2160-29.97fps.json index d5d77546..3fc8d56f 100644 --- a/Sony/Sony_a6400_18-105 F4__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_18-105 F4__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Sajid Nadaf", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "18-105 F4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_18-105 g_super 35mm_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6400_18-105 g_super 35mm_4k_16by9_3840x2160-23.98fps.json index dc901054..f61b6d4c 100644 --- a/Sony/Sony_a6400_18-105 g_super 35mm_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6400_18-105 g_super 35mm_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "김석원", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "18-105 g", "camera_setting": "super 35mm", "calib_dimension": { diff --git a/Sony/Sony_a6400_18-105mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_18-105mm__4k_16by9_3840x2160-25.00fps.json index b1d63fcc..d864dbb7 100644 --- a/Sony/Sony_a6400_18-105mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_18-105mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Cristina", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "18-105mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_18-50 f1_2.8s__1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a6400_18-50 f1_2.8s__1080p_16by9_1920x1080-100.00fps.json index 0ce2e7b3..b0ce0826 100644 --- a/Sony/Sony_a6400_18-50 f1_2.8s__1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a6400_18-50 f1_2.8s__1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "王闯", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "18-50 f1:2.8s", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_23 1.4__1080p_16by9_1920x1080-50.00fps - Administrator.json b/Sony/Sony_a6400_23 1.4__1080p_16by9_1920x1080-50.00fps - Administrator.json index 1946660f..c5f9cc0b 100644 --- a/Sony/Sony_a6400_23 1.4__1080p_16by9_1920x1080-50.00fps - Administrator.json +++ b/Sony/Sony_a6400_23 1.4__1080p_16by9_1920x1080-50.00fps - Administrator.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "唯卓士23 1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_23 1.4__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6400_23 1.4__1080p_16by9_1920x1080-50.00fps.json index 48706a7e..c6640fc7 100644 --- a/Sony/Sony_a6400_23 1.4__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6400_23 1.4__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "唯卓士23 1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_23e1.4__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_23e1.4__4k_16by9_3840x2160-25.00fps.json index 96c284c6..8f56d224 100644 --- a/Sony/Sony_a6400_23e1.4__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_23e1.4__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Maelsea", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "唯卓仕23e1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_25 F 1.7__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_25 F 1.7__4k_16by9_3840x2160-25.00fps.json index 9b4ad1df..3e096b68 100644 --- a/Sony/Sony_a6400_25 F 1.7__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_25 F 1.7__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "LAOMAJUHAOQI", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "卫斯理25 F 1.7", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_35__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_35__4k_16by9_3840x2160-25.00fps.json index 3dd2acfd..4d648386 100644 --- a/Sony/Sony_a6400_35__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_35__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "龙有笛", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "35", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_35mm F1.8 OSS__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6400_35mm F1.8 OSS__1080p_16by9_1920x1080-59.94fps.json index 288a391a..54be040c 100644 --- a/Sony/Sony_a6400_35mm F1.8 OSS__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6400_35mm F1.8 OSS__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Leo", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "35mm F1.8 OSS", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_416-70__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6400_416-70__1080p_16by9_1920x1080-50.00fps.json index 253660f8..152acc3f 100644 --- a/Sony/Sony_a6400_416-70__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6400_416-70__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "蜗牛", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "4/16-70", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_50__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_50__4k_16by9_3840x2160-25.00fps.json index ce4eacaf..abcd6a0e 100644 --- a/Sony/Sony_a6400_50__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_50__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "vollen", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "50", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_55-210__720p_16by9_1280x720-25.00fps.json b/Sony/Sony_a6400_55-210__720p_16by9_1280x720-25.00fps.json index 5566efc1..a0a4cdcd 100644 --- a/Sony/Sony_a6400_55-210__720p_16by9_1280x720-25.00fps.json +++ b/Sony/Sony_a6400_55-210__720p_16by9_1280x720-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "haohan fang", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "55-210", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_56 1.4__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6400_56 1.4__1080p_16by9_1920x1080-50.00fps.json index 73e7e6bd..f1fabfbe 100644 --- a/Sony/Sony_a6400_56 1.4__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6400_56 1.4__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "适马56 1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_56__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6400_56__1080p_16by9_1920x1080-50.00fps.json index 756f49fb..29689650 100644 --- a/Sony/Sony_a6400_56__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6400_56__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "适马56", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_751.2__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6400_751.2__1080p_16by9_1920x1080-50.00fps.json index ede40ff2..f4b7dae7 100644 --- a/Sony/Sony_a6400_751.2__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6400_751.2__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "赵金辉", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "唯卓士751.2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_7A 7.5mm Fisheye__4k_16by9_3840x2160-0.00fps.json b/Sony/Sony_a6400_7A 7.5mm Fisheye__4k_16by9_3840x2160-0.00fps.json index afdcb58a..253e4092 100644 --- a/Sony/Sony_a6400_7A 7.5mm Fisheye__4k_16by9_3840x2160-0.00fps.json +++ b/Sony/Sony_a6400_7A 7.5mm Fisheye__4k_16by9_3840x2160-0.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Gonges", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "7A 7.5mm Fisheye", "camera_setting": "", "calibrator_version": "0.2.1-alpha", diff --git a/Sony/Sony_a6400_7Artisans 50mm f0.95 Sony E-Mount__1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a6400_7Artisans 50mm f0.95 Sony E-Mount__1080p_16by9_1920x1080-25.00fps.json index 41239aeb..58e6dfaf 100644 --- a/Sony/Sony_a6400_7Artisans 50mm f0.95 Sony E-Mount__1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a6400_7Artisans 50mm f0.95 Sony E-Mount__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eddy Drouet", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "7Artisans 50mm f0.95 Sony E-Mount", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_7artisans 7.5mm f2.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_7artisans 7.5mm f2.8__4k_16by9_3840x2160-25.00fps.json index 1bfee9e2..5a962d79 100644 --- a/Sony/Sony_a6400_7artisans 7.5mm f2.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_7artisans 7.5mm f2.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Alexprofpv", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "7artisans 7.5mm f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_7artisans 7.5mm__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6400_7artisans 7.5mm__1080p_16by9_1920x1080-50.00fps.json index 0cac9143..fa60f9f5 100644 --- a/Sony/Sony_a6400_7artisans 7.5mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6400_7artisans 7.5mm__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Schoon, Marcel", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "7artisans 7.5mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_90mmf2.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_90mmf2.8__4k_16by9_3840x2160-25.00fps.json index 61ab00d3..20cca8bf 100644 --- a/Sony/Sony_a6400_90mmf2.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_90mmf2.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "陈涛", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "90mmf2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_E 18-135mm F3.5-5.6 OSS_18F3.5_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_E 18-135mm F3.5-5.6 OSS_18F3.5_4k_16by9_3840x2160-25.00fps.json index 51dc0aea..13132b68 100644 --- a/Sony/Sony_a6400_E 18-135mm F3.5-5.6 OSS_18F3.5_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_E 18-135mm F3.5-5.6 OSS_18F3.5_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Nijika Ijichi", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "E 18-135mm F3.5-5.6 OSS", "camera_setting": "18F3.5", "calib_dimension": { diff --git a/Sony/Sony_a6400_E 3.5-5.6pz 16-50 oss__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_E 3.5-5.6pz 16-50 oss__4k_16by9_3840x2160-29.97fps.json index 8b3df4c5..3268005a 100644 --- a/Sony/Sony_a6400_E 3.5-5.6pz 16-50 oss__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_E 3.5-5.6pz 16-50 oss__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "E 3.5-5.6/pz 16-50 oss", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_E16-50__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_E16-50__4k_16by9_3840x2160-29.97fps.json index 82b30db1..cdfc9f9e 100644 --- a/Sony/Sony_a6400_E16-50__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_E16-50__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "lenovo", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "E16-50", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_EF 24-70mm F2.8 GM__4k_16by9_3840x2160-0.00fps.json b/Sony/Sony_a6400_EF 24-70mm F2.8 GM__4k_16by9_3840x2160-0.00fps.json index ba4f962b..62fdea15 100644 --- a/Sony/Sony_a6400_EF 24-70mm F2.8 GM__4k_16by9_3840x2160-0.00fps.json +++ b/Sony/Sony_a6400_EF 24-70mm F2.8 GM__4k_16by9_3840x2160-0.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Gonges", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "EF 24-70mm F2.8 GM", "camera_setting": "", "calibrator_version": "0.2.1-alpha", diff --git a/Sony/Sony_a6400_FE50__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_FE50__4k_16by9_3840x2160-25.00fps.json index 07a009de..30aa3428 100644 --- a/Sony/Sony_a6400_FE50__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_FE50__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "流浪", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "永诺FE50", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Laowa 9mm F2.8 Zero-D_1250 Shutter Speed_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_Laowa 9mm F2.8 Zero-D_1250 Shutter Speed_4k_16by9_3840x2160-25.00fps.json index 5a59846a..f4a743e1 100644 --- a/Sony/Sony_a6400_Laowa 9mm F2.8 Zero-D_1250 Shutter Speed_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_Laowa 9mm F2.8 Zero-D_1250 Shutter Speed_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "1/250 Shutter Speed", "calibrated_by": "pixxelpusher", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Laowa 9mm F2.8 Zero-D", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Laowa 9mm f2.8 Zero-D__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6400_Laowa 9mm f2.8 Zero-D__1080p_16by9_1920x1080-50.00fps.json index 47957816..5bbe7bda 100644 --- a/Sony/Sony_a6400_Laowa 9mm f2.8 Zero-D__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6400_Laowa 9mm f2.8 Zero-D__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "pixxelpusher", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Laowa 9mm f/2.8 Zero-D", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Laowa S35 7.5mm T2.9__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_Laowa S35 7.5mm T2.9__4k_16by9_3840x2160-29.97fps.json index 725e2d1a..9bb1d163 100644 --- a/Sony/Sony_a6400_Laowa S35 7.5mm T2.9__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_Laowa S35 7.5mm T2.9__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "一秋SWAN FPV", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Laowa S35 7.5mm T2.9", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Lens kit 16mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_Lens kit 16mm__4k_16by9_3840x2160-29.97fps.json index f1efef8a..36f7a181 100644 --- a/Sony/Sony_a6400_Lens kit 16mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_Lens kit 16mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ricardo Gonzalez", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Lens kit 16mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_NikonAF-24mm_1200_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_NikonAF-24mm_1200_4k_16by9_3840x2160-29.97fps.json index fb7bc8f7..698fc8d2 100644 --- a/Sony/Sony_a6400_NikonAF-24mm_1200_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_NikonAF-24mm_1200_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Anthony Wong", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "NikonAF-24mm", "camera_setting": "1/200", "calib_dimension": { diff --git a/Sony/Sony_a6400_NikonAF-24mm__1080p_16by9_1920x1080-29.97fps.json b/Sony/Sony_a6400_NikonAF-24mm__1080p_16by9_1920x1080-29.97fps.json index 20c57f2f..1321377d 100644 --- a/Sony/Sony_a6400_NikonAF-24mm__1080p_16by9_1920x1080-29.97fps.json +++ b/Sony/Sony_a6400_NikonAF-24mm__1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Anthony Wong", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "NikonAF-24mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Rokinon 14mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6400_Rokinon 14mm__4k_16by9_3840x2160-23.98fps.json index 738eae8a..01d8ecc6 100644 --- a/Sony/Sony_a6400_Rokinon 14mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6400_Rokinon 14mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Sam Pfeiffer", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Rokinon 14mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_SEL1670z_16 mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_SEL1670z_16 mm_4k_16by9_3840x2160-25.00fps.json index 1502650e..f89e475a 100644 --- a/Sony/Sony_a6400_SEL1670z_16 mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_SEL1670z_16 mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "16 mm", "calibrated_by": "pigonthewind", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "SEL1670z", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_SEL1670z_35 mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_SEL1670z_35 mm_4k_16by9_3840x2160-25.00fps.json index 3b85ff45..66377b6c 100644 --- a/Sony/Sony_a6400_SEL1670z_35 mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_SEL1670z_35 mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "35 mm", "calibrated_by": "pigonthewind", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "SEL1670z", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_SEL18-200_18mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_SEL18-200_18mm_4k_16by9_3840x2160-25.00fps.json index cbdc1094..bf0855f3 100644 --- a/Sony/Sony_a6400_SEL18-200_18mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_SEL18-200_18mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Алексей Проняев", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "SEL18-200", "camera_setting": "18mm", "calib_dimension": { diff --git a/Sony/Sony_a6400_SEL35mm__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6400_SEL35mm__1080p_16by9_1920x1080-50.00fps.json index 3cf5065c..c1c938b9 100644 --- a/Sony/Sony_a6400_SEL35mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6400_SEL35mm__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Areng Arkad", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "SEL35mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_SELP1650 16mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_SELP1650 16mm__4k_16by9_3840x2160-29.97fps.json index db83d6a9..526bf581 100644 --- a/Sony/Sony_a6400_SELP1650 16mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_SELP1650 16mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Masahiro", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "SELP1650 16mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_SELP18105F4G_18mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_SELP18105F4G_18mm_4k_16by9_3840x2160-25.00fps.json index ad562b97..c2bf9c80 100644 --- a/Sony/Sony_a6400_SELP18105F4G_18mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_SELP18105F4G_18mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "18mm", "calibrated_by": "Victor Tong", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "SELP18105F4G", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_SIGMA 16mmF1.4 DC DN_-100MP_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_SIGMA 16mmF1.4 DC DN_-100MP_4k_16by9_3840x2160-25.00fps.json index 08152c00..e2becdc1 100644 --- a/Sony/Sony_a6400_SIGMA 16mmF1.4 DC DN_-100MP_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_SIGMA 16mmF1.4 DC DN_-100MP_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "zhou³", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "SIGMA 16mm/F1.4 DC DN", "camera_setting": "/-100M/P制", "calib_dimension": { diff --git a/Sony/Sony_a6400_SIGMA 16mmF1.4 DC DN_-50MP_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6400_SIGMA 16mmF1.4 DC DN_-50MP_1080p_16by9_1920x1080-50.00fps.json index 43d045fc..5ff19614 100644 --- a/Sony/Sony_a6400_SIGMA 16mmF1.4 DC DN_-50MP_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6400_SIGMA 16mmF1.4 DC DN_-50MP_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "zhou³", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "SIGMA 16mm/F1.4 DC DN", "camera_setting": "/-50M/P制", "calib_dimension": { diff --git a/Sony/Sony_a6400_SIGMA 16mmF1.4 DC DN_P-100M_1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a6400_SIGMA 16mmF1.4 DC DN_P-100M_1080p_16by9_1920x1080-100.00fps.json index b69aa0a4..a04c631b 100644 --- a/Sony/Sony_a6400_SIGMA 16mmF1.4 DC DN_P-100M_1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a6400_SIGMA 16mmF1.4 DC DN_P-100M_1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "zhou³", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "SIGMA 16mm/F1.4 DC DN", "camera_setting": "P/-100M", "calib_dimension": { diff --git a/Sony/Sony_a6400_SIGMA 56MM F1.4 DC DN__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6400_SIGMA 56MM F1.4 DC DN__4k_16by9_3840x2160-23.98fps.json index c68edf92..79ec1d70 100644 --- a/Sony/Sony_a6400_SIGMA 56MM F1.4 DC DN__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6400_SIGMA 56MM F1.4 DC DN__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "BC SUN", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "SIGMA 56MM F1.4 DC DN", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_SIGMA 56mm__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6400_SIGMA 56mm__1080p_16by9_1920x1080-59.94fps.json index 94418d32..66e092ae 100644 --- a/Sony/Sony_a6400_SIGMA 56mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6400_SIGMA 56mm__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "霍乐", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "SIGMA 56mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_SIGMA__1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a6400_SIGMA__1080p_16by9_1920x1080-100.00fps.json index 61c6815c..9f935522 100644 --- a/Sony/Sony_a6400_SIGMA__1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a6400_SIGMA__1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "TECAK", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "SIGMA", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_SONY 11mm F1.8_P 50M_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6400_SONY 11mm F1.8_P 50M_1080p_16by9_1920x1080-50.00fps.json index 958b1869..83fd0f8e 100644 --- a/Sony/Sony_a6400_SONY 11mm F1.8_P 50M_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6400_SONY 11mm F1.8_P 50M_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "小河", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "SONY 11mm F1.8", "camera_setting": "P 50M", "calib_dimension": { diff --git a/Sony/Sony_a6400_SONY SEL50F18F__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_SONY SEL50F18F__4k_16by9_3840x2160-25.00fps.json index 0be03b1b..e7a2983b 100644 --- a/Sony/Sony_a6400_SONY SEL50F18F__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_SONY SEL50F18F__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Laura Haustein", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "SONY SEL50F18F", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Samyang 12mm 2.0__1080p_16by9_1920x1080-23.98fps.json b/Sony/Sony_a6400_Samyang 12mm 2.0__1080p_16by9_1920x1080-23.98fps.json index e71b8465..e398bcdf 100644 --- a/Sony/Sony_a6400_Samyang 12mm 2.0__1080p_16by9_1920x1080-23.98fps.json +++ b/Sony/Sony_a6400_Samyang 12mm 2.0__1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "diego aguilar", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Samyang 12mm 2.0", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sigma 10-20__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6400_Sigma 10-20__4k_16by9_3840x2160-23.98fps.json index 4bff1640..5f5e51f9 100644 --- a/Sony/Sony_a6400_Sigma 10-20__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6400_Sigma 10-20__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Inmedia", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sigma 10-20", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sigma 16 mm contemporane_25fps_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6400_Sigma 16 mm contemporane_25fps_4k_16by9_3840x2160-23.98fps.json index cb8fe88e..7a112159 100644 --- a/Sony/Sony_a6400_Sigma 16 mm contemporane_25fps_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6400_Sigma 16 mm contemporane_25fps_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Hely Costa Aguiar", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sigma 16 mm contemporane", "camera_setting": "25fps", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sigma 16 mm f1.4 DC DN Sony E_px_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_Sigma 16 mm f1.4 DC DN Sony E_px_4k_16by9_3840x2160-25.00fps.json index 66a82b66..255af427 100644 --- a/Sony/Sony_a6400_Sigma 16 mm f1.4 DC DN Sony E_px_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_Sigma 16 mm f1.4 DC DN Sony E_px_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "100mb/sec_without_rolling_shutter", "calibrated_by": "udmurd", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sigma 16 mm f/1.4 DC DN Sony E", "camera_setting": "px", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sigma 16mm Contemporane_Amplo_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_Sigma 16mm Contemporane_Amplo_4k_16by9_3840x2160-29.97fps.json index cdfdd608..6823f17f 100644 --- a/Sony/Sony_a6400_Sigma 16mm Contemporane_Amplo_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_Sigma 16mm Contemporane_Amplo_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Hely Costa Aguiar", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sigma 16mm Contemporane", "camera_setting": "Amplo", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sigma 16mm F1.4_APS-C_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_Sigma 16mm F1.4_APS-C_4k_16by9_3840x2160-25.00fps.json index c2b64d90..09ec48fc 100644 --- a/Sony/Sony_a6400_Sigma 16mm F1.4_APS-C_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_Sigma 16mm F1.4_APS-C_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "APS-C", "calibrated_by": "Andris", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sigma 16mm F1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sigma 16mm F1.4__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_Sigma 16mm F1.4__4k_16by9_3840x2160-25.00fps.json index ba9e71d1..cf4cdf84 100644 --- a/Sony/Sony_a6400_Sigma 16mm F1.4__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_Sigma 16mm F1.4__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Gianluca Pochiero", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sigma 16mm F1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sigma 16mm f1.4 DC DN_1200 f1.4 ISO800_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a6400_Sigma 16mm f1.4 DC DN_1200 f1.4 ISO800_1080p_16by9_1920x1080-25.00fps.json index 391754bb..fb61aa50 100644 --- a/Sony/Sony_a6400_Sigma 16mm f1.4 DC DN_1200 f1.4 ISO800_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a6400_Sigma 16mm f1.4 DC DN_1200 f1.4 ISO800_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eddy Drouet", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sigma 16mm f1.4 DC DN", "camera_setting": "1/200 f1.4 ISO800", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sigma 16mm f1.4__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6400_Sigma 16mm f1.4__4k_16by9_3840x2160-23.98fps.json index e16806db..7c03caaf 100644 --- a/Sony/Sony_a6400_Sigma 16mm f1.4__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6400_Sigma 16mm f1.4__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Lance Lao", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sigma 16mm f1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sigma 16mm f1.4__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_Sigma 16mm f1.4__4k_16by9_3840x2160-29.97fps.json index 19b47efb..9ecab66f 100644 --- a/Sony/Sony_a6400_Sigma 16mm f1.4__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_Sigma 16mm f1.4__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Lance Lao", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sigma 16mm f1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sigma 30 mm F1.4_50 Mb_1080p_16by9_1920x1080-29.97fps.json b/Sony/Sony_a6400_Sigma 30 mm F1.4_50 Mb_1080p_16by9_1920x1080-29.97fps.json index f328f00f..dc66477b 100644 --- a/Sony/Sony_a6400_Sigma 30 mm F1.4_50 Mb_1080p_16by9_1920x1080-29.97fps.json +++ b/Sony/Sony_a6400_Sigma 30 mm F1.4_50 Mb_1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Juan Ruiz", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sigma 30 mm F1.4", "camera_setting": "50 Mb", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sigma 30mm F1.4 DC DN__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6400_Sigma 30mm F1.4 DC DN__1080p_16by9_1920x1080-50.00fps.json index 292f094b..4929b828 100644 --- a/Sony/Sony_a6400_Sigma 30mm F1.4 DC DN__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6400_Sigma 30mm F1.4 DC DN__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jashen Wu", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sigma 30mm F1.4 DC DN", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sigma 30mm F1.4 DC DN__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6400_Sigma 30mm F1.4 DC DN__4k_16by9_3840x2160-23.98fps.json index e16299b7..7ef13597 100644 --- a/Sony/Sony_a6400_Sigma 30mm F1.4 DC DN__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6400_Sigma 30mm F1.4 DC DN__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sigma 30mm F1.4 DC DN", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sigma 30mm F1.4__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_Sigma 30mm F1.4__4k_16by9_3840x2160-29.97fps.json index ea940358..7f0be4bf 100644 --- a/Sony/Sony_a6400_Sigma 30mm F1.4__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_Sigma 30mm F1.4__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Alan Gabriel", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sigma 30mm F1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sigma 30mm f1.4 dc dn_hlg2_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_Sigma 30mm f1.4 dc dn_hlg2_4k_16by9_3840x2160-29.97fps.json index b34e44c6..8993892d 100644 --- a/Sony/Sony_a6400_Sigma 30mm f1.4 dc dn_hlg2_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_Sigma 30mm f1.4 dc dn_hlg2_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "4k 30fps", "calibrated_by": "Ahsan Habib anik", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sigma 30mm f1.4 dc dn", "camera_setting": "hlg2", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sigma 56 1.4 art_100M_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6400_Sigma 56 1.4 art_100M_4k_16by9_3840x2160-23.98fps.json index b5b81026..06c2caa1 100644 --- a/Sony/Sony_a6400_Sigma 56 1.4 art_100M_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6400_Sigma 56 1.4 art_100M_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "1/250", "calibrated_by": "JY-Lee", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sigma 56 1.4 art", "camera_setting": "100M", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sigma16 1.4__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6400_Sigma16 1.4__1080p_16by9_1920x1080-50.00fps.json index c1c372d0..af380a69 100644 --- a/Sony/Sony_a6400_Sigma16 1.4__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6400_Sigma16 1.4__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "文", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sigma16 1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sigma16mm__720p_16by9_1280x720-25.00fps.json b/Sony/Sony_a6400_Sigma16mm__720p_16by9_1280x720-25.00fps.json index 2d9653da..56b0c789 100644 --- a/Sony/Sony_a6400_Sigma16mm__720p_16by9_1280x720-25.00fps.json +++ b/Sony/Sony_a6400_Sigma16mm__720p_16by9_1280x720-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "mac", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sigma16mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sigma30 1.4__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_Sigma30 1.4__4k_16by9_3840x2160-29.97fps.json index 3e712fa3..131f500c 100644 --- a/Sony/Sony_a6400_Sigma30 1.4__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_Sigma30 1.4__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sigma30 1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sigma30mm__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6400_Sigma30mm__1080p_16by9_1920x1080-50.00fps.json index f5aa1e25..cceba2bb 100644 --- a/Sony/Sony_a6400_Sigma30mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6400_Sigma30mm__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "蓝色的", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sigma30mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sigma_16_mm_f1,4_DC_DN_px_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_Sigma_16_mm_f1,4_DC_DN_px_4k_16by9_3840x2160-25.00fps.json index a0a4ffb4..73cbdb4f 100644 --- a/Sony/Sony_a6400_Sigma_16_mm_f1,4_DC_DN_px_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_Sigma_16_mm_f1,4_DC_DN_px_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "rolling_shutter_36ms", "calibrated_by": "udmurd", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sigma_16_mm_f1,4_DC_DN", "camera_setting": "px", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sony 11mm f1.8__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6400_Sony 11mm f1.8__4k_16by9_3840x2160-23.98fps.json index 3ff1c15c..abb3ee08 100644 --- a/Sony/Sony_a6400_Sony 11mm f1.8__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6400_Sony 11mm f1.8__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Lance Lao", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sony 11mm f1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sony 11mm f1.8__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_Sony 11mm f1.8__4k_16by9_3840x2160-29.97fps.json index 7b2a0f51..9796ef4d 100644 --- a/Sony/Sony_a6400_Sony 11mm f1.8__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_Sony 11mm f1.8__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Lance Lao", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sony 11mm f1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sony 16-50 mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_Sony 16-50 mm__4k_16by9_3840x2160-25.00fps.json index 846675e3..12044c90 100644 --- a/Sony/Sony_a6400_Sony 16-50 mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_Sony 16-50 mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Malav Shah", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sony 16-50 mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sony 16-50__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_Sony 16-50__4k_16by9_3840x2160-25.00fps.json index 19b48d59..fb7d18f9 100644 --- a/Sony/Sony_a6400_Sony 16-50__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_Sony 16-50__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Thibaud Ky", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sony 16-50", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sony 16-50mm f3.5-5.6 Montura E__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6400_Sony 16-50mm f3.5-5.6 Montura E__1080p_16by9_1920x1080-59.94fps.json index b1ab3bd6..faea1f43 100644 --- a/Sony/Sony_a6400_Sony 16-50mm f3.5-5.6 Montura E__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6400_Sony 16-50mm f3.5-5.6 Montura E__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jeimy D. Patiño Mejía", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sony 16-50mm f/3.5-5.6 Montura E", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sony 16-55mm GM_at 16mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_Sony 16-55mm GM_at 16mm_4k_16by9_3840x2160-25.00fps.json index 8236ff52..2372eafb 100644 --- a/Sony/Sony_a6400_Sony 16-55mm GM_at 16mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_Sony 16-55mm GM_at 16mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "at 16mm", "calibrated_by": "kobe weyts", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sony 16-55mm GM", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sony 18-135mm__1080p_16by9_1920x1080-119.88fps.json b/Sony/Sony_a6400_Sony 18-135mm__1080p_16by9_1920x1080-119.88fps.json index 6e4262ea..cb30d2b5 100644 --- a/Sony/Sony_a6400_Sony 18-135mm__1080p_16by9_1920x1080-119.88fps.json +++ b/Sony/Sony_a6400_Sony 18-135mm__1080p_16by9_1920x1080-119.88fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "levi dixon", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sony 18-135mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sony 35mm f1.8 SEL35F18__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_Sony 35mm f1.8 SEL35F18__4k_16by9_3840x2160-25.00fps.json index f0b48b0f..4087c557 100644 --- a/Sony/Sony_a6400_Sony 35mm f1.8 SEL35F18__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_Sony 35mm f1.8 SEL35F18__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Tung Le", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sony 35mm f1.8 SEL35F18", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sony 50_M_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a6400_Sony 50_M_1080p_16by9_1920x1080-25.00fps.json index fd4787cd..d8319a71 100644 --- a/Sony/Sony_a6400_Sony 50_M_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a6400_Sony 50_M_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "50 mm, f1.8", "calibrated_by": "Marti Fischer", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sony 50", "camera_setting": "M", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sony E 16-50mm_16mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_Sony E 16-50mm_16mm_4k_16by9_3840x2160-25.00fps.json index ea46af65..bc2c23fa 100644 --- a/Sony/Sony_a6400_Sony E 16-50mm_16mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_Sony E 16-50mm_16mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "16mm", "calibrated_by": "Nathan", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sony E 16-50mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sony E 18-135mm F3.5-5.6 OSS__4k_16by9_3840x2160-23.98fps - Ement CZ - 2.json b/Sony/Sony_a6400_Sony E 18-135mm F3.5-5.6 OSS__4k_16by9_3840x2160-23.98fps - Ement CZ - 2.json index ba82c6d6..29bd9090 100644 --- a/Sony/Sony_a6400_Sony E 18-135mm F3.5-5.6 OSS__4k_16by9_3840x2160-23.98fps - Ement CZ - 2.json +++ b/Sony/Sony_a6400_Sony E 18-135mm F3.5-5.6 OSS__4k_16by9_3840x2160-23.98fps - Ement CZ - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ement CZ", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sony E 18-135mm F3.5-5.6 OSS", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sony E 18-135mm F3.5-5.6 OSS__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6400_Sony E 18-135mm F3.5-5.6 OSS__4k_16by9_3840x2160-23.98fps.json index 60e70b64..c3cd7709 100644 --- a/Sony/Sony_a6400_Sony E 18-135mm F3.5-5.6 OSS__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6400_Sony E 18-135mm F3.5-5.6 OSS__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ement CZ", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sony E 18-135mm F3.5-5.6 OSS", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sony E 35mm f1.8 OSS_1200 f1.4 ISO800_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a6400_Sony E 35mm f1.8 OSS_1200 f1.4 ISO800_1080p_16by9_1920x1080-25.00fps.json index aa96acda..5495cf46 100644 --- a/Sony/Sony_a6400_Sony E 35mm f1.8 OSS_1200 f1.4 ISO800_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a6400_Sony E 35mm f1.8 OSS_1200 f1.4 ISO800_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eddy Drouet", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sony E 35mm f1.8 OSS", "camera_setting": "1/200 f1.4 ISO800", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sony E1.811__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_Sony E1.811__4k_16by9_3840x2160-29.97fps.json index ee9a73e7..c4aee5cc 100644 --- a/Sony/Sony_a6400_Sony E1.811__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_Sony E1.811__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Christian Garbers", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sony E1.8/11", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sony FE 28MM F2__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6400_Sony FE 28MM F2__1080p_16by9_1920x1080-50.00fps.json index a6dbdf38..20ed70a2 100644 --- a/Sony/Sony_a6400_Sony FE 28MM F2__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6400_Sony FE 28MM F2__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "渺渺兮予怀", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sony FE 28MM F2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sony FE 50mm F1.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_Sony FE 50mm F1.8__4k_16by9_3840x2160-25.00fps.json index b6bbba08..5dca567b 100644 --- a/Sony/Sony_a6400_Sony FE 50mm F1.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_Sony FE 50mm F1.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Taruun R Jha", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sony FE 50mm F1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sony SEL18-200_18mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_Sony SEL18-200_18mm_4k_16by9_3840x2160-25.00fps.json index e3dd8a21..758081f1 100644 --- a/Sony/Sony_a6400_Sony SEL18-200_18mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_Sony SEL18-200_18mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Alexprofpv", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sony SEL18-200", "camera_setting": "18mm", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sony f3.5-5.6 16-50mm_16mm_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_Sony f3.5-5.6 16-50mm_16mm_4k_16by9_3840x2160-29.97fps.json index c7c4c4fb..3161f94f 100644 --- a/Sony/Sony_a6400_Sony f3.5-5.6 16-50mm_16mm_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_Sony f3.5-5.6 16-50mm_16mm_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "XAVC 4K 30p", "calibrated_by": "JaviSeed FPV", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sony f3.5-5.6 16-50mm", "camera_setting": "16mm", "calib_dimension": { diff --git a/Sony/Sony_a6400_Sony10-20G_10mm_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6400_Sony10-20G_10mm_1080p_16by9_1920x1080-59.94fps.json index 533b2aea..2a3c9452 100644 --- a/Sony/Sony_a6400_Sony10-20G_10mm_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6400_Sony10-20G_10mm_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "喵奴婢斯", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Sony10-20G", "camera_setting": "10mm焦段", "calib_dimension": { diff --git a/Sony/Sony_a6400_TAMRON 17-70mm F2.8__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6400_TAMRON 17-70mm F2.8__1080p_16by9_1920x1080-59.94fps.json index 46f255eb..1c428746 100644 --- a/Sony/Sony_a6400_TAMRON 17-70mm F2.8__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6400_TAMRON 17-70mm F2.8__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "TAMRON 17-70mm F/2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_TAMRON_18-300_18mm_-_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_TAMRON_18-300_18mm_-_4k_16by9_3840x2160-25.00fps.json index 0fe189f9..3bc81047 100644 --- a/Sony/Sony_a6400_TAMRON_18-300_18mm_-_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_TAMRON_18-300_18mm_-_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "jm weng", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "TAMRON_18-300_18mm", "camera_setting": "-", "calib_dimension": { diff --git a/Sony/Sony_a6400_TTArtisans_35mm_1080p_16by9_1920x1080-119.88fps.json b/Sony/Sony_a6400_TTArtisans_35mm_1080p_16by9_1920x1080-119.88fps.json index b978d2d8..4c9d4afc 100644 --- a/Sony/Sony_a6400_TTArtisans_35mm_1080p_16by9_1920x1080-119.88fps.json +++ b/Sony/Sony_a6400_TTArtisans_35mm_1080p_16by9_1920x1080-119.88fps.json @@ -3,7 +3,7 @@ "note": "35mm", "calibrated_by": "Nomar", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "TTArtisans", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Tamron 11-20_11mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_Tamron 11-20_11mm_4k_16by9_3840x2160-25.00fps.json index a739f871..60fa2010 100644 --- a/Sony/Sony_a6400_Tamron 11-20_11mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_Tamron 11-20_11mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "11mm", "calibrated_by": "Mike", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Tamron 11-20", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Tamron 17-70 2.8_17mm_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_Tamron 17-70 2.8_17mm_4k_16by9_3840x2160-29.97fps.json index 55692b8b..9f4ad4bf 100644 --- a/Sony/Sony_a6400_Tamron 17-70 2.8_17mm_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_Tamron 17-70 2.8_17mm_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Robin", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Tamron 17-70 2.8", "camera_setting": "17mm", "calib_dimension": { diff --git a/Sony/Sony_a6400_Tamron 17-7017__4k_16by9_3840x2160-25.00fps - 3.json b/Sony/Sony_a6400_Tamron 17-7017__4k_16by9_3840x2160-25.00fps - 3.json index 361c004d..2114b20c 100644 --- a/Sony/Sony_a6400_Tamron 17-7017__4k_16by9_3840x2160-25.00fps - 3.json +++ b/Sony/Sony_a6400_Tamron 17-7017__4k_16by9_3840x2160-25.00fps - 3.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "黄泽巍", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Tamron 17-70(17)", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Tamron 17-7017__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_Tamron 17-7017__4k_16by9_3840x2160-25.00fps.json index 67f674b6..bff13265 100644 --- a/Sony/Sony_a6400_Tamron 17-7017__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_Tamron 17-7017__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "黄泽巍", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Tamron 17-70(17)", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Tamron 17-70mm @17mm F2.8_@_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6400_Tamron 17-70mm @17mm F2.8_@_4k_16by9_3840x2160-23.98fps.json index e7d16b6d..04b05a4c 100644 --- a/Sony/Sony_a6400_Tamron 17-70mm @17mm F2.8_@_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6400_Tamron 17-70mm @17mm F2.8_@_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Willingsworth Pho", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Tamron 17-70mm @17mm F/2.8", "camera_setting": "@", "calib_dimension": { diff --git a/Sony/Sony_a6400_Tamron 17-70mm F2.8 @17mm_@_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6400_Tamron 17-70mm F2.8 @17mm_@_4k_16by9_3840x2160-23.98fps.json index ef2fef41..30816e1c 100644 --- a/Sony/Sony_a6400_Tamron 17-70mm F2.8 @17mm_@_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6400_Tamron 17-70mm F2.8 @17mm_@_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Willingsworth Pho", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Tamron 17-70mm F/2.8 @17mm", "camera_setting": "@", "calib_dimension": { diff --git a/Sony/Sony_a6400_Tamron 17-70mm F2.8 @17mm_Steady Shot OFF_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6400_Tamron 17-70mm F2.8 @17mm_Steady Shot OFF_4k_16by9_3840x2160-23.98fps.json index 9b933f36..4f90230f 100644 --- a/Sony/Sony_a6400_Tamron 17-70mm F2.8 @17mm_Steady Shot OFF_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6400_Tamron 17-70mm F2.8 @17mm_Steady Shot OFF_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "Steady Shot OFF", "calibrated_by": "Willingsworth Pho", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Tamron 17-70mm F/2.8 @17mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Tamron 1770_17mm_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6400_Tamron 1770_17mm_1080p_16by9_1920x1080-50.00fps.json index 3f5509b7..e1ed6eb5 100644 --- a/Sony/Sony_a6400_Tamron 1770_17mm_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6400_Tamron 1770_17mm_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "喵酱", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Tamron 1770", "camera_setting": "17mm", "calib_dimension": { diff --git a/Sony/Sony_a6400_Tamron17-70 2.8 35mm__1080p_16by9_1920x1080-29.97fps.json b/Sony/Sony_a6400_Tamron17-70 2.8 35mm__1080p_16by9_1920x1080-29.97fps.json index a311b5d9..9dc931c4 100644 --- a/Sony/Sony_a6400_Tamron17-70 2.8 35mm__1080p_16by9_1920x1080-29.97fps.json +++ b/Sony/Sony_a6400_Tamron17-70 2.8 35mm__1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Tamron17-70 2.8 35mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_VILTORX 20MM f2.8_0.777_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_VILTORX 20MM f2.8_0.777_4k_16by9_3840x2160-29.97fps.json index bc1b5e7b..bf8af399 100644 --- a/Sony/Sony_a6400_VILTORX 20MM f2.8_0.777_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_VILTORX 20MM f2.8_0.777_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "0.777", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "VILTORX 20MM f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_VILTROX 20MM F2.8_1.05198_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_VILTROX 20MM F2.8_1.05198_4k_16by9_3840x2160-29.97fps.json index 122f73ba..cd82b833 100644 --- a/Sony/Sony_a6400_VILTROX 20MM F2.8_1.05198_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_VILTROX 20MM F2.8_1.05198_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "误差1.05198", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "VILTROX 20MM F2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_VILTROX 20MM F2.8_0.8778_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_VILTROX 20MM F2.8_0.8778_4k_16by9_3840x2160-29.97fps.json index 05346d67..1f77276c 100644 --- a/Sony/Sony_a6400_VILTROX 20MM F2.8_0.8778_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_VILTROX 20MM F2.8_0.8778_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "0.8778", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "VILTROX 20MM F2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_VILTROX 20MM F2.8_1.03735_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_VILTROX 20MM F2.8_1.03735_4k_16by9_3840x2160-29.97fps.json index e009e3bc..30b700da 100644 --- a/Sony/Sony_a6400_VILTROX 20MM F2.8_1.03735_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_VILTROX 20MM F2.8_1.03735_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "误差1.03735", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "VILTROX 20MM F2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_VILTROX 27F1.2__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_VILTROX 27F1.2__4k_16by9_3840x2160-25.00fps.json index e9aedc36..3872e516 100644 --- a/Sony/Sony_a6400_VILTROX 27F1.2__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_VILTROX 27F1.2__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "正山藤", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "VILTROX 27F1.2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_VILTROX 27mmf1.2__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_VILTROX 27mmf1.2__4k_16by9_3840x2160-29.97fps.json index 019f1590..32c6c882 100644 --- a/Sony/Sony_a6400_VILTROX 27mmf1.2__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_VILTROX 27mmf1.2__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ASUS", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "VILTROX 27mmf1.2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_VTX56mm_0.57851_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_VTX56mm_0.57851_4k_16by9_3840x2160-29.97fps.json index 88f6d1b7..614c81b9 100644 --- a/Sony/Sony_a6400_VTX56mm_0.57851_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_VTX56mm_0.57851_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "0.57851", "calibrated_by": "NINGMEI", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "VTX56mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_VTX56mm_0.68737_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_VTX56mm_0.68737_4k_16by9_3840x2160-29.97fps.json index bf97c473..62bd94d7 100644 --- a/Sony/Sony_a6400_VTX56mm_0.68737_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_VTX56mm_0.68737_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "0.68737", "calibrated_by": "NINGMEI", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "VTX56mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Viltrox 56mm 1.4__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6400_Viltrox 56mm 1.4__1080p_16by9_1920x1080-59.94fps.json index 1091ebef..f412a630 100644 --- a/Sony/Sony_a6400_Viltrox 56mm 1.4__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6400_Viltrox 56mm 1.4__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ARB Films", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Viltrox 56mm 1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_Ynlens YN50mm F1.8S DA DSM__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6400_Ynlens YN50mm F1.8S DA DSM__1080p_16by9_1920x1080-59.94fps.json index acac8d62..36305db8 100644 --- a/Sony/Sony_a6400_Ynlens YN50mm F1.8S DA DSM__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6400_Ynlens YN50mm F1.8S DA DSM__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "Ynlens YN50mm F1.8S DA DSM", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400__24 mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400__24 mm_4k_16by9_3840x2160-25.00fps.json index b6352ff4..531d1c68 100644 --- a/Sony/Sony_a6400__24 mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400__24 mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "24 mm", "calibrated_by": "pigonthewind", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400___1080p_16by9_1920x1080-119.88fps.json b/Sony/Sony_a6400___1080p_16by9_1920x1080-119.88fps.json index 8d356dc2..33fc750b 100644 --- a/Sony/Sony_a6400___1080p_16by9_1920x1080-119.88fps.json +++ b/Sony/Sony_a6400___1080p_16by9_1920x1080-119.88fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "51929", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400___4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400___4k_16by9_3840x2160-25.00fps.json index 0420bff8..cc2809c6 100644 --- a/Sony/Sony_a6400___4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400___4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "柳笛", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_e24__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_e24__4k_16by9_3840x2160-25.00fps.json index 1de17937..e2b390be 100644 --- a/Sony/Sony_a6400_e24__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_e24__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "余怀斌", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "e24", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_shima 50_HD_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6400_shima 50_HD_1080p_16by9_1920x1080-50.00fps.json index 7ca3a439..9f8ef5f0 100644 --- a/Sony/Sony_a6400_shima 50_HD_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6400_shima 50_HD_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "50mm", "calibrated_by": "Leijiahui", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "shima 50", "camera_setting": "HD", "calib_dimension": { diff --git a/Sony/Sony_a6400_sigma 10-20__4k_16by9_3840x2160-23.98fps - Inmedia - 2.json b/Sony/Sony_a6400_sigma 10-20__4k_16by9_3840x2160-23.98fps - Inmedia - 2.json index cce01daf..9e6457e8 100644 --- a/Sony/Sony_a6400_sigma 10-20__4k_16by9_3840x2160-23.98fps - Inmedia - 2.json +++ b/Sony/Sony_a6400_sigma 10-20__4k_16by9_3840x2160-23.98fps - Inmedia - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Inmedia", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "sigma 10-20", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_sigma 18-50mm_60m_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_sigma 18-50mm_60m_4k_16by9_3840x2160-25.00fps.json index 0d6dbfd0..08023ec5 100644 --- a/Sony/Sony_a6400_sigma 18-50mm_60m_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_sigma 18-50mm_60m_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "小河", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "sigma 18-50mm", "camera_setting": "60m", "calib_dimension": { diff --git a/Sony/Sony_a6400_sigma 30 F1.4_0.56624_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_sigma 30 F1.4_0.56624_4k_16by9_3840x2160-29.97fps.json index aeb3495e..d6935171 100644 --- a/Sony/Sony_a6400_sigma 30 F1.4_0.56624_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_sigma 30 F1.4_0.56624_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "0.56624", "calibrated_by": "NINGMEI", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "sigma 30 F1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_sigma 30mm F1.4_0.62659_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_sigma 30mm F1.4_0.62659_4k_16by9_3840x2160-29.97fps.json index d2518303..a5ba588e 100644 --- a/Sony/Sony_a6400_sigma 30mm F1.4_0.62659_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_sigma 30mm F1.4_0.62659_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "0.62659", "calibrated_by": "NINGMEI", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "sigma 30mm F1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_sigma 30mm__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6400_sigma 30mm__1080p_16by9_1920x1080-59.94fps.json index ec0e90a0..eb22c033 100644 --- a/Sony/Sony_a6400_sigma 30mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6400_sigma 30mm__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "sigma 30mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_sigma 56 1.4 art__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6400_sigma 56 1.4 art__4k_16by9_3840x2160-23.98fps.json index 3ff75a66..f39f753f 100644 --- a/Sony/Sony_a6400_sigma 56 1.4 art__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6400_sigma 56 1.4 art__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "JY-Lee", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "sigma 56 1.4 art", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_sigma 56 mm 1.4f_1.4f_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_sigma 56 mm 1.4f_1.4f_4k_16by9_3840x2160-25.00fps.json index 1261461b..9db83858 100644 --- a/Sony/Sony_a6400_sigma 56 mm 1.4f_1.4f_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_sigma 56 mm 1.4f_1.4f_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jakub Bociąga", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "sigma 56 mm 1.4f", "camera_setting": "1.4f", "calib_dimension": { diff --git a/Sony/Sony_a6400_sigma c 16mm dn_XAVC super 35mm_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6400_sigma c 16mm dn_XAVC super 35mm_4k_16by9_3840x2160-23.98fps.json index 66929cdf..93a9738f 100644 --- a/Sony/Sony_a6400_sigma c 16mm dn_XAVC super 35mm_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6400_sigma c 16mm dn_XAVC super 35mm_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "김석원", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "sigma c 16mm dn", "camera_setting": "XAVC super 35mm", "calib_dimension": { diff --git a/Sony/Sony_a6400_sigma16-1.4_50_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6400_sigma16-1.4_50_1080p_16by9_1920x1080-50.00fps.json index 02ffcd34..cd08ab55 100644 --- a/Sony/Sony_a6400_sigma16-1.4_50_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6400_sigma16-1.4_50_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "sigma16-1.4", "camera_setting": "50", "calib_dimension": { diff --git a/Sony/Sony_a6400_sigma16mm__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6400_sigma16mm__1080p_16by9_1920x1080-59.94fps.json index 18731628..8a4150d7 100644 --- a/Sony/Sony_a6400_sigma16mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6400_sigma16mm__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "fpv_m", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "sigma16mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_sigma28-70__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_sigma28-70__4k_16by9_3840x2160-29.97fps.json index e47842e6..9dfeb3e8 100644 --- a/Sony/Sony_a6400_sigma28-70__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_sigma28-70__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "何德志", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "sigma28-70", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_simga 18-50mm_P 50M_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6400_simga 18-50mm_P 50M_1080p_16by9_1920x1080-50.00fps.json index c4a76158..33f6883e 100644 --- a/Sony/Sony_a6400_simga 18-50mm_P 50M_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6400_simga 18-50mm_P 50M_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "小河", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "simga 18-50mm", "camera_setting": "P 50M", "calib_dimension": { diff --git a/Sony/Sony_a6400_sony 35mm f 1.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_sony 35mm f 1.8__4k_16by9_3840x2160-25.00fps.json index 7d0a342f..701cb82a 100644 --- a/Sony/Sony_a6400_sony 35mm f 1.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_sony 35mm f 1.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rudy", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "sony 35mm f 1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_sony 55-210mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_sony 55-210mm__4k_16by9_3840x2160-25.00fps.json index 00e14f5f..6352a160 100644 --- a/Sony/Sony_a6400_sony 55-210mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_sony 55-210mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Martin Horák", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "sony 55-210mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_sony e 1.811__720p_16by9_1280x720-29.97fps.json b/Sony/Sony_a6400_sony e 1.811__720p_16by9_1280x720-29.97fps.json index e5912e2f..00b627c8 100644 --- a/Sony/Sony_a6400_sony e 1.811__720p_16by9_1280x720-29.97fps.json +++ b/Sony/Sony_a6400_sony e 1.811__720p_16by9_1280x720-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "neo kian ek", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "sony e 1.8/11", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_sony e 11mm f1.8__720p_16by9_1280x720-29.97fps.json b/Sony/Sony_a6400_sony e 11mm f1.8__720p_16by9_1280x720-29.97fps.json index dcc1309c..a71dcce5 100644 --- a/Sony/Sony_a6400_sony e 11mm f1.8__720p_16by9_1280x720-29.97fps.json +++ b/Sony/Sony_a6400_sony e 11mm f1.8__720p_16by9_1280x720-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "neo kian ek", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "sony e 11mm f1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_sony16mm__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6400_sony16mm__1080p_16by9_1920x1080-50.00fps.json index 4e4015b8..ba3c6b77 100644 --- a/Sony/Sony_a6400_sony16mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6400_sony16mm__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "黄", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "sony16mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_tamron 11-20_11mm_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_tamron 11-20_11mm_4k_16by9_3840x2160-29.97fps.json index b4e934e3..23d5a6c1 100644 --- a/Sony/Sony_a6400_tamron 11-20_11mm_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_tamron 11-20_11mm_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rodrigo", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "tamron 11-20", "camera_setting": "11mm", "calib_dimension": { diff --git a/Sony/Sony_a6400_tamron 1770 f2.8 17_25_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6400_tamron 1770 f2.8 17_25_4k_16by9_3840x2160-23.98fps.json index 97fe3b01..b3438192 100644 --- a/Sony/Sony_a6400_tamron 1770 f2.8 17_25_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6400_tamron 1770 f2.8 17_25_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Hu Guoxin", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "tamron 1770 f2.8 17", "camera_setting": "25", "calib_dimension": { diff --git a/Sony/Sony_a6400_tenglong11-20__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6400_tenglong11-20__1080p_16by9_1920x1080-50.00fps.json index cd1b9cb0..86e63bcc 100644 --- a/Sony/Sony_a6400_tenglong11-20__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6400_tenglong11-20__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "tenglong11-20", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_viltrox 35mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6400_viltrox 35mm__4k_16by9_3840x2160-23.98fps.json index 68409101..b3bb29a6 100644 --- a/Sony/Sony_a6400_viltrox 35mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6400_viltrox 35mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Miguel Elizalde", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "viltrox 35mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_vtx 56mm F1.7_0.858_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6400_vtx 56mm F1.7_0.858_4k_16by9_3840x2160-29.97fps.json index 9e5dde88..3dd85725 100644 --- a/Sony/Sony_a6400_vtx 56mm F1.7_0.858_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6400_vtx 56mm F1.7_0.858_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "0.858", "calibrated_by": "NINGMEI", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "vtx 56mm F1.7", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_xingyao35mmF0.95__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_xingyao35mmF0.95__4k_16by9_3840x2160-25.00fps.json index a6517f9f..4df22e91 100644 --- a/Sony/Sony_a6400_xingyao35mmF0.95__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_xingyao35mmF0.95__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "李锡杰", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "xingyao35mmF0.95", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6400_ynlens-50mm_-_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6400_ynlens-50mm_-_4k_16by9_3840x2160-25.00fps.json index 46612dc9..8997abfd 100644 --- a/Sony/Sony_a6400_ynlens-50mm_-_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6400_ynlens-50mm_-_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "jm weng", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "ynlens-50mm", "camera_setting": "-", "calib_dimension": { diff --git a/Sony/Sony_a6400_zenith 58f2_50fps150_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a6400_zenith 58f2_50fps150_1080p_16by9_1920x1080-25.00fps.json index 6ea94a70..7e2755f7 100644 --- a/Sony/Sony_a6400_zenith 58f2_50fps150_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a6400_zenith 58f2_50fps150_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Кирилл Гришин", "camera_brand": "Sony", - "camera_model": "a6400", + "camera_model": "Alpha 6400", "lens_model": "zenith 58f2", "camera_setting": "50fps1/50", "calib_dimension": { diff --git a/Sony/Sony_a6500_16 mm 1.4 sigma__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6500_16 mm 1.4 sigma__4k_16by9_3840x2160-29.97fps.json index e4780c7b..59dd41f8 100644 --- a/Sony/Sony_a6500_16 mm 1.4 sigma__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6500_16 mm 1.4 sigma__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Max", "camera_brand": "Sony", - "camera_model": "a6500", + "camera_model": "Alpha 6500", "lens_model": "16 mm 1.4 sigma", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6500_18-50_cine4_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a6500_18-50_cine4_1080p_16by9_1920x1080-25.00fps.json index 239379d0..ae6c86e0 100644 --- a/Sony/Sony_a6500_18-50_cine4_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a6500_18-50_cine4_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Перфильев Дмитрий", "camera_brand": "Sony", - "camera_model": "a6500", + "camera_model": "Alpha 6500", "lens_model": "18-50", "camera_setting": "cine4", "calib_dimension": { diff --git a/Sony/Sony_a6500_18135mm 3.5-5.6_50fps_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6500_18135mm 3.5-5.6_50fps_1080p_16by9_1920x1080-50.00fps.json index 6845e3ba..30220ad4 100644 --- a/Sony/Sony_a6500_18135mm 3.5-5.6_50fps_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6500_18135mm 3.5-5.6_50fps_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "50fps", "calibrated_by": "Agustin", "camera_brand": "Sony", - "camera_model": "a6500", + "camera_model": "Alpha 6500", "lens_model": "18/135mm 3.5-5.6", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6500_28 MM 2.0_FHD_1080p_16by9_1920x1080-119.88fps.json b/Sony/Sony_a6500_28 MM 2.0_FHD_1080p_16by9_1920x1080-119.88fps.json index 127a2ff1..70dd31e4 100644 --- a/Sony/Sony_a6500_28 MM 2.0_FHD_1080p_16by9_1920x1080-119.88fps.json +++ b/Sony/Sony_a6500_28 MM 2.0_FHD_1080p_16by9_1920x1080-119.88fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Juan hernandez", "camera_brand": "Sony", - "camera_model": "a6500", + "camera_model": "Alpha 6500", "lens_model": "28 MM 2.0", "camera_setting": "FHD", "calib_dimension": { diff --git a/Sony/Sony_a6500_30 mm 2,8 sigma__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6500_30 mm 2,8 sigma__4k_16by9_3840x2160-29.97fps.json index 0210d85e..bf5364fe 100644 --- a/Sony/Sony_a6500_30 mm 2,8 sigma__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6500_30 mm 2,8 sigma__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Max", "camera_brand": "Sony", - "camera_model": "a6500", + "camera_model": "Alpha 6500", "lens_model": "30 mm 2,8 sigma", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6500_56 f1.7_100_1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a6500_56 f1.7_100_1080p_16by9_1920x1080-100.00fps.json index 38d624f9..777fa310 100644 --- a/Sony/Sony_a6500_56 f1.7_100_1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a6500_56 f1.7_100_1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "k", "camera_brand": "Sony", - "camera_model": "a6500", + "camera_model": "Alpha 6500", "lens_model": "56 f1.7", "camera_setting": "100", "calib_dimension": { diff --git a/Sony/Sony_a6500_E PZ 16-50 F3.5-5.6 OSS__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6500_E PZ 16-50 F3.5-5.6 OSS__4k_16by9_3840x2160-29.97fps.json index bcb277ff..bc1cbed8 100644 --- a/Sony/Sony_a6500_E PZ 16-50 F3.5-5.6 OSS__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6500_E PZ 16-50 F3.5-5.6 OSS__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "alex", "camera_brand": "Sony", - "camera_model": "a6500", + "camera_model": "Alpha 6500", "lens_model": "E PZ 16-50 мм F3.5-5.6 OSS", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6500_Rokinon 12mm CINE__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6500_Rokinon 12mm CINE__4k_16by9_3840x2160-25.00fps.json index bc846a69..e73966f1 100644 --- a/Sony/Sony_a6500_Rokinon 12mm CINE__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6500_Rokinon 12mm CINE__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Víctor D'", "camera_brand": "Sony", - "camera_model": "a6500", + "camera_model": "Alpha 6500", "lens_model": "Rokinon 12mm CINE", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6500_SONY E 16-503.5-5.6F OSS_24mm_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a6500_SONY E 16-503.5-5.6F OSS_24mm_1080p_16by9_1920x1080-25.00fps.json index ce9db64a..73693d75 100644 --- a/Sony/Sony_a6500_SONY E 16-503.5-5.6F OSS_24mm_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a6500_SONY E 16-503.5-5.6F OSS_24mm_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ichino Haru", "camera_brand": "Sony", - "camera_model": "a6500", + "camera_model": "Alpha 6500", "lens_model": "SONY E 16-503.5-5.6F OSS", "camera_setting": "24mm", "calib_dimension": { diff --git a/Sony/Sony_a6500_Sigma 16mm_Sony a 6500_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6500_Sigma 16mm_Sony a 6500_1080p_16by9_1920x1080-59.94fps.json index daaec8aa..bc89c68c 100644 --- a/Sony/Sony_a6500_Sigma 16mm_Sony a 6500_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6500_Sigma 16mm_Sony a 6500_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "cristiamfils", "camera_brand": "Sony", - "camera_model": "a6500", + "camera_model": "Alpha 6500", "lens_model": "Sigma 16mm", "camera_setting": "Sony a 6500", "calib_dimension": { diff --git a/Sony/Sony_a6500_Sigma 18-50mm__1080p_16by9_1920x1080-29.97fps.json b/Sony/Sony_a6500_Sigma 18-50mm__1080p_16by9_1920x1080-29.97fps.json index 8811b855..c252fa28 100644 --- a/Sony/Sony_a6500_Sigma 18-50mm__1080p_16by9_1920x1080-29.97fps.json +++ b/Sony/Sony_a6500_Sigma 18-50mm__1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jhon Paul", "camera_brand": "Sony", - "camera_model": "a6500", + "camera_model": "Alpha 6500", "lens_model": "Sigma 18-50mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6500_Sigma 24mm F3.5 DG DN Contemporary_50_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6500_Sigma 24mm F3.5 DG DN Contemporary_50_1080p_16by9_1920x1080-50.00fps.json index af69e379..1573615a 100644 --- a/Sony/Sony_a6500_Sigma 24mm F3.5 DG DN Contemporary_50_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6500_Sigma 24mm F3.5 DG DN Contemporary_50_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Nickel Zhang", "camera_brand": "Sony", - "camera_model": "a6500", + "camera_model": "Alpha 6500", "lens_model": "Sigma 24mm F3.5 DG DN Contemporary", "camera_setting": "50", "calib_dimension": { diff --git a/Sony/Sony_a6500_Sony 10-18mm F4_10mm_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6500_Sony 10-18mm F4_10mm_4k_16by9_3840x2160-23.98fps.json index 01dd3f35..8da02ec1 100644 --- a/Sony/Sony_a6500_Sony 10-18mm F4_10mm_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6500_Sony 10-18mm F4_10mm_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "10mm", "calibrated_by": "Kai Vertigoh", "camera_brand": "Sony", - "camera_model": "a6500", + "camera_model": "Alpha 6500", "lens_model": "Sony 10-18mm F4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6500_Sony 10-18mm F4_18mm_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6500_Sony 10-18mm F4_18mm_4k_16by9_3840x2160-23.98fps.json index a4fee7f1..adbcab96 100644 --- a/Sony/Sony_a6500_Sony 10-18mm F4_18mm_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6500_Sony 10-18mm F4_18mm_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "18mm", "calibrated_by": "Kai Vertigoh", "camera_brand": "Sony", - "camera_model": "a6500", + "camera_model": "Alpha 6500", "lens_model": "Sony 10-18mm F4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6500_Sony 418-105__1080p_16by9_1920x1080-119.88fps - Dejan - 3.json b/Sony/Sony_a6500_Sony 418-105__1080p_16by9_1920x1080-119.88fps - Dejan - 3.json index ce249511..0571f314 100644 --- a/Sony/Sony_a6500_Sony 418-105__1080p_16by9_1920x1080-119.88fps - Dejan - 3.json +++ b/Sony/Sony_a6500_Sony 418-105__1080p_16by9_1920x1080-119.88fps - Dejan - 3.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Dejan", "camera_brand": "Sony", - "camera_model": "a6500", + "camera_model": "Alpha 6500", "lens_model": "Sony 4/18-105", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6500_Sony 418-105mm__1080p_16by9_1920x1080-119.88fps.json b/Sony/Sony_a6500_Sony 418-105mm__1080p_16by9_1920x1080-119.88fps.json index 41e2a4bc..5e8d2317 100644 --- a/Sony/Sony_a6500_Sony 418-105mm__1080p_16by9_1920x1080-119.88fps.json +++ b/Sony/Sony_a6500_Sony 418-105mm__1080p_16by9_1920x1080-119.88fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Dejan", "camera_brand": "Sony", - "camera_model": "a6500", + "camera_model": "Alpha 6500", "lens_model": "Sony 4/18-105mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6500_Sony 50mm_Full HD_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a6500_Sony 50mm_Full HD_1080p_16by9_1920x1080-25.00fps.json index 745ab16e..583e719c 100644 --- a/Sony/Sony_a6500_Sony 50mm_Full HD_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a6500_Sony 50mm_Full HD_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Baris Keskin", "camera_brand": "Sony", - "camera_model": "a6500", + "camera_model": "Alpha 6500", "lens_model": "Sony 50mm", "camera_setting": "Full HD", "calib_dimension": { diff --git a/Sony/Sony_a6500_Sony 50mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6500_Sony 50mm__4k_16by9_3840x2160-25.00fps.json index a21e9e98..007fa900 100644 --- a/Sony/Sony_a6500_Sony 50mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6500_Sony 50mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Piotr Cymerman", "camera_brand": "Sony", - "camera_model": "a6500", + "camera_model": "Alpha 6500", "lens_model": "Sony 50mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6500_Sony FE 28-70 f3.5-5.6_@ 28mm f3.5_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6500_Sony FE 28-70 f3.5-5.6_@ 28mm f3.5_4k_16by9_3840x2160-25.00fps.json index 7aad613c..f5ff7c6a 100644 --- a/Sony/Sony_a6500_Sony FE 28-70 f3.5-5.6_@ 28mm f3.5_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6500_Sony FE 28-70 f3.5-5.6_@ 28mm f3.5_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "@ 28mm f/3.5", "calibrated_by": "Kadijk, Jasper", "camera_brand": "Sony", - "camera_model": "a6500", + "camera_model": "Alpha 6500", "lens_model": "Sony FE 28-70 f/3.5-5.6", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6500_Sony SEL35F18_SteadyShotON,_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6500_Sony SEL35F18_SteadyShotON,_4k_16by9_3840x2160-25.00fps.json index 4e033e10..24ae52c0 100644 --- a/Sony/Sony_a6500_Sony SEL35F18_SteadyShotON,_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6500_Sony SEL35F18_SteadyShotON,_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "35mm, F5,6", "calibrated_by": "Bart", "camera_brand": "Sony", - "camera_model": "a6500", + "camera_model": "Alpha 6500", "lens_model": "Sony SEL35F18", "camera_setting": "SteadyShotON,", "calib_dimension": { diff --git a/Sony/Sony_a6500_Viltrox 13mm f.14__1080p_16by9_1920x1080-29.97fps.json b/Sony/Sony_a6500_Viltrox 13mm f.14__1080p_16by9_1920x1080-29.97fps.json index 30091fd1..66ab61b0 100644 --- a/Sony/Sony_a6500_Viltrox 13mm f.14__1080p_16by9_1920x1080-29.97fps.json +++ b/Sony/Sony_a6500_Viltrox 13mm f.14__1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jhon Paul", "camera_brand": "Sony", - "camera_model": "a6500", + "camera_model": "Alpha 6500", "lens_model": "Viltrox 13mm f.14", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6500_Viltrox 13mm f.14__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6500_Viltrox 13mm f.14__4k_16by9_3840x2160-29.97fps.json index d04f6514..1ef07a7d 100644 --- a/Sony/Sony_a6500_Viltrox 13mm f.14__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6500_Viltrox 13mm f.14__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jhon Paul", "camera_brand": "Sony", - "camera_model": "a6500", + "camera_model": "Alpha 6500", "lens_model": "Viltrox 13mm f.14", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6500_sanyang 35 1.4 af__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6500_sanyang 35 1.4 af__4k_16by9_3840x2160-23.98fps.json index cc0ef9a0..a7f08311 100644 --- a/Sony/Sony_a6500_sanyang 35 1.4 af__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6500_sanyang 35 1.4 af__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6500", + "camera_model": "Alpha 6500", "lens_model": "sanyang 35 1.4 af", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6500_sigma 30mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6500_sigma 30mm__4k_16by9_3840x2160-23.98fps.json index d2e82a7f..5e88ea72 100644 --- a/Sony/Sony_a6500_sigma 30mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6500_sigma 30mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "IBAI", "camera_brand": "Sony", - "camera_model": "a6500", + "camera_model": "Alpha 6500", "lens_model": "sigma 30mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6500_sony 418-105__1080p_16by9_1920x1080-119.88fps - Dejan - 2.json b/Sony/Sony_a6500_sony 418-105__1080p_16by9_1920x1080-119.88fps - Dejan - 2.json index 14f02844..be487175 100644 --- a/Sony/Sony_a6500_sony 418-105__1080p_16by9_1920x1080-119.88fps - Dejan - 2.json +++ b/Sony/Sony_a6500_sony 418-105__1080p_16by9_1920x1080-119.88fps - Dejan - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Dejan", "camera_brand": "Sony", - "camera_model": "a6500", + "camera_model": "Alpha 6500", "lens_model": "sony 4/18-105", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6500_sony 418-105__1080p_16by9_1920x1080-119.88fps.json b/Sony/Sony_a6500_sony 418-105__1080p_16by9_1920x1080-119.88fps.json index 8157528c..c137a46f 100644 --- a/Sony/Sony_a6500_sony 418-105__1080p_16by9_1920x1080-119.88fps.json +++ b/Sony/Sony_a6500_sony 418-105__1080p_16by9_1920x1080-119.88fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Dejan", "camera_brand": "Sony", - "camera_model": "a6500", + "camera_model": "Alpha 6500", "lens_model": "sony 4/18-105", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6500_viltrox fe20 f2.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6500_viltrox fe20 f2.8__4k_16by9_3840x2160-25.00fps.json index 7fff90c2..5db7c160 100644 --- a/Sony/Sony_a6500_viltrox fe20 f2.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6500_viltrox fe20 f2.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ripple", "camera_brand": "Sony", - "camera_model": "a6500", + "camera_model": "Alpha 6500", "lens_model": "viltrox fe20 f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6600_10-18__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6600_10-18__4k_16by9_3840x2160-23.98fps.json index bce55d84..d140d8a6 100644 --- a/Sony/Sony_a6600_10-18__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6600_10-18__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "白鳥麗次", "camera_brand": "Sony", - "camera_model": "a6600", + "camera_model": "Alpha 6600", "lens_model": "10-18", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6600_10-18mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6600_10-18mm__4k_16by9_3840x2160-23.98fps.json index 65e2d452..3a852b58 100644 --- a/Sony/Sony_a6600_10-18mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6600_10-18mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "白鳥麗次", "camera_brand": "Sony", - "camera_model": "a6600", + "camera_model": "Alpha 6600", "lens_model": "10-18mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6600_18-105mm f4__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6600_18-105mm f4__4k_16by9_3840x2160-25.00fps.json index ce33376c..6c5bc1f0 100644 --- a/Sony/Sony_a6600_18-105mm f4__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6600_18-105mm f4__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jakub Straňanek", "camera_brand": "Sony", - "camera_model": "a6600", + "camera_model": "Alpha 6600", "lens_model": "18-105mm f4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6600_24mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6600_24mm__4k_16by9_3840x2160-29.97fps.json index 8b010d5d..ba094e57 100644 --- a/Sony/Sony_a6600_24mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6600_24mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ZHCH21T", "camera_brand": "Sony", - "camera_model": "a6600", + "camera_model": "Alpha 6600", "lens_model": "24mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6600_3.5-5.6 18-135 OSS_18mm_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a6600_3.5-5.6 18-135 OSS_18mm_1080p_16by9_1920x1080-25.00fps.json index 057ac2b5..0ba9b859 100644 --- a/Sony/Sony_a6600_3.5-5.6 18-135 OSS_18mm_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a6600_3.5-5.6 18-135 OSS_18mm_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Langenohl, Vincent", "camera_brand": "Sony", - "camera_model": "a6600", + "camera_model": "Alpha 6600", "lens_model": "3.5-5.6 / 18-135 OSS", "camera_setting": "18mm", "calib_dimension": { diff --git a/Sony/Sony_a6600_SELP18105G_18mm F4_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6600_SELP18105G_18mm F4_4k_16by9_3840x2160-29.97fps.json index c50243f7..a1074b26 100644 --- a/Sony/Sony_a6600_SELP18105G_18mm F4_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6600_SELP18105G_18mm F4_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "Lens Compensation: Auto", "calibrated_by": "Davide Projetto", "camera_brand": "Sony", - "camera_model": "a6600", + "camera_model": "Alpha 6600", "lens_model": "SELP18105G", "camera_setting": "18mm F4", "calib_dimension": { diff --git a/Sony/Sony_a6600_Sigma 16-28mm F2.8_@16mm_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6600_Sigma 16-28mm F2.8_@16mm_4k_16by9_3840x2160-23.98fps.json index 5244b5c5..db001ec7 100644 --- a/Sony/Sony_a6600_Sigma 16-28mm F2.8_@16mm_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6600_Sigma 16-28mm F2.8_@16mm_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "@16mm", "calibrated_by": "Andreas Vanhoutte", "camera_brand": "Sony", - "camera_model": "a6600", + "camera_model": "Alpha 6600", "lens_model": "Sigma 16-28mm F2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6600_Sigma 56mm F1.4__1080p_16by9_1920x1080-29.97fps.json b/Sony/Sony_a6600_Sigma 56mm F1.4__1080p_16by9_1920x1080-29.97fps.json index eda62d31..7812e584 100644 --- a/Sony/Sony_a6600_Sigma 56mm F1.4__1080p_16by9_1920x1080-29.97fps.json +++ b/Sony/Sony_a6600_Sigma 56mm F1.4__1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rakshan Kumar", "camera_brand": "Sony", - "camera_model": "a6600", + "camera_model": "Alpha 6600", "lens_model": "Sigma 56mm F1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6600_Sigma30 1.4__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6600_Sigma30 1.4__4k_16by9_3840x2160-25.00fps.json index cbfc1824..f7694d56 100644 --- a/Sony/Sony_a6600_Sigma30 1.4__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6600_Sigma30 1.4__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6600", + "camera_model": "Alpha 6600", "lens_model": "Sigma30 1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6600_pz10-20__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a6600_pz10-20__1080p_16by9_1920x1080-50.00fps.json index 0fbe8144..ed0a4dd9 100644 --- a/Sony/Sony_a6600_pz10-20__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a6600_pz10-20__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "odeymac77", "camera_brand": "Sony", - "camera_model": "a6600", + "camera_model": "Alpha 6600", "lens_model": "pz10-20", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6600_sony 3.5-5.6 18-135_25 p_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6600_sony 3.5-5.6 18-135_25 p_4k_16by9_3840x2160-25.00fps.json index 0c5a56e3..8e04f377 100644 --- a/Sony/Sony_a6600_sony 3.5-5.6 18-135_25 p_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6600_sony 3.5-5.6 18-135_25 p_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "18-135", "calibrated_by": "Nishan Fernando", "camera_brand": "Sony", - "camera_model": "a6600", + "camera_model": "Alpha 6600", "lens_model": "sony 3.5-5.6 / 18-135", "camera_setting": "25 p", "calib_dimension": { diff --git a/Sony/Sony_a6700_16.00mm_16-50 mm_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6700_16.00mm_16-50 mm_4k_16by9_3840x2160-29.97fps.json index bec099f3..29f4e11d 100644 --- a/Sony/Sony_a6700_16.00mm_16-50 mm_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6700_16.00mm_16-50 mm_4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "pablo", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_17.00mm_TAMRON 17-70mm_1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a6700_17.00mm_TAMRON 17-70mm_1080p_16by9_1920x1080-100.00fps.json index c7253815..918f8061 100644 --- a/Sony/Sony_a6700_17.00mm_TAMRON 17-70mm_1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a6700_17.00mm_TAMRON 17-70mm_1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "岳继元", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "17.00mm", "camera_setting": "TAMRON 17-70mm", "calib_dimension": { diff --git a/Sony/Sony_a6700_17.00mm_sonya6700 TAMRON 17-70mm_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a6700_17.00mm_sonya6700 TAMRON 17-70mm_4k_16by9_3840x2160-50.00fps.json index d8564c0f..05648842 100644 --- a/Sony/Sony_a6700_17.00mm_sonya6700 TAMRON 17-70mm_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a6700_17.00mm_sonya6700 TAMRON 17-70mm_4k_16by9_3840x2160-50.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "岳继元", "calibrator_version": "1.5.1", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "sonya6700 TAMRON 17-70mm", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_18-105mm F4 OSS__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a6700_18-105mm F4 OSS__4k_16by9_3840x2160-50.00fps.json index edbf193e..d817d09e 100644 --- a/Sony/Sony_a6700_18-105mm F4 OSS__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a6700_18-105mm F4 OSS__4k_16by9_3840x2160-50.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "WJ", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_18-105mmf4 105.00mm_60 10bit_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_18-105mmf4 105.00mm_60 10bit_4k_16by9_3840x2160-59.94fps.json index 33f5d18e..805de4c3 100644 --- a/Sony/Sony_a6700_18-105mmf4 105.00mm_60 10bit_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_18-105mmf4 105.00mm_60 10bit_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "朱慨迅", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "18-105mmf4 105.00mm", "camera_setting": "60 10bit", "calib_dimension": { diff --git a/Sony/Sony_a6700_18-35mm Sigma Art 1.8_18mm Focal Length_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6700_18-35mm Sigma Art 1.8_18mm Focal Length_4k_16by9_3840x2160-23.98fps.json index 931ea31e..7ac68a99 100644 --- a/Sony/Sony_a6700_18-35mm Sigma Art 1.8_18mm Focal Length_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6700_18-35mm Sigma Art 1.8_18mm Focal Length_4k_16by9_3840x2160-23.98fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Mehmet Kozal", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_18.00mm-50.00mm__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a6700_18.00mm-50.00mm__4k_16by9_3840x2160-50.00fps.json index cb0b57ed..9c837adf 100644 --- a/Sony/Sony_a6700_18.00mm-50.00mm__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a6700_18.00mm-50.00mm__4k_16by9_3840x2160-50.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Duck Yo", "calibrator_version": "1.5.2", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_18.00mm_1500, f2.8, iso 500_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6700_18.00mm_1500, f2.8, iso 500_4k_16by9_3840x2160-23.98fps.json index 2efe8b6b..1eb35ff1 100644 --- a/Sony/Sony_a6700_18.00mm_1500, f2.8, iso 500_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6700_18.00mm_1500, f2.8, iso 500_4k_16by9_3840x2160-23.98fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Đạt Hoàng", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "1/500, f2.8, iso 500", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_18.00mm_Sigma 18-50 f2.8 DC DN_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a6700_18.00mm_Sigma 18-50 f2.8 DC DN_4k_16by9_3840x2160-50.00fps.json index 5f6a09a9..308e19ae 100644 --- a/Sony/Sony_a6700_18.00mm_Sigma 18-50 f2.8 DC DN_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a6700_18.00mm_Sigma 18-50 f2.8 DC DN_4k_16by9_3840x2160-50.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "C F Lam", "calibrator_version": "1.5.2", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_18.00mm_sony-ilce-6700-18.00mm-3840x2160@59940_4k_16by9_3840x2160-59.94fps - Mehmet Kozal - 2.json b/Sony/Sony_a6700_18.00mm_sony-ilce-6700-18.00mm-3840x2160@59940_4k_16by9_3840x2160-59.94fps - Mehmet Kozal - 2.json index 98b60f3f..3b50273c 100644 --- a/Sony/Sony_a6700_18.00mm_sony-ilce-6700-18.00mm-3840x2160@59940_4k_16by9_3840x2160-59.94fps - Mehmet Kozal - 2.json +++ b/Sony/Sony_a6700_18.00mm_sony-ilce-6700-18.00mm-3840x2160@59940_4k_16by9_3840x2160-59.94fps - Mehmet Kozal - 2.json @@ -7,7 +7,7 @@ "calibrated_by": "Mehmet Kozal", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_18.00mm_sony-ilce-6700-18.00mm-3840x2160@59940_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_18.00mm_sony-ilce-6700-18.00mm-3840x2160@59940_4k_16by9_3840x2160-59.94fps.json index 25f468b3..9900d943 100644 --- a/Sony/Sony_a6700_18.00mm_sony-ilce-6700-18.00mm-3840x2160@59940_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_18.00mm_sony-ilce-6700-18.00mm-3840x2160@59940_4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Mehmet Kozal", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_1813518__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_1813518__4k_16by9_3840x2160-59.94fps.json index f48237b1..38e7c9d1 100644 --- a/Sony/Sony_a6700_1813518__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_1813518__4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Administrator", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_20.30mm_18-50mm18mm_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a6700_20.30mm_18-50mm18mm_4k_16by9_3840x2160-50.00fps.json index 8601a23e..5fb2100e 100644 --- a/Sony/Sony_a6700_20.30mm_18-50mm18mm_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a6700_20.30mm_18-50mm18mm_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "18mm端", "calibrated_by": "jian han", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "20.30mm", "camera_setting": "18-50mm18mm", "calib_dimension": { diff --git a/Sony/Sony_a6700_27.00mm_VILTROX PRO_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_27.00mm_VILTROX PRO_4k_16by9_3840x2160-59.94fps.json index 468ea3f8..c67d4b2e 100644 --- a/Sony/Sony_a6700_27.00mm_VILTROX PRO_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_27.00mm_VILTROX PRO_4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "JyaKe", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_30.00mm_sigma 30 1.4_4k_16by9_3840x2160-29.97fps - 3.json b/Sony/Sony_a6700_30.00mm_sigma 30 1.4_4k_16by9_3840x2160-29.97fps - 3.json index 5b3deb3c..b8c050b8 100644 --- a/Sony/Sony_a6700_30.00mm_sigma 30 1.4_4k_16by9_3840x2160-29.97fps - 3.json +++ b/Sony/Sony_a6700_30.00mm_sigma 30 1.4_4k_16by9_3840x2160-29.97fps - 3.json @@ -7,7 +7,7 @@ "calibrated_by": "陈青", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "sigma 30 1.4", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_30.00mm_sigma 30 1.4_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6700_30.00mm_sigma 30 1.4_4k_16by9_3840x2160-29.97fps.json index 8c23fe98..c17e2dae 100644 --- a/Sony/Sony_a6700_30.00mm_sigma 30 1.4_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6700_30.00mm_sigma 30 1.4_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "30fps", "calibrated_by": "陈青", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "30.00mm", "camera_setting": "sigma 30 1.4", "calib_dimension": { diff --git a/Sony/Sony_a6700_30.00mm_sigma_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6700_30.00mm_sigma_4k_16by9_3840x2160-29.97fps.json index abd47718..a7cd4221 100644 --- a/Sony/Sony_a6700_30.00mm_sigma_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6700_30.00mm_sigma_4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "陈青", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "sigma", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_35.00mm_TTArtisan 35mm F1.8_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6700_35.00mm_TTArtisan 35mm F1.8_1080p_16by9_1920x1080-59.94fps.json index 4a7489d0..6efc2048 100644 --- a/Sony/Sony_a6700_35.00mm_TTArtisan 35mm F1.8_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6700_35.00mm_TTArtisan 35mm F1.8_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "TTArtisan 35mm F1.8", "calibrated_by": "oranpig", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "35.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_35.00mm_sony-ilce-6700-35.00mm-3840x2160@59940_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_35.00mm_sony-ilce-6700-35.00mm-3840x2160@59940_4k_16by9_3840x2160-59.94fps.json index 2ef334d7..fa452e20 100644 --- a/Sony/Sony_a6700_35.00mm_sony-ilce-6700-35.00mm-3840x2160@59940_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_35.00mm_sony-ilce-6700-35.00mm-3840x2160@59940_4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Mehmet Kozal", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_50.00mm_16-50.00mm_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_50.00mm_16-50.00mm_4k_16by9_3840x2160-59.94fps.json index 6b988b0e..8a306db2 100644 --- a/Sony/Sony_a6700_50.00mm_16-50.00mm_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_50.00mm_16-50.00mm_4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "pablo", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_50mm 0.98__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_50mm 0.98__4k_16by9_3840x2160-59.94fps.json index 09383392..de70dc61 100644 --- a/Sony/Sony_a6700_50mm 0.98__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_50mm 0.98__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "铭匠光学50mm 0.98", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_56.00mm_SIGMA 56f1.4_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_56.00mm_SIGMA 56f1.4_4k_16by9_3840x2160-59.94fps.json index c538dbb1..664b841d 100644 --- a/Sony/Sony_a6700_56.00mm_SIGMA 56f1.4_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_56.00mm_SIGMA 56f1.4_4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "JyaKe", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_56.00mm_sigma56F1.4_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_56.00mm_sigma56F1.4_4k_16by9_3840x2160-59.94fps.json index 1b918b71..a72ed792 100644 --- a/Sony/Sony_a6700_56.00mm_sigma56F1.4_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_56.00mm_sigma56F1.4_4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "王子", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_56.00mm_sigma56mmf14_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a6700_56.00mm_sigma56mmf14_4k_16by9_3840x2160-50.00fps.json index be0183cb..9ff867a6 100644 --- a/Sony/Sony_a6700_56.00mm_sigma56mmf14_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a6700_56.00mm_sigma56mmf14_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "sigma56mmf14", "calibrated_by": "atticus", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "56.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_70.00mm_59fps_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_70.00mm_59fps_4k_16by9_3840x2160-59.94fps.json index ad09850d..fb9e6bd9 100644 --- a/Sony/Sony_a6700_70.00mm_59fps_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_70.00mm_59fps_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "DyingintheSun", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "70.00mm", "camera_setting": "59fps", "calib_dimension": { diff --git a/Sony/Sony_a6700_70.00mm_SEL70350G_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6700_70.00mm_SEL70350G_4k_16by9_3840x2160-29.97fps.json index 9fbebcba..366af7b9 100644 --- a/Sony/Sony_a6700_70.00mm_SEL70350G_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6700_70.00mm_SEL70350G_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "SEL70350G", "calibrated_by": "microfat", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "70.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_70.00mm_TAMRON 17-70mm_1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a6700_70.00mm_TAMRON 17-70mm_1080p_16by9_1920x1080-100.00fps.json index 346f1d98..682b6f0c 100644 --- a/Sony/Sony_a6700_70.00mm_TAMRON 17-70mm_1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a6700_70.00mm_TAMRON 17-70mm_1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "岳继元", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "70.00mm", "camera_setting": "TAMRON 17-70mm", "calib_dimension": { diff --git a/Sony/Sony_a6700_BRIGHTSTAR 12mm__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6700_BRIGHTSTAR 12mm__1080p_16by9_1920x1080-59.94fps.json index 34a0ca13..efcd69cc 100644 --- a/Sony/Sony_a6700_BRIGHTSTAR 12mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6700_BRIGHTSTAR 12mm__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "十一少", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "BRIGHTSTAR 12mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_LAOWA_9mm_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a6700_LAOWA_9mm_4k_16by9_3840x2160-50.00fps.json index 3fe8b434..447c0bb1 100644 --- a/Sony/Sony_a6700_LAOWA_9mm_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a6700_LAOWA_9mm_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "9mm", "calibrated_by": "Antonello Curci", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "LAOWA", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_Laowa 9mm__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a6700_Laowa 9mm__4k_16by9_3840x2160-50.00fps.json index 3234e937..07602c61 100644 --- a/Sony/Sony_a6700_Laowa 9mm__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a6700_Laowa 9mm__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Antonello Curci", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Laowa 9mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_Meike 35mm f1.4_1125 ISO 800_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_Meike 35mm f1.4_1125 ISO 800_4k_16by9_3840x2160-59.94fps.json index b557c699..375b5d0f 100644 --- a/Sony/Sony_a6700_Meike 35mm f1.4_1125 ISO 800_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_Meike 35mm f1.4_1125 ISO 800_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "16x9", "calibrated_by": "Travels", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Meike 35mm f1.4", "camera_setting": "1/125 ISO 800", "calib_dimension": { diff --git a/Sony/Sony_a6700_Rokinon 12mm F2.8 ED AS NCS Fish-eye__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_Rokinon 12mm F2.8 ED AS NCS Fish-eye__4k_16by9_3840x2160-59.94fps.json index 8cf06903..bae2b413 100644 --- a/Sony/Sony_a6700_Rokinon 12mm F2.8 ED AS NCS Fish-eye__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_Rokinon 12mm F2.8 ED AS NCS Fish-eye__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "DodFPV", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Rokinon 12mm F2.8 ED AS NCS Fish-eye", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_SELP1020G_10mm_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_SELP1020G_10mm_4k_16by9_3840x2160-59.94fps.json index 2bd0f646..2d909724 100644 --- a/Sony/Sony_a6700_SELP1020G_10mm_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_SELP1020G_10mm_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "10mm", "calibrated_by": "Shuchen", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "SELP1020G", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_SELP1020G_15mm_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_SELP1020G_15mm_4k_16by9_3840x2160-59.94fps.json index cb818de9..906cf203 100644 --- a/Sony/Sony_a6700_SELP1020G_15mm_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_SELP1020G_15mm_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "15mm", "calibrated_by": "Shuchen", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "SELP1020G", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_SELP1020G_20mm_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_SELP1020G_20mm_4k_16by9_3840x2160-59.94fps.json index 3d1a4396..1660a25c 100644 --- a/Sony/Sony_a6700_SELP1020G_20mm_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_SELP1020G_20mm_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "20mm", "calibrated_by": "Shuchen", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "SELP1020G", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_SIGMA 18-50_2.8 DGDN__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6700_SIGMA 18-50_2.8 DGDN__4k_16by9_3840x2160-29.97fps.json index be6e8e95..f7b2bbe9 100644 --- a/Sony/Sony_a6700_SIGMA 18-50_2.8 DGDN__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6700_SIGMA 18-50_2.8 DGDN__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Panky Pan", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "SIGMA 18-50:2.8 DGDN", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_SIGMA 18-50mm F2.8 DC DN__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_SIGMA 18-50mm F2.8 DC DN__4k_16by9_3840x2160-59.94fps.json index d53ae7ed..a03417b2 100644 --- a/Sony/Sony_a6700_SIGMA 18-50mm F2.8 DC DN__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_SIGMA 18-50mm F2.8 DC DN__4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Billy", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_SIGMA 30 F1.4 DC DN_SONY A6700_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a6700_SIGMA 30 F1.4 DC DN_SONY A6700_4k_16by9_3840x2160-50.00fps.json index 02b48b07..738bf51a 100644 --- a/Sony/Sony_a6700_SIGMA 30 F1.4 DC DN_SONY A6700_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a6700_SIGMA 30 F1.4 DC DN_SONY A6700_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Yx Tao", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "SIGMA 30 F1.4 DC DN", "camera_setting": "SONY A6700", "calib_dimension": { diff --git a/Sony/Sony_a6700_SONY 15.00mm F1.4__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a6700_SONY 15.00mm F1.4__4k_16by9_3840x2160-50.00fps.json index 3f277c73..2613116f 100644 --- a/Sony/Sony_a6700_SONY 15.00mm F1.4__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a6700_SONY 15.00mm F1.4__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "无机内防抖", "calibrated_by": "彭禹铭", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "SONY 15.00mm F1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_Samyang Rokinon 12.00mm F2 AF APS-C__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6700_Samyang Rokinon 12.00mm F2 AF APS-C__4k_16by9_3840x2160-29.97fps.json index 60c944ef..7b91f72b 100644 --- a/Sony/Sony_a6700_Samyang Rokinon 12.00mm F2 AF APS-C__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6700_Samyang Rokinon 12.00mm F2 AF APS-C__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Kylin Blue", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Samyang Rokinon 12.00mm F2 AF APS-C", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_Samyang Rokinon 12.00mm F2 AF__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6700_Samyang Rokinon 12.00mm F2 AF__4k_16by9_3840x2160-29.97fps.json index 5d933da8..b5b16e15 100644 --- a/Sony/Sony_a6700_Samyang Rokinon 12.00mm F2 AF__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6700_Samyang Rokinon 12.00mm F2 AF__4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Kylin Blue", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_Samyang24.00mm f1.8__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_Samyang24.00mm f1.8__4k_16by9_3840x2160-59.94fps.json index c9f933ad..804b5542 100644 --- a/Sony/Sony_a6700_Samyang24.00mm f1.8__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_Samyang24.00mm f1.8__4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Blackhole", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_Sigm 18-50 2.8_50_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6700_Sigm 18-50 2.8_50_4k_16by9_3840x2160-25.00fps.json index 58a47336..839a7ec6 100644 --- a/Sony/Sony_a6700_Sigm 18-50 2.8_50_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6700_Sigm 18-50 2.8_50_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "50", "calibrated_by": "Greg Stoddard", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Sigm 18-50 2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_Sigma 18-35 1.8 ART_35mm Focal Length_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6700_Sigma 18-35 1.8 ART_35mm Focal Length_4k_16by9_3840x2160-23.98fps.json index 4b9af940..8400c7a7 100644 --- a/Sony/Sony_a6700_Sigma 18-35 1.8 ART_35mm Focal Length_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6700_Sigma 18-35 1.8 ART_35mm Focal Length_4k_16by9_3840x2160-23.98fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Mehmet Kozal", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_Sigma 18-35mm 1.8 ART_sony-ilce-6700-18.00mm-3840x2160@23976_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6700_Sigma 18-35mm 1.8 ART_sony-ilce-6700-18.00mm-3840x2160@23976_4k_16by9_3840x2160-23.98fps.json index 267a2453..70a949a4 100644 --- a/Sony/Sony_a6700_Sigma 18-35mm 1.8 ART_sony-ilce-6700-18.00mm-3840x2160@23976_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6700_Sigma 18-35mm 1.8 ART_sony-ilce-6700-18.00mm-3840x2160@23976_4k_16by9_3840x2160-23.98fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Mehmet Kozal", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_Sigma 18-50 18.00mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6700_Sigma 18-50 18.00mm__4k_16by9_3840x2160-25.00fps.json index 6c95e578..933a0bf7 100644 --- a/Sony/Sony_a6700_Sigma 18-50 18.00mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6700_Sigma 18-50 18.00mm__4k_16by9_3840x2160-25.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Guido Ambrosi", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_Sigma 18-50 50.00mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6700_Sigma 18-50 50.00mm__4k_16by9_3840x2160-25.00fps.json index 31412536..5e0f5ae1 100644 --- a/Sony/Sony_a6700_Sigma 18-50 50.00mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6700_Sigma 18-50 50.00mm__4k_16by9_3840x2160-25.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Guido Ambrosi", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_Sigma 18-50 F2.8 DC DN_27.70mm_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_Sigma 18-50 F2.8 DC DN_27.70mm_4k_16by9_3840x2160-59.94fps.json index c4e91632..694a6618 100644 --- a/Sony/Sony_a6700_Sigma 18-50 F2.8 DC DN_27.70mm_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_Sigma 18-50 F2.8 DC DN_27.70mm_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "27.70mm", "calibrated_by": "Doğukan Sunar", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Sigma 18-50 F2.8 DC DN", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_Sigma 18-50 F2.8 DC DN_34.80mm_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_Sigma 18-50 F2.8 DC DN_34.80mm_4k_16by9_3840x2160-59.94fps.json index 18666fba..ea186972 100644 --- a/Sony/Sony_a6700_Sigma 18-50 F2.8 DC DN_34.80mm_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_Sigma 18-50 F2.8 DC DN_34.80mm_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "34.80mm", "calibrated_by": "Doğukan Sunar", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Sigma 18-50 F2.8 DC DN", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_Sigma 18-50 F2.8 DC DN_50.00mm_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_Sigma 18-50 F2.8 DC DN_50.00mm_4k_16by9_3840x2160-59.94fps.json index 6da2ca09..f21352a3 100644 --- a/Sony/Sony_a6700_Sigma 18-50 F2.8 DC DN_50.00mm_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_Sigma 18-50 F2.8 DC DN_50.00mm_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "50.00mm", "calibrated_by": "Doğukan Sunar", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Sigma 18-50 F2.8 DC DN", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_Sigma 18-50 f2.8 36.30mm__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a6700_Sigma 18-50 f2.8 36.30mm__4k_16by9_3840x2160-50.00fps.json index 203aab75..f3a73e4d 100644 --- a/Sony/Sony_a6700_Sigma 18-50 f2.8 36.30mm__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a6700_Sigma 18-50 f2.8 36.30mm__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "于朔源", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Sigma 18-50 f2.8 36.30mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_Sigma 18-50_@_4k_16by9_3840x2160-29.97fps - Jack Grasso - 2.json b/Sony/Sony_a6700_Sigma 18-50_@_4k_16by9_3840x2160-29.97fps - Jack Grasso - 2.json index fdbf8fa0..d43d2d44 100644 --- a/Sony/Sony_a6700_Sigma 18-50_@_4k_16by9_3840x2160-29.97fps - Jack Grasso - 2.json +++ b/Sony/Sony_a6700_Sigma 18-50_@_4k_16by9_3840x2160-29.97fps - Jack Grasso - 2.json @@ -3,7 +3,7 @@ "note": "24mm", "calibrated_by": "Jack Grasso", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Sigma 18-50", "camera_setting": "@", "calib_dimension": { diff --git a/Sony/Sony_a6700_Sigma 18-50_@_4k_16by9_3840x2160-29.97fps - Jack Grasso - 3.json b/Sony/Sony_a6700_Sigma 18-50_@_4k_16by9_3840x2160-29.97fps - Jack Grasso - 3.json index fd5fb2fb..4d12acc8 100644 --- a/Sony/Sony_a6700_Sigma 18-50_@_4k_16by9_3840x2160-29.97fps - Jack Grasso - 3.json +++ b/Sony/Sony_a6700_Sigma 18-50_@_4k_16by9_3840x2160-29.97fps - Jack Grasso - 3.json @@ -3,7 +3,7 @@ "note": "18mm", "calibrated_by": "Jack Grasso", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Sigma 18-50", "camera_setting": "@", "calib_dimension": { diff --git a/Sony/Sony_a6700_Sigma 18-50_@_4k_16by9_3840x2160-29.97fps - Jack Grasso - 4.json b/Sony/Sony_a6700_Sigma 18-50_@_4k_16by9_3840x2160-29.97fps - Jack Grasso - 4.json index 90dcd218..d44eb401 100644 --- a/Sony/Sony_a6700_Sigma 18-50_@_4k_16by9_3840x2160-29.97fps - Jack Grasso - 4.json +++ b/Sony/Sony_a6700_Sigma 18-50_@_4k_16by9_3840x2160-29.97fps - Jack Grasso - 4.json @@ -3,7 +3,7 @@ "note": "35mm", "calibrated_by": "Jack Grasso", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Sigma 18-50", "camera_setting": "@", "calib_dimension": { diff --git a/Sony/Sony_a6700_Sigma 18-50_@_4k_16by9_3840x2160-29.97fps - Jack Grasso - 5.json b/Sony/Sony_a6700_Sigma 18-50_@_4k_16by9_3840x2160-29.97fps - Jack Grasso - 5.json index 66f09369..cc2f650b 100644 --- a/Sony/Sony_a6700_Sigma 18-50_@_4k_16by9_3840x2160-29.97fps - Jack Grasso - 5.json +++ b/Sony/Sony_a6700_Sigma 18-50_@_4k_16by9_3840x2160-29.97fps - Jack Grasso - 5.json @@ -3,7 +3,7 @@ "note": "50mm", "calibrated_by": "Jack Grasso", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Sigma 18-50", "camera_setting": "@", "calib_dimension": { diff --git a/Sony/Sony_a6700_Sigma 18-50_@_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6700_Sigma 18-50_@_4k_16by9_3840x2160-29.97fps.json index 8aa7ff17..790d93e3 100644 --- a/Sony/Sony_a6700_Sigma 18-50_@_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6700_Sigma 18-50_@_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "28mm", "calibrated_by": "Jack Grasso", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Sigma 18-50", "camera_setting": "@", "calib_dimension": { diff --git a/Sony/Sony_a6700_Sigma 18-50mm F2.8 24.0mm__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a6700_Sigma 18-50mm F2.8 24.0mm__4k_16by9_3840x2160-50.00fps.json index 4e847ecd..5760cb5b 100644 --- a/Sony/Sony_a6700_Sigma 18-50mm F2.8 24.0mm__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a6700_Sigma 18-50mm F2.8 24.0mm__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "yangjy", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Sigma 18-50mm F2.8 24.0mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_Sigma 18-50mm F2.8 35.0mm__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a6700_Sigma 18-50mm F2.8 35.0mm__4k_16by9_3840x2160-50.00fps.json index 8e6be396..e06e1305 100644 --- a/Sony/Sony_a6700_Sigma 18-50mm F2.8 35.0mm__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a6700_Sigma 18-50mm F2.8 35.0mm__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "yangjy", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Sigma 18-50mm F2.8 35.0mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_Sigma 18.50 F2.8 DC DN_24.20mm_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_Sigma 18.50 F2.8 DC DN_24.20mm_4k_16by9_3840x2160-59.94fps.json index 87da9fcd..5a5aa1fd 100644 --- a/Sony/Sony_a6700_Sigma 18.50 F2.8 DC DN_24.20mm_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_Sigma 18.50 F2.8 DC DN_24.20mm_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "24.20mm", "calibrated_by": "Doğukan Sunar", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Sigma 18.50 F2.8 DC DN", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_Sigma 30mm F1.4 DC Art APS-C_a6700_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6700_Sigma 30mm F1.4 DC Art APS-C_a6700_4k_16by9_3840x2160-29.97fps.json index c9403d8c..5a1ab11b 100644 --- a/Sony/Sony_a6700_Sigma 30mm F1.4 DC Art APS-C_a6700_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6700_Sigma 30mm F1.4 DC Art APS-C_a6700_4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Bert504", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "a6700", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_Sigma 30mm f 1.4_30mm f1.4_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6700_Sigma 30mm f 1.4_30mm f1.4_4k_16by9_3840x2160-23.98fps.json index 43fd4f53..9edbf67f 100644 --- a/Sony/Sony_a6700_Sigma 30mm f 1.4_30mm f1.4_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6700_Sigma 30mm f 1.4_30mm f1.4_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Dboybaker", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Sigma 30mm f 1.4", "camera_setting": "30mm f1.4", "calib_dimension": { diff --git a/Sony/Sony_a6700_Sigma 56.00mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6700_Sigma 56.00mm__4k_16by9_3840x2160-23.98fps.json index 457d9ce1..ab0a456d 100644 --- a/Sony/Sony_a6700_Sigma 56.00mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6700_Sigma 56.00mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "hardRotator", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Sigma 56.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_Sigma 56.00mm__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_Sigma 56.00mm__4k_16by9_3840x2160-59.94fps.json index 667e9e23..2c1027e0 100644 --- a/Sony/Sony_a6700_Sigma 56.00mm__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_Sigma 56.00mm__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Andrew", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Sigma 56.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_Sigma 56mm 1.4__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a6700_Sigma 56mm 1.4__4k_16by9_3840x2160-50.00fps.json index e58c1d12..e926c0af 100644 --- a/Sony/Sony_a6700_Sigma 56mm 1.4__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a6700_Sigma 56mm 1.4__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Greg Stoddard", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Sigma 56mm 1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_Sigma 56mm f1.4__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6700_Sigma 56mm f1.4__4k_16by9_3840x2160-29.97fps.json index e3523db9..d6dc6791 100644 --- a/Sony/Sony_a6700_Sigma 56mm f1.4__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6700_Sigma 56mm f1.4__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Sean Chao", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Sigma 56mm f1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_Sirui Sniper 23mm F1.2__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a6700_Sirui Sniper 23mm F1.2__4k_16by9_3840x2160-29.97fps.json index 016b59aa..9fec0eed 100644 --- a/Sony/Sony_a6700_Sirui Sniper 23mm F1.2__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a6700_Sirui Sniper 23mm F1.2__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Sean Chao", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Sirui Sniper 23mm F1.2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_Sony 15.00mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6700_Sony 15.00mm__4k_16by9_3840x2160-25.00fps.json index 5b147d6b..e6d872d5 100644 --- a/Sony/Sony_a6700_Sony 15.00mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6700_Sony 15.00mm__4k_16by9_3840x2160-25.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Guido Ambrosi", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_Sony 18-135mm f5.6 135.00mm__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_Sony 18-135mm f5.6 135.00mm__4k_16by9_3840x2160-59.94fps.json index ce11f973..f4af021e 100644 --- a/Sony/Sony_a6700_Sony 18-135mm f5.6 135.00mm__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_Sony 18-135mm f5.6 135.00mm__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Raoby Z", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Sony 18-135mm f5.6 135.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_Sony 50-210.00mm__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6700_Sony 50-210.00mm__1080p_16by9_1920x1080-59.94fps.json index 01f63c54..d5249673 100644 --- a/Sony/Sony_a6700_Sony 50-210.00mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6700_Sony 50-210.00mm__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Dboy Baker", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Sony 50-210.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_Sony 50mm F1.8__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6700_Sony 50mm F1.8__4k_16by9_3840x2160-23.98fps.json index 743f3f45..46304a4d 100644 --- a/Sony/Sony_a6700_Sony 50mm F1.8__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6700_Sony 50mm F1.8__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Dboybaker", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Sony 50mm F1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_Sony 70-350_70mm_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_Sony 70-350_70mm_4k_16by9_3840x2160-59.94fps.json index 64c07a2a..58f52494 100644 --- a/Sony/Sony_a6700_Sony 70-350_70mm_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_Sony 70-350_70mm_4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Ralf Maier", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_TAMRON 18.00mm__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6700_TAMRON 18.00mm__1080p_16by9_1920x1080-59.94fps.json index fcae01a7..50eae217 100644 --- a/Sony/Sony_a6700_TAMRON 18.00mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6700_TAMRON 18.00mm__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Tao Jiang", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "TAMRON 18.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_TAMRON_17-70_17.00mm__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a6700_TAMRON_17-70_17.00mm__4k_16by9_3840x2160-50.00fps.json index 536946b0..88fef69e 100644 --- a/Sony/Sony_a6700_TAMRON_17-70_17.00mm__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a6700_TAMRON_17-70_17.00mm__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ChenTao", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "TAMRON_17-70_17.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_TARMRON 18-300__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a6700_TARMRON 18-300__4k_16by9_3840x2160-50.00fps.json index c844aa88..a4760fba 100644 --- a/Sony/Sony_a6700_TARMRON 18-300__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a6700_TARMRON 18-300__4k_16by9_3840x2160-50.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Administrator", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_TTArtisan AF 27mm f2.8__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a6700_TTArtisan AF 27mm f2.8__1080p_16by9_1920x1080-59.94fps.json index 32fe8cb9..7304b32c 100644 --- a/Sony/Sony_a6700_TTArtisan AF 27mm f2.8__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a6700_TTArtisan AF 27mm f2.8__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "刘昊林", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "TTArtisan AF 27mm f/2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_Tamron 17-70mm @ 35mm__1080p_16by9_1920x1080-23.98fps.json b/Sony/Sony_a6700_Tamron 17-70mm @ 35mm__1080p_16by9_1920x1080-23.98fps.json index e29335c1..dad230df 100644 --- a/Sony/Sony_a6700_Tamron 17-70mm @ 35mm__1080p_16by9_1920x1080-23.98fps.json +++ b/Sony/Sony_a6700_Tamron 17-70mm @ 35mm__1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Daniel Szczesniewski", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Tamron 17-70mm @ 35mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_Tamron 17-70mm_17mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6700_Tamron 17-70mm_17mm_4k_16by9_3840x2160-25.00fps.json index 57451016..7d679d8b 100644 --- a/Sony/Sony_a6700_Tamron 17-70mm_17mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6700_Tamron 17-70mm_17mm_4k_16by9_3840x2160-25.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "QEmine", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_Tamron 18-300 (18.00mm)__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a6700_Tamron 18-300 (18.00mm)__4k_16by9_3840x2160-23.98fps.json index 080f168d..3417edc4 100644 --- a/Sony/Sony_a6700_Tamron 18-300 (18.00mm)__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a6700_Tamron 18-300 (18.00mm)__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jonathan Ong", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Tamron 18-300 (18.00mm)", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_Tamron 28-75 F2.8 Di III RXD_24p_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_Tamron 28-75 F2.8 Di III RXD_24p_4k_16by9_3840x2160-59.94fps.json index 47d27f0e..b219b9f7 100644 --- a/Sony/Sony_a6700_Tamron 28-75 F2.8 Di III RXD_24p_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_Tamron 28-75 F2.8 Di III RXD_24p_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "hardRotator", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Tamron 28-75 F2.8 Di III RXD", "camera_setting": "24p", "calib_dimension": { diff --git a/Sony/Sony_a6700_VILTROX 27.00mm_25fps_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6700_VILTROX 27.00mm_25fps_4k_16by9_3840x2160-25.00fps.json index 307c5fbe..8269343f 100644 --- a/Sony/Sony_a6700_VILTROX 27.00mm_25fps_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6700_VILTROX 27.00mm_25fps_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "25fps", "calibrated_by": "yinpeng", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "VILTROX 27.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_Viltrox 27mm__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_Viltrox 27mm__4k_16by9_3840x2160-59.94fps.json index 885c51be..10f761c8 100644 --- a/Sony/Sony_a6700_Viltrox 27mm__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_Viltrox 27mm__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Hikara N", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Viltrox 27mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_Yashinon-DS 50mm f1.2_1125 ISO 800_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_Yashinon-DS 50mm f1.2_1125 ISO 800_4k_16by9_3840x2160-59.94fps.json index af36267c..e49b8582 100644 --- a/Sony/Sony_a6700_Yashinon-DS 50mm f1.2_1125 ISO 800_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_Yashinon-DS 50mm f1.2_1125 ISO 800_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "16x9", "calibrated_by": "Travels", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Yashinon-DS 50mm f1.2", "camera_setting": "1/125 ISO 800", "calib_dimension": { diff --git a/Sony/Sony_a6700_Yongnuo 11mm F1.8S DA__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a6700_Yongnuo 11mm F1.8S DA__4k_16by9_3840x2160-50.00fps.json index f56ff877..2ae4852c 100644 --- a/Sony/Sony_a6700_Yongnuo 11mm F1.8S DA__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a6700_Yongnuo 11mm F1.8S DA__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Dimitri Roggon", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "Yongnuo 11mm F/1.8S DA", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_Yongnuo 16.00mm__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_Yongnuo 16.00mm__4k_16by9_3840x2160-59.94fps.json index 17f7927e..9bb5d355 100644 --- a/Sony/Sony_a6700_Yongnuo 16.00mm__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_Yongnuo 16.00mm__4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Administrator", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_e 18-70 f2.6_50fps_1080p_16by9_1920x1080-58.53fps.json b/Sony/Sony_a6700_e 18-70 f2.6_50fps_1080p_16by9_1920x1080-58.53fps.json index 12338831..f6feea7f 100644 --- a/Sony/Sony_a6700_e 18-70 f2.6_50fps_1080p_16by9_1920x1080-58.53fps.json +++ b/Sony/Sony_a6700_e 18-70 f2.6_50fps_1080p_16by9_1920x1080-58.53fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "e 18-70 f2.6", "camera_setting": "50fps", "calib_dimension": { diff --git a/Sony/Sony_a6700_laowa 9mm__4k_16by9_3840x2160-50.00fps - Antonello Curci - 2.json b/Sony/Sony_a6700_laowa 9mm__4k_16by9_3840x2160-50.00fps - Antonello Curci - 2.json index 4e9a045c..0bdddca7 100644 --- a/Sony/Sony_a6700_laowa 9mm__4k_16by9_3840x2160-50.00fps - Antonello Curci - 2.json +++ b/Sony/Sony_a6700_laowa 9mm__4k_16by9_3840x2160-50.00fps - Antonello Curci - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Antonello Curci", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "laowa 9mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_sanyang12mmF2.0__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_sanyang12mmF2.0__4k_16by9_3840x2160-59.94fps.json index 5320085b..8d41bf0a 100644 --- a/Sony/Sony_a6700_sanyang12mmF2.0__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_sanyang12mmF2.0__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "sanyang12mmF2.0", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_sigma 16-28mmF2.8(16.00mm)__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a6700_sigma 16-28mmF2.8(16.00mm)__4k_16by9_3840x2160-50.00fps.json index bd9e01b7..f341e7f1 100644 --- a/Sony/Sony_a6700_sigma 16-28mmF2.8(16.00mm)__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a6700_sigma 16-28mmF2.8(16.00mm)__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "朱浩轩", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "sigma 16-28mmF2.8(16.00mm)", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_sigma 18-50 24mm__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_sigma 18-50 24mm__4k_16by9_3840x2160-59.94fps.json index d23c9984..f93ef648 100644 --- a/Sony/Sony_a6700_sigma 18-50 24mm__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_sigma 18-50 24mm__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Benson", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "sigma 18-50 24mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_sigma 18-50 28mm__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_sigma 18-50 28mm__4k_16by9_3840x2160-59.94fps.json index b0f077ea..92c4a0aa 100644 --- a/Sony/Sony_a6700_sigma 18-50 28mm__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_sigma 18-50 28mm__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Benson", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "sigma 18-50 28mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_sigma 18-50 35mm__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_sigma 18-50 35mm__4k_16by9_3840x2160-59.94fps.json index 5325ed07..4c94bd31 100644 --- a/Sony/Sony_a6700_sigma 18-50 35mm__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_sigma 18-50 35mm__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Benson", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "sigma 18-50 35mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_sigma 18-50 50mm__1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a6700_sigma 18-50 50mm__1080p_16by9_1920x1080-25.00fps.json index 98ebba88..cff1497a 100644 --- a/Sony/Sony_a6700_sigma 18-50 50mm__1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a6700_sigma 18-50 50mm__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "葛大爷", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "sigma 18-50 50mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_sigma 18-50 50mm__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_sigma 18-50 50mm__4k_16by9_3840x2160-59.94fps.json index 5a9e8857..1bfdc99a 100644 --- a/Sony/Sony_a6700_sigma 18-50 50mm__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_sigma 18-50 50mm__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Benson", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "sigma 18-50 50mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_sigma 18-50 F2.8 18.00mm__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a6700_sigma 18-50 F2.8 18.00mm__4k_16by9_3840x2160-50.00fps.json index ceaeac32..d67ec2d7 100644 --- a/Sony/Sony_a6700_sigma 18-50 F2.8 18.00mm__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a6700_sigma 18-50 F2.8 18.00mm__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "yangjy", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "sigma 18-50 F2.8 18.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_sigma 18-50@18.00mm__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_sigma 18-50@18.00mm__4k_16by9_3840x2160-59.94fps.json index c51b23c0..0ed6f63d 100644 --- a/Sony/Sony_a6700_sigma 18-50@18.00mm__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_sigma 18-50@18.00mm__4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "zhenyu", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_sigma 18-50mm__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a6700_sigma 18-50mm__4k_16by9_3840x2160-50.00fps.json index 0ddf9e30..4405bc77 100644 --- a/Sony/Sony_a6700_sigma 18-50mm__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a6700_sigma 18-50mm__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "JMIGUEL", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "sigma 18-50mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_sigma 23.00 mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a6700_sigma 23.00 mm__4k_16by9_3840x2160-25.00fps.json index 8e5ff34e..d9bba85b 100644 --- a/Sony/Sony_a6700_sigma 23.00 mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a6700_sigma 23.00 mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Guido Ambrosi", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "sigma 23.00 mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_sigma 23.00mm f1.4__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_sigma 23.00mm f1.4__4k_16by9_3840x2160-59.94fps.json index fd1a040c..c495199e 100644 --- a/Sony/Sony_a6700_sigma 23.00mm f1.4__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_sigma 23.00mm f1.4__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Momiji", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "sigma 23.00mm f1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_sigma 30 F1.4 DC DN__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a6700_sigma 30 F1.4 DC DN__4k_16by9_3840x2160-50.00fps.json index ba9523aa..1123e39b 100644 --- a/Sony/Sony_a6700_sigma 30 F1.4 DC DN__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a6700_sigma 30 F1.4 DC DN__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Yx Tao", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "sigma 30 F1.4 DC DN", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_sigma 30.00mm__4k_16by9_3840x2160-59.94fps - 3.json b/Sony/Sony_a6700_sigma 30.00mm__4k_16by9_3840x2160-59.94fps - 3.json index 10366dc2..eb52d177 100644 --- a/Sony/Sony_a6700_sigma 30.00mm__4k_16by9_3840x2160-59.94fps - 3.json +++ b/Sony/Sony_a6700_sigma 30.00mm__4k_16by9_3840x2160-59.94fps - 3.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "叶子夜", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "sigma 30.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_sigma 30.00mm__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_sigma 30.00mm__4k_16by9_3840x2160-59.94fps.json index 8a44bf87..f196a921 100644 --- a/Sony/Sony_a6700_sigma 30.00mm__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_sigma 30.00mm__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "叶子夜", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "sigma 30.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_sigma 30f1.4__1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a6700_sigma 30f1.4__1080p_16by9_1920x1080-25.00fps.json index 50e4980a..6e7939f9 100644 --- a/Sony/Sony_a6700_sigma 30f1.4__1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a6700_sigma 30f1.4__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "葛大爷", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "sigma 30f1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_sigma 56.00mm F1.4__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a6700_sigma 56.00mm F1.4__4k_16by9_3840x2160-50.00fps.json index da7d9b07..54756299 100644 --- a/Sony/Sony_a6700_sigma 56.00mm F1.4__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a6700_sigma 56.00mm F1.4__4k_16by9_3840x2160-50.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "yangjy", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_sigma(18 50)-18mm__1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a6700_sigma(18 50)-18mm__1080p_16by9_1920x1080-25.00fps.json index ef58a223..1d5d2846 100644 --- a/Sony/Sony_a6700_sigma(18 50)-18mm__1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a6700_sigma(18 50)-18mm__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "葛大爷", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "sigma(18 50)-18mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_sigma(18 50)-35mm__1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a6700_sigma(18 50)-35mm__1080p_16by9_1920x1080-25.00fps.json index 42ce8b6d..fef1e807 100644 --- a/Sony/Sony_a6700_sigma(18 50)-35mm__1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a6700_sigma(18 50)-35mm__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "葛大爷", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "sigma(18 50)-35mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_sigma18-50 18.00mm__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_sigma18-50 18.00mm__4k_16by9_3840x2160-59.94fps.json index b4e7b14e..bbf7586e 100644 --- a/Sony/Sony_a6700_sigma18-50 18.00mm__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_sigma18-50 18.00mm__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "sigma18-50 18.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_sigma18-50mm F2.8 50.00mm__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a6700_sigma18-50mm F2.8 50.00mm__4k_16by9_3840x2160-50.00fps.json index 8ece63e8..e17c4ce6 100644 --- a/Sony/Sony_a6700_sigma18-50mm F2.8 50.00mm__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a6700_sigma18-50mm F2.8 50.00mm__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "yangjy", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "sigma18-50mm F2.8 50.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_sony 18-105mm F4 G_18mm_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a6700_sony 18-105mm F4 G_18mm_4k_16by9_3840x2160-50.00fps.json index 8bba3d08..58846641 100644 --- a/Sony/Sony_a6700_sony 18-105mm F4 G_18mm_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a6700_sony 18-105mm F4 G_18mm_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "18mm", "calibrated_by": "Yx Tao", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "sony 18-105mm F4 G", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_tamron 17-70 2.8__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_tamron 17-70 2.8__4k_16by9_3840x2160-59.94fps.json index 8d1a8ea9..5122c487 100644 --- a/Sony/Sony_a6700_tamron 17-70 2.8__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_tamron 17-70 2.8__4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "1234", "calibrator_version": "1.5.0", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a6700_viltrox 27.00 1.2pro__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_viltrox 27.00 1.2pro__4k_16by9_3840x2160-59.94fps.json index 46781050..2000f5b3 100644 --- a/Sony/Sony_a6700_viltrox 27.00 1.2pro__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_viltrox 27.00 1.2pro__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "子夜的叶子", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "viltrox唯卓仕 27.00 1.2pro", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_viltrox 27.00 1.2promm__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_viltrox 27.00 1.2promm__4k_16by9_3840x2160-59.94fps.json index 2bac3db4..3eb714cd 100644 --- a/Sony/Sony_a6700_viltrox 27.00 1.2promm__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_viltrox 27.00 1.2promm__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "子夜的叶子", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "lens_model": "viltrox唯卓仕 27.00 1.2promm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a6700_yongnuo 11.00mm f1.8__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a6700_yongnuo 11.00mm f1.8__4k_16by9_3840x2160-59.94fps.json index 6665a537..7f67bf5d 100644 --- a/Sony/Sony_a6700_yongnuo 11.00mm f1.8__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a6700_yongnuo 11.00mm f1.8__4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "vimoon", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a6700", + "camera_model": "Alpha 6700", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a77_16__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a77_16__1080p_16by9_1920x1080-59.94fps.json index f08d0c34..b2747c3b 100644 --- a/Sony/Sony_a77_16__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a77_16__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a77", + "camera_model": "Alpha 77", "lens_model": "16", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_102.00mm_A7C2_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7CII_102.00mm_A7C2_1080p_16by9_1920x1080-59.94fps.json index 90d99be8..68a24d87 100644 --- a/Sony/Sony_a7CII_102.00mm_A7C2_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7CII_102.00mm_A7C2_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "YAW LC", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "102.00mm", "camera_setting": "A7C2", "calib_dimension": { diff --git a/Sony/Sony_a7CII_14.00mm samyang__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7CII_14.00mm samyang__4k_16by9_3840x2160-23.98fps.json index c4f859f6..8127aeb5 100644 --- a/Sony/Sony_a7CII_14.00mm samyang__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7CII_14.00mm samyang__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Juan José Jodar Dominguez", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "14.00mm samyang", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_16-28 2.8_24_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7CII_16-28 2.8_24_4k_16by9_3840x2160-23.98fps.json index cf3a3f6a..1fcb6c41 100644 --- a/Sony/Sony_a7CII_16-28 2.8_24_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7CII_16-28 2.8_24_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Shadow", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "16-28 2.8", "camera_setting": "24", "calib_dimension": { diff --git a/Sony/Sony_a7CII_16-50 20MM_60_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7CII_16-50 20MM_60_4k_16by9_3840x2160-59.94fps.json index 231afc5b..13f2a7af 100644 --- a/Sony/Sony_a7CII_16-50 20MM_60_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7CII_16-50 20MM_60_4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "wei", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "60", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_16-50 apsc_60_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7CII_16-50 apsc_60_4k_16by9_3840x2160-59.94fps.json index d5551c40..b61a7c88 100644 --- a/Sony/Sony_a7CII_16-50 apsc_60_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7CII_16-50 apsc_60_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "wei", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "16-50 apsc", "camera_setting": "60", "calib_dimension": { diff --git a/Sony/Sony_a7CII_18.00mm_SAMYANG_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7CII_18.00mm_SAMYANG_4k_16by9_3840x2160-29.97fps.json index cb12c099..1e98e32b 100644 --- a/Sony/Sony_a7CII_18.00mm_SAMYANG_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7CII_18.00mm_SAMYANG_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "SAMYANG", "calibrated_by": "masa", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "18.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_20.00mm_viltrox_20mm_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7CII_20.00mm_viltrox_20mm_4k_16by9_3840x2160-29.97fps.json index efa2791b..0ab5263e 100644 --- a/Sony/Sony_a7CII_20.00mm_viltrox_20mm_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7CII_20.00mm_viltrox_20mm_4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "徐松", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_2875G2__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7CII_2875G2__4k_16by9_3840x2160-50.00fps.json index 977365b2..e55335c5 100644 --- a/Sony/Sony_a7CII_2875G2__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7CII_2875G2__4k_16by9_3840x2160-50.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "刘思睿", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_2875g2_75mm__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7CII_2875g2_75mm__4k_16by9_3840x2160-50.00fps.json index 34769eab..83bb1f67 100644 --- a/Sony/Sony_a7CII_2875g2_75mm__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7CII_2875g2_75mm__4k_16by9_3840x2160-50.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "刘思睿", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_35mm APSC Mode_100s_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7CII_35mm APSC Mode_100s_4k_16by9_3840x2160-25.00fps.json index a5fe1e6c..0d42374b 100644 --- a/Sony/Sony_a7CII_35mm APSC Mode_100s_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7CII_35mm APSC Mode_100s_4k_16by9_3840x2160-25.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Mark", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "100/s", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_50.00mm_yongnuo50mm1.8_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7CII_50.00mm_yongnuo50mm1.8_4k_16by9_3840x2160-29.97fps.json index 1616c350..c17b6444 100644 --- a/Sony/Sony_a7CII_50.00mm_yongnuo50mm1.8_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7CII_50.00mm_yongnuo50mm1.8_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ricky", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "50.00mm", "camera_setting": "yongnuo50mm1.8", "calib_dimension": { diff --git a/Sony/Sony_a7CII_50.00mm_yongnuo_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7CII_50.00mm_yongnuo_4k_16by9_3840x2160-29.97fps.json index abf21e85..54244625 100644 --- a/Sony/Sony_a7CII_50.00mm_yongnuo_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7CII_50.00mm_yongnuo_4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "ricky", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "yongnuo", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_75.00mm F1.8 SAMYANG__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7CII_75.00mm F1.8 SAMYANG__4k_16by9_3840x2160-29.97fps.json index 77f98405..cb600530 100644 --- a/Sony/Sony_a7CII_75.00mm F1.8 SAMYANG__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7CII_75.00mm F1.8 SAMYANG__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "彭振宇", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "75.00mm F1.8 SAMYANG", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_75.00mm_1640s 75mm_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7CII_75.00mm_1640s 75mm_4k_16by9_3840x2160-50.00fps.json index 2b7058eb..52193593 100644 --- a/Sony/Sony_a7CII_75.00mm_1640s 75mm_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7CII_75.00mm_1640s 75mm_4k_16by9_3840x2160-50.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "WD", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "1/640s 75mm", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_FE 20-70g f4_@_4k_16by9_3840x2160-25.00fps - SmileDoge - 2.json b/Sony/Sony_a7CII_FE 20-70g f4_@_4k_16by9_3840x2160-25.00fps - SmileDoge - 2.json index 2ce06465..018bb0a7 100644 --- a/Sony/Sony_a7CII_FE 20-70g f4_@_4k_16by9_3840x2160-25.00fps - SmileDoge - 2.json +++ b/Sony/Sony_a7CII_FE 20-70g f4_@_4k_16by9_3840x2160-25.00fps - SmileDoge - 2.json @@ -7,7 +7,7 @@ "calibrated_by": "SmileDoge", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "@", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_FE 20-70g f4_@_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7CII_FE 20-70g f4_@_4k_16by9_3840x2160-25.00fps.json index 3fc0a3bd..d9d5cfe6 100644 --- a/Sony/Sony_a7CII_FE 20-70g f4_@_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7CII_FE 20-70g f4_@_4k_16by9_3840x2160-25.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "SmileDoge", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "@", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_FE 20-70mm F4_@20mm F4 S1200_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7CII_FE 20-70mm F4_@20mm F4 S1200_4k_16by9_3840x2160-29.97fps.json index 419f40ab..a1d2123e 100644 --- a/Sony/Sony_a7CII_FE 20-70mm F4_@20mm F4 S1200_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7CII_FE 20-70mm F4_@20mm F4 S1200_4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Spyros", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "@20mm F4 S1/200", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_FE 20-70mm F4_@20mm_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7CII_FE 20-70mm F4_@20mm_4k_16by9_3840x2160-29.97fps.json index 71d801ae..9c2487b8 100644 --- a/Sony/Sony_a7CII_FE 20-70mm F4_@20mm_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7CII_FE 20-70mm F4_@20mm_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "F7.1", "calibrated_by": "Spyros", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "FE 20-70mm F4", "camera_setting": "@20mm", "calib_dimension": { diff --git a/Sony/Sony_a7CII_FE 20-70mm_@20mm_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7CII_FE 20-70mm_@20mm_4k_16by9_3840x2160-29.97fps.json index ea9494a8..2c699730 100644 --- a/Sony/Sony_a7CII_FE 20-70mm_@20mm_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7CII_FE 20-70mm_@20mm_4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Spyros", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "@20mm", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_FE 24-105G__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7CII_FE 24-105G__4k_16by9_3840x2160-29.97fps.json index b33bd696..45d38d8e 100644 --- a/Sony/Sony_a7CII_FE 24-105G__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7CII_FE 24-105G__4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "user", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_FE85F1.8__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7CII_FE85F1.8__4k_16by9_3840x2160-29.97fps.json index 0587dc45..706ba127 100644 --- a/Sony/Sony_a7CII_FE85F1.8__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7CII_FE85F1.8__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eric", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "FE85/F1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_Kodak 30mm F10 Disposal Lens__1080p_16by9_1920x1080-23.98fps.json b/Sony/Sony_a7CII_Kodak 30mm F10 Disposal Lens__1080p_16by9_1920x1080-23.98fps.json index d2fd139e..4312bfde 100644 --- a/Sony/Sony_a7CII_Kodak 30mm F10 Disposal Lens__1080p_16by9_1920x1080-23.98fps.json +++ b/Sony/Sony_a7CII_Kodak 30mm F10 Disposal Lens__1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Hoyeon", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "Kodak 30mm F10 Disposal Lens", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_Kodak 30mm f10__4k_16by9_3840x2160-23.98fps - Hoyeon - 2.json b/Sony/Sony_a7CII_Kodak 30mm f10__4k_16by9_3840x2160-23.98fps - Hoyeon - 2.json index 7e2b7e74..a4a85d4e 100644 --- a/Sony/Sony_a7CII_Kodak 30mm f10__4k_16by9_3840x2160-23.98fps - Hoyeon - 2.json +++ b/Sony/Sony_a7CII_Kodak 30mm f10__4k_16by9_3840x2160-23.98fps - Hoyeon - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Hoyeon", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "Kodak 30mm f10", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_Kodak 30mm f10__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7CII_Kodak 30mm f10__4k_16by9_3840x2160-23.98fps.json index 29d1cba4..10408fbc 100644 --- a/Sony/Sony_a7CII_Kodak 30mm f10__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7CII_Kodak 30mm f10__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Hoyeon", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "Kodak 30mm f10", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_SONY 20-70 F4G 20-70mm__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7CII_SONY 20-70 F4G 20-70mm__4k_16by9_3840x2160-59.94fps.json index e60b5703..d21273c4 100644 --- a/Sony/Sony_a7CII_SONY 20-70 F4G 20-70mm__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7CII_SONY 20-70 F4G 20-70mm__4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "寂听", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_SONY 20-70 F4G 20mm__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7CII_SONY 20-70 F4G 20mm__4k_16by9_3840x2160-59.94fps.json index a3341190..a1c9b3bb 100644 --- a/Sony/Sony_a7CII_SONY 20-70 F4G 20mm__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7CII_SONY 20-70 F4G 20mm__4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "寂听", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_Samyang 35.00mm__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7CII_Samyang 35.00mm__4k_16by9_3840x2160-50.00fps.json index e8d742e6..cd203e20 100644 --- a/Sony/Sony_a7CII_Samyang 35.00mm__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7CII_Samyang 35.00mm__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Mattia", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "Samyang 35.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_Samyang V-AF T1.9 75mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7CII_Samyang V-AF T1.9 75mm__4k_16by9_3840x2160-29.97fps.json index 0eed22bf..ba41c961 100644 --- a/Sony/Sony_a7CII_Samyang V-AF T1.9 75mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7CII_Samyang V-AF T1.9 75mm__4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Andreas Björklund", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_Sig28-70F2.8_@70 APSC_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7CII_Sig28-70F2.8_@70 APSC_4k_16by9_3840x2160-59.94fps.json index 1c605132..c653b884 100644 --- a/Sony/Sony_a7CII_Sig28-70F2.8_@70 APSC_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7CII_Sig28-70F2.8_@70 APSC_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eric", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "Sig28-70/F2.8", "camera_setting": "@70 APSC", "calib_dimension": { diff --git a/Sony/Sony_a7CII_Sig28-70f2.8_@50_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7CII_Sig28-70f2.8_@50_4k_16by9_3840x2160-29.97fps.json index 57c1a77e..28cf8298 100644 --- a/Sony/Sony_a7CII_Sig28-70f2.8_@50_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7CII_Sig28-70f2.8_@50_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eric", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "Sig28-70/f2.8", "camera_setting": "@50", "calib_dimension": { diff --git a/Sony/Sony_a7CII_Sig28-70f2.8_@70_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7CII_Sig28-70f2.8_@70_4k_16by9_3840x2160-29.97fps.json index 730c13aa..fc7bc468 100644 --- a/Sony/Sony_a7CII_Sig28-70f2.8_@70_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7CII_Sig28-70f2.8_@70_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eric", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "Sig28-70/f2.8", "camera_setting": "@70", "calib_dimension": { diff --git a/Sony/Sony_a7CII_Sigma 24-70 DG DN Art II__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7CII_Sigma 24-70 DG DN Art II__4k_16by9_3840x2160-23.98fps.json index 4387a502..63c7b5ba 100644 --- a/Sony/Sony_a7CII_Sigma 24-70 DG DN Art II__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7CII_Sigma 24-70 DG DN Art II__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Artem Bakuta", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "Sigma 24-70 DG DN Art II", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_Sony FE 35 f1.8_SS 1100_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7CII_Sony FE 35 f1.8_SS 1100_4k_16by9_3840x2160-25.00fps.json index b15b1c4f..63c54e00 100644 --- a/Sony/Sony_a7CII_Sony FE 35 f1.8_SS 1100_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7CII_Sony FE 35 f1.8_SS 1100_4k_16by9_3840x2160-25.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "putthigorn prommajaree", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "SS 1/100", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_Sony FE 55 f1.8_SS 1100_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7CII_Sony FE 55 f1.8_SS 1100_4k_16by9_3840x2160-25.00fps.json index 6eed493f..9cd5cabf 100644 --- a/Sony/Sony_a7CII_Sony FE 55 f1.8_SS 1100_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7CII_Sony FE 55 f1.8_SS 1100_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "putthigorn prommajaree", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "Sony FE 55 f1.8", "camera_setting": "SS 1/100", "calib_dimension": { diff --git a/Sony/Sony_a7CII_TL2875 75.00mm__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7CII_TL2875 75.00mm__4k_16by9_3840x2160-50.00fps.json index 7c522f50..21437111 100644 --- a/Sony/Sony_a7CII_TL2875 75.00mm__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7CII_TL2875 75.00mm__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "WD", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "TL2875 75.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_TTartisan 11mm F2.8__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7CII_TTartisan 11mm F2.8__1080p_16by9_1920x1080-59.94fps.json index a9003391..32d01f78 100644 --- a/Sony/Sony_a7CII_TTartisan 11mm F2.8__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7CII_TTartisan 11mm F2.8__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Arakoyo", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "TTartisan 11mm F2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_Tam17-28f2.8_@20_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7CII_Tam17-28f2.8_@20_4k_16by9_3840x2160-29.97fps.json index 87e929c3..d5977378 100644 --- a/Sony/Sony_a7CII_Tam17-28f2.8_@20_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7CII_Tam17-28f2.8_@20_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eric", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "Tam17-28/f2.8", "camera_setting": "@20", "calib_dimension": { diff --git a/Sony/Sony_a7CII_Tam20F2.8_APSC_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7CII_Tam20F2.8_APSC_4k_16by9_3840x2160-59.94fps.json index bcb67676..b9637bff 100644 --- a/Sony/Sony_a7CII_Tam20F2.8_APSC_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7CII_Tam20F2.8_APSC_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eric", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "Tam20/F2.8", "camera_setting": "APSC", "calib_dimension": { diff --git a/Sony/Sony_a7CII_Tam20f2.8__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7CII_Tam20f2.8__4k_16by9_3840x2160-59.94fps.json index e853542b..c9332c4a 100644 --- a/Sony/Sony_a7CII_Tam20f2.8__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7CII_Tam20f2.8__4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Eric", "calibrator_version": "1.5.1", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_Tam20mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7CII_Tam20mm__4k_16by9_3840x2160-29.97fps.json index 2b47e909..c6b2b56e 100644 --- a/Sony/Sony_a7CII_Tam20mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7CII_Tam20mm__4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Eric", "calibrator_version": "1.5.1", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_Tam70-300f4.5-6.3_@135_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7CII_Tam70-300f4.5-6.3_@135_4k_16by9_3840x2160-29.97fps.json index b3426cff..e0a44953 100644 --- a/Sony/Sony_a7CII_Tam70-300f4.5-6.3_@135_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7CII_Tam70-300f4.5-6.3_@135_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eric", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "Tam70-300/f4.5-6.3", "camera_setting": "@135/", "calib_dimension": { diff --git a/Sony/Sony_a7CII_Tamron 17-28mm f2.8_17mm_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7CII_Tamron 17-28mm f2.8_17mm_4k_16by9_3840x2160-23.98fps.json index 449ada3b..93b5c472 100644 --- a/Sony/Sony_a7CII_Tamron 17-28mm f2.8_17mm_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7CII_Tamron 17-28mm f2.8_17mm_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Raf Ratay", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "Tamron 17-28mm f2.8", "camera_setting": "17mm", "calib_dimension": { diff --git a/Sony/Sony_a7CII_Tamron 20-40mm F2.8 DiIII VXD__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7CII_Tamron 20-40mm F2.8 DiIII VXD__4k_16by9_3840x2160-29.97fps.json index 67a3949f..e0fe9af6 100644 --- a/Sony/Sony_a7CII_Tamron 20-40mm F2.8 DiIII VXD__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7CII_Tamron 20-40mm F2.8 DiIII VXD__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "fryghost", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "Tamron 20-40mm F/2.8 DiIII VXD", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_Tamron 24.00mm f2.8__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7CII_Tamron 24.00mm f2.8__4k_16by9_3840x2160-29.97fps.json index 9917c2f0..29bc610d 100644 --- a/Sony/Sony_a7CII_Tamron 24.00mm f2.8__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7CII_Tamron 24.00mm f2.8__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "dai hang", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "Tamron 24.00mm f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_Tamron 24mm f2.8__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7CII_Tamron 24mm f2.8__4k_16by9_3840x2160-29.97fps.json index ef29de2b..be480f0f 100644 --- a/Sony/Sony_a7CII_Tamron 24mm f2.8__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7CII_Tamron 24mm f2.8__4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "dai hang", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_Tamron 28-200 @ 28.00mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7CII_Tamron 28-200 @ 28.00mm__4k_16by9_3840x2160-29.97fps.json index 0bc85dfc..5e441124 100644 --- a/Sony/Sony_a7CII_Tamron 28-200 @ 28.00mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7CII_Tamron 28-200 @ 28.00mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Gabriel Fontes", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "Tamron 28-200 @ 28.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_Tamron 28-200-28.00mm__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7CII_Tamron 28-200-28.00mm__1080p_16by9_1920x1080-50.00fps.json index 91859c1d..d57c365b 100644 --- a/Sony/Sony_a7CII_Tamron 28-200-28.00mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7CII_Tamron 28-200-28.00mm__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "PC", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "Tamron 28-200-28.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_Tamron17-28_@17 60p APSC_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7CII_Tamron17-28_@17 60p APSC_4k_16by9_3840x2160-29.97fps.json index b09a0916..cfef1e0a 100644 --- a/Sony/Sony_a7CII_Tamron17-28_@17 60p APSC_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7CII_Tamron17-28_@17 60p APSC_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eric", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "Tamron17-28", "camera_setting": "@17 60p APSC", "calib_dimension": { diff --git a/Sony/Sony_a7CII_Tokina Firin 20.00mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7CII_Tokina Firin 20.00mm__4k_16by9_3840x2160-23.98fps.json index c30303b1..115e5683 100644 --- a/Sony/Sony_a7CII_Tokina Firin 20.00mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7CII_Tokina Firin 20.00mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Kevin Arscott", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "Tokina Firin 20.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_VILTROX 27.00mm__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7CII_VILTROX 27.00mm__1080p_16by9_1920x1080-59.94fps.json index 3e2139de..ae02e83c 100644 --- a/Sony/Sony_a7CII_VILTROX 27.00mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7CII_VILTROX 27.00mm__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "VILTROX 27.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_VILTROX 16.00mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7CII_VILTROX 16.00mm__4k_16by9_3840x2160-25.00fps.json index 604d5c34..5ed15b16 100644 --- a/Sony/Sony_a7CII_VILTROX 16.00mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7CII_VILTROX 16.00mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "n yh", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "VILTROX 16.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_Viltrox 20 2.8_30 fps SS 1100_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7CII_Viltrox 20 2.8_30 fps SS 1100_4k_16by9_3840x2160-25.00fps.json index bab0ca48..b61a5ac8 100644 --- a/Sony/Sony_a7CII_Viltrox 20 2.8_30 fps SS 1100_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7CII_Viltrox 20 2.8_30 fps SS 1100_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "putthigorn prommajaree", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "Viltrox 20 2.8", "camera_setting": "30 fps SS 1/100", "calib_dimension": { diff --git a/Sony/Sony_a7CII_Viltrox 20 f2.8_SS 1100_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7CII_Viltrox 20 f2.8_SS 1100_4k_16by9_3840x2160-25.00fps.json index a7a5bbbd..55a8fca3 100644 --- a/Sony/Sony_a7CII_Viltrox 20 f2.8_SS 1100_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7CII_Viltrox 20 f2.8_SS 1100_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "putthigorn prommajaree", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "Viltrox 20 f2.8", "camera_setting": "SS 1/100", "calib_dimension": { diff --git a/Sony/Sony_a7CII_Viltrox 20mm f2.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7CII_Viltrox 20mm f2.8__4k_16by9_3840x2160-25.00fps.json index f67ccfa2..baabf7ac 100644 --- a/Sony/Sony_a7CII_Viltrox 20mm f2.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7CII_Viltrox 20mm f2.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Khaicho", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "Viltrox 20mm f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_Viltrox 20mm f2.8_cropped_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7CII_Viltrox 20mm f2.8_cropped_4k_16by9_3840x2160-50.00fps.json index 374d0291..557df66f 100644 --- a/Sony/Sony_a7CII_Viltrox 20mm f2.8_cropped_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7CII_Viltrox 20mm f2.8_cropped_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "cropped", "calibrated_by": "Khaicho", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "Viltrox 20mm f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_Viltrox 50mm F1.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7CII_Viltrox 50mm F1.8__4k_16by9_3840x2160-25.00fps.json index b0637e90..efb36f98 100644 --- a/Sony/Sony_a7CII_Viltrox 50mm F1.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7CII_Viltrox 50mm F1.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Paul Blamire", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "Viltrox 50mm F1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_Viltrox AF 20mm F2.8 FE_APSC_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7CII_Viltrox AF 20mm F2.8 FE_APSC_4k_16by9_3840x2160-59.94fps.json index 1f1cf9fa..276186f5 100644 --- a/Sony/Sony_a7CII_Viltrox AF 20mm F2.8 FE_APSC_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7CII_Viltrox AF 20mm F2.8 FE_APSC_4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "YLTai", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "APSC", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_Viltrox AF 20mm F2.8 FE__1080p_16by9_1920x1080-50.00fps - YLTai - 2.json b/Sony/Sony_a7CII_Viltrox AF 20mm F2.8 FE__1080p_16by9_1920x1080-50.00fps - YLTai - 2.json index 661a51b4..65b693dc 100644 --- a/Sony/Sony_a7CII_Viltrox AF 20mm F2.8 FE__1080p_16by9_1920x1080-50.00fps - YLTai - 2.json +++ b/Sony/Sony_a7CII_Viltrox AF 20mm F2.8 FE__1080p_16by9_1920x1080-50.00fps - YLTai - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "YLTai", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "Viltrox AF 20mm F2.8 FE", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_Viltrox AF 20mm F2.8 FE__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7CII_Viltrox AF 20mm F2.8 FE__1080p_16by9_1920x1080-50.00fps.json index 3522933b..a28fbef4 100644 --- a/Sony/Sony_a7CII_Viltrox AF 20mm F2.8 FE__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7CII_Viltrox AF 20mm F2.8 FE__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "YLTai", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "Viltrox AF 20mm F2.8 FE", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_Viltrox AF 20mm f2.8 FE_XAVC HS_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7CII_Viltrox AF 20mm f2.8 FE_XAVC HS_4k_16by9_3840x2160-23.98fps.json index a4218da0..c94cb906 100644 --- a/Sony/Sony_a7CII_Viltrox AF 20mm f2.8 FE_XAVC HS_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7CII_Viltrox AF 20mm f2.8 FE_XAVC HS_4k_16by9_3840x2160-23.98fps.json @@ -7,7 +7,7 @@ "calibrated_by": "PBJUN", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "XAVC HS", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_VoigtlanderAPO-LANTHAR 50mm F2 Aspherical__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7CII_VoigtlanderAPO-LANTHAR 50mm F2 Aspherical__4k_16by9_3840x2160-23.98fps.json index 2b77843c..4815ae4d 100644 --- a/Sony/Sony_a7CII_VoigtlanderAPO-LANTHAR 50mm F2 Aspherical__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7CII_VoigtlanderAPO-LANTHAR 50mm F2 Aspherical__4k_16by9_3840x2160-23.98fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Adun", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_YN 85.00mm 1.8__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7CII_YN 85.00mm 1.8__4k_16by9_3840x2160-23.98fps.json index 9b35fd2b..8048c0e3 100644 --- a/Sony/Sony_a7CII_YN 85.00mm 1.8__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7CII_YN 85.00mm 1.8__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "HFun", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "YN 85.00mm 1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_YN50.00mm f1.8 DF DSM__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7CII_YN50.00mm f1.8 DF DSM__1080p_16by9_1920x1080-50.00fps.json index 21ab6603..540ad346 100644 --- a/Sony/Sony_a7CII_YN50.00mm f1.8 DF DSM__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7CII_YN50.00mm f1.8 DF DSM__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "YLTai", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "YN50.00mm f/1.8 DF DSM", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_YnLens-35mm-F2__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7CII_YnLens-35mm-F2__1080p_16by9_1920x1080-59.94fps.json index a41717db..5b532746 100644 --- a/Sony/Sony_a7CII_YnLens-35mm-F2__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7CII_YnLens-35mm-F2__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "YuJia", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "YnLens-35mm-F2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_kit FE 3.5-5.6 28-70mm_28mm_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7CII_kit FE 3.5-5.6 28-70mm_28mm_4k_16by9_3840x2160-23.98fps.json index 3667d636..ffef912f 100644 --- a/Sony/Sony_a7CII_kit FE 3.5-5.6 28-70mm_28mm_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7CII_kit FE 3.5-5.6 28-70mm_28mm_4k_16by9_3840x2160-23.98fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Christopher Buzicky", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "28mm", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_samyang 35.00mm f2.8__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7CII_samyang 35.00mm f2.8__1080p_16by9_1920x1080-59.94fps.json index 8ba792b1..f217a1b8 100644 --- a/Sony/Sony_a7CII_samyang 35.00mm f2.8__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7CII_samyang 35.00mm f2.8__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "HFun", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "samyang 35.00mm f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_sigma 28 70 2.8 28.00mm__1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7CII_sigma 28 70 2.8 28.00mm__1080p_16by9_1920x1080-25.00fps.json index fe122344..962ae9d5 100644 --- a/Sony/Sony_a7CII_sigma 28 70 2.8 28.00mm__1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7CII_sigma 28 70 2.8 28.00mm__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Anthony", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "sigma 28 70 2.8 28.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_sigma 28 70 28.00mm__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7CII_sigma 28 70 28.00mm__1080p_16by9_1920x1080-50.00fps.json index 6c5a3497..18a46900 100644 --- a/Sony/Sony_a7CII_sigma 28 70 28.00mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7CII_sigma 28 70 28.00mm__1080p_16by9_1920x1080-50.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Anthony", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_sigma 28-70=28.00mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7CII_sigma 28-70=28.00mm__4k_16by9_3840x2160-23.98fps.json index c086968c..69e2b24b 100644 --- a/Sony/Sony_a7CII_sigma 28-70=28.00mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7CII_sigma 28-70=28.00mm__4k_16by9_3840x2160-23.98fps.json @@ -7,7 +7,7 @@ "calibrated_by": "lk w", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_sigma28-70 28.00mm_P_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7CII_sigma28-70 28.00mm_P_1080p_16by9_1920x1080-59.94fps.json index 35d8b126..21ecad97 100644 --- a/Sony/Sony_a7CII_sigma28-70 28.00mm_P_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7CII_sigma28-70 28.00mm_P_1080p_16by9_1920x1080-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "bin", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "P", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_sigma85.00mm1.4_XAVCS_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7CII_sigma85.00mm1.4_XAVCS_4k_16by9_3840x2160-25.00fps.json index 790db905..5dc02a05 100644 --- a/Sony/Sony_a7CII_sigma85.00mm1.4_XAVCS_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7CII_sigma85.00mm1.4_XAVCS_4k_16by9_3840x2160-25.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Administrator", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "XAVCS", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_sumyang75.00mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7CII_sumyang75.00mm__4k_16by9_3840x2160-25.00fps.json index 4fa44e13..f9a88df2 100644 --- a/Sony/Sony_a7CII_sumyang75.00mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7CII_sumyang75.00mm__4k_16by9_3840x2160-25.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "陈泽", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_tamron 28-200 @ 134.00mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7CII_tamron 28-200 @ 134.00mm__4k_16by9_3840x2160-23.98fps.json index e50bf802..a242785d 100644 --- a/Sony/Sony_a7CII_tamron 28-200 @ 134.00mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7CII_tamron 28-200 @ 134.00mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jonathan Fröhlich", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "tamron 28-200 @ 134.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_tamron 28-200 @ 158.00mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7CII_tamron 28-200 @ 158.00mm__4k_16by9_3840x2160-23.98fps.json index 3b56d310..5a6bbfec 100644 --- a/Sony/Sony_a7CII_tamron 28-200 @ 158.00mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7CII_tamron 28-200 @ 158.00mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jonathan Fröhlich", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "tamron 28-200 @ 158.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_tamron 28-200 @ 28.00mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7CII_tamron 28-200 @ 28.00mm__4k_16by9_3840x2160-23.98fps.json index 8b06b9d1..6eb799e0 100644 --- a/Sony/Sony_a7CII_tamron 28-200 @ 28.00mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7CII_tamron 28-200 @ 28.00mm__4k_16by9_3840x2160-23.98fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Jonathan Fröhlich", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7CII_tamron 28-200 @ 35.00mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7CII_tamron 28-200 @ 35.00mm__4k_16by9_3840x2160-23.98fps.json index c63d93de..e8d2da0c 100644 --- a/Sony/Sony_a7CII_tamron 28-200 @ 35.00mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7CII_tamron 28-200 @ 35.00mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jonathan Fröhlich", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "tamron 28-200 @ 35.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_tamron 28-200 @ 49.00mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7CII_tamron 28-200 @ 49.00mm__4k_16by9_3840x2160-23.98fps.json index 0e9a24a8..c7d66f56 100644 --- a/Sony/Sony_a7CII_tamron 28-200 @ 49.00mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7CII_tamron 28-200 @ 49.00mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jonathan Fröhlich", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "tamron 28-200 @ 49.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_tamron 28-200 @ 69.00mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7CII_tamron 28-200 @ 69.00mm__4k_16by9_3840x2160-23.98fps.json index 137b0fc2..83de7626 100644 --- a/Sony/Sony_a7CII_tamron 28-200 @ 69.00mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7CII_tamron 28-200 @ 69.00mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jonathan Fröhlich", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "tamron 28-200 @ 69.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_tamron 28-200 @ 98.00mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7CII_tamron 28-200 @ 98.00mm__4k_16by9_3840x2160-23.98fps.json index bdc83221..ee7f2bab 100644 --- a/Sony/Sony_a7CII_tamron 28-200 @ 98.00mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7CII_tamron 28-200 @ 98.00mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jonathan Fröhlich", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "tamron 28-200 @ 98.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CII_ttartisan 10mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7CII_ttartisan 10mm__4k_16by9_3840x2160-25.00fps.json index ef09aa47..eca2770c 100644 --- a/Sony/Sony_a7CII_ttartisan 10mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7CII_ttartisan 10mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "stas", "camera_brand": "Sony", - "camera_model": "a7CII", + "camera_model": "Alpha 7C II", "lens_model": "ttartisan 10mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7CR_21.00mm NOKTON 21 mm F1.4 Aspherical__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7CR_21.00mm NOKTON 21 mm F1.4 Aspherical__4k_16by9_3840x2160-59.94fps.json index d6569c6d..a3538762 100644 --- a/Sony/Sony_a7CR_21.00mm NOKTON 21 mm F1.4 Aspherical__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7CR_21.00mm NOKTON 21 mm F1.4 Aspherical__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "CRyder", "camera_brand": "Sony", - "camera_model": "a7CR", + "camera_model": "Alpha 7CR", "lens_model": "21.00mm NOKTON 21 mm F1.4 Aspherical", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_10-24_14_1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a7C_10-24_14_1080p_16by9_1920x1080-100.00fps.json index 58cef093..a0553d0e 100644 --- a/Sony/Sony_a7C_10-24_14_1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a7C_10-24_14_1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "14", "calibrated_by": "Pierre", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "10-24", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_10__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_10__4k_16by9_3840x2160-25.00fps.json index 60775a3e..43a5070c 100644 --- a/Sony/Sony_a7C_10__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_10__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Lai Wei", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "10", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_10mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_10mm__4k_16by9_3840x2160-25.00fps.json index bf61c168..fadda619 100644 --- a/Sony/Sony_a7C_10mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_10mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Lai Wei", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "10mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_11baea79__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_11baea79__4k_16by9_3840x2160-25.00fps.json index 0d0c6611..a3580324 100644 --- a/Sony/Sony_a7C_11baea79__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_11baea79__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "tanzhe", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "11baea79", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_12mm (Apsc)__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_12mm (Apsc)__4k_16by9_3840x2160-23.98fps.json index 0a7725ad..c02934dc 100644 --- a/Sony/Sony_a7C_12mm (Apsc)__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_12mm (Apsc)__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Malin dorris", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "12mm (Apsc)", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_16-35 f4 OSS__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_16-35 f4 OSS__4k_16by9_3840x2160-25.00fps.json index bf501671..d326f045 100644 --- a/Sony/Sony_a7C_16-35 f4 OSS__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_16-35 f4 OSS__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Domenico Dionisio", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "16-35 f4 OSS", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_18a19563__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7C_18a19563__1080p_16by9_1920x1080-50.00fps.json index 70cda13b..6f2edfca 100644 --- a/Sony/Sony_a7C_18a19563__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7C_18a19563__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "李安", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "18a19563", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_19f7ecbf__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7C_19f7ecbf__1080p_16by9_1920x1080-59.94fps.json index 1f17cbb3..0821446e 100644 --- a/Sony/Sony_a7C_19f7ecbf__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7C_19f7ecbf__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "19f7ecbf", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_20-40 @ 20mm__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7C_20-40 @ 20mm__1080p_16by9_1920x1080-50.00fps.json index 40bb106f..f874c39b 100644 --- a/Sony/Sony_a7C_20-40 @ 20mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7C_20-40 @ 20mm__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "暮山紫", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "20-40 @ 20mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_20-70 G_70MM_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_20-70 G_70MM_4k_16by9_3840x2160-25.00fps.json index f2284f52..6576925c 100644 --- a/Sony/Sony_a7C_20-70 G_70MM_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_20-70 G_70MM_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "xuyiyang", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "20-70 G", "camera_setting": "70MM", "calib_dimension": { diff --git a/Sony/Sony_a7C_20-70G@70MM__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_20-70G@70MM__4k_16by9_3840x2160-29.97fps.json index 9bd7a887..01477ff7 100644 --- a/Sony/Sony_a7C_20-70G@70MM__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_20-70G@70MM__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "xuyiyang", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "20-70G@70MM", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_20b5c305__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_20b5c305__4k_16by9_3840x2160-23.98fps.json index abec413e..663b834b 100644 --- a/Sony/Sony_a7C_20b5c305__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_20b5c305__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "OneStepOneMove FPV", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "20b5c305", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_20d9ac3d__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_20d9ac3d__4k_16by9_3840x2160-25.00fps.json index 37f35efe..bde73213 100644 --- a/Sony/Sony_a7C_20d9ac3d__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_20d9ac3d__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Vincent Choubard", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "20d9ac3d", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_20f67252_25 50M_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7C_20f67252_25 50M_1080p_16by9_1920x1080-25.00fps.json index 2b4dcad6..132c3f42 100644 --- a/Sony/Sony_a7C_20f67252_25 50M_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7C_20f67252_25 50M_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Tom Dewar", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "20f67252", "camera_setting": "25 50M", "calib_dimension": { diff --git a/Sony/Sony_a7C_20mm 1.8_50fps_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7C_20mm 1.8_50fps_1080p_16by9_1920x1080-59.94fps.json index 9908876c..5f218111 100644 --- a/Sony/Sony_a7C_20mm 1.8_50fps_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7C_20mm 1.8_50fps_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Lanry", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "20mm 1.8", "camera_setting": "50fps", "calib_dimension": { diff --git a/Sony/Sony_a7C_21a16994__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_21a16994__4k_16by9_3840x2160-25.00fps.json index ab9bac70..5ab0d14b 100644 --- a/Sony/Sony_a7C_21a16994__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_21a16994__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "admin1234", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "21a16994", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_24 fe__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_24 fe__4k_16by9_3840x2160-25.00fps.json index b317a9d9..109e420d 100644 --- a/Sony/Sony_a7C_24 fe__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_24 fe__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Samuel Chicha", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "24 fe", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_24-105.24__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_24-105.24__4k_16by9_3840x2160-29.97fps.json index b2052956..5dffdc31 100644 --- a/Sony/Sony_a7C_24-105.24__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_24-105.24__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "oreo", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "24-105.24", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_24-105mm_50fps_1080p_16by9_1920x1080-50.00fps - DragonChen.json b/Sony/Sony_a7C_24-105mm_50fps_1080p_16by9_1920x1080-50.00fps - DragonChen.json index f5f9c68d..e880fb64 100644 --- a/Sony/Sony_a7C_24-105mm_50fps_1080p_16by9_1920x1080-50.00fps - DragonChen.json +++ b/Sony/Sony_a7C_24-105mm_50fps_1080p_16by9_1920x1080-50.00fps - DragonChen.json @@ -3,7 +3,7 @@ "note": "50fps", "calibrated_by": "DragonChen", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "24-105mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_24-240 f3.5-6.3__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_24-240 f3.5-6.3__4k_16by9_3840x2160-23.98fps.json index 63cde76a..d66dc49f 100644 --- a/Sony/Sony_a7C_24-240 f3.5-6.3__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_24-240 f3.5-6.3__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "翁晨灿", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "24-240 f3.5-6.3", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_24-240_60_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7C_24-240_60_1080p_16by9_1920x1080-59.94fps.json index 26f8bb38..f8f4f7ec 100644 --- a/Sony/Sony_a7C_24-240_60_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7C_24-240_60_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "hlg3", "calibrated_by": "喻泽天", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "24-240", "camera_setting": "60", "calib_dimension": { diff --git a/Sony/Sony_a7C_24e23644_lente Sony FE 16-35 F4 G PZ a 16-35_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_24e23644_lente Sony FE 16-35 F4 G PZ a 16-35_4k_16by9_3840x2160-25.00fps.json index a31085aa..475a7495 100644 --- a/Sony/Sony_a7C_24e23644_lente Sony FE 16-35 F4 G PZ a 16-35_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_24e23644_lente Sony FE 16-35 F4 G PZ a 16-35_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "lente Sony FE 16-35 F/4 G PZ a 16-35", "calibrated_by": "Stefano Bertolone", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "24e23644", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_24f78111__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7C_24f78111__1080p_16by9_1920x1080-59.94fps.json index d1757bdb..f9563db8 100644 --- a/Sony/Sony_a7C_24f78111__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7C_24f78111__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "1", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "24f78111", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_24mmF2.8 Di III__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_24mmF2.8 Di III__4k_16by9_3840x2160-29.97fps.json index 615f335d..90e0bc89 100644 --- a/Sony/Sony_a7C_24mmF2.8 Di III__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_24mmF2.8 Di III__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "东哥吉祥", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "腾龙24mmF2.8 Di III", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_24mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_24mm__4k_16by9_3840x2160-29.97fps.json index b69811f9..b96cf469 100644 --- a/Sony/Sony_a7C_24mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_24mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Feng Mist", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "24mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_27c49f08__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_27c49f08__4k_16by9_3840x2160-25.00fps.json index 4e04b55d..88a735a9 100644 --- a/Sony/Sony_a7C_27c49f08__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_27c49f08__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "27c49f08", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_28-60mm@60mm_100Mbps_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_28-60mm@60mm_100Mbps_4k_16by9_3840x2160-29.97fps.json index 50cff54d..01e38f11 100644 --- a/Sony/Sony_a7C_28-60mm@60mm_100Mbps_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_28-60mm@60mm_100Mbps_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "9by16", "calibrated_by": "CP", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "28-60mm@60mm", "camera_setting": "100Mbps", "calib_dimension": { diff --git a/Sony/Sony_a7C_28-70 c522b64f_25 60_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_28-70 c522b64f_25 60_4k_16by9_3840x2160-25.00fps.json index a9958908..7ad0661e 100644 --- a/Sony/Sony_a7C_28-70 c522b64f_25 60_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_28-70 c522b64f_25 60_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "User", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "28-70 c522b64f", "camera_setting": "25 60", "calib_dimension": { diff --git a/Sony/Sony_a7C_28-75_50_1080p_16by9_1920x1080-50.00fps - 3.json b/Sony/Sony_a7C_28-75_50_1080p_16by9_1920x1080-50.00fps - 3.json index 354f645a..ead73700 100644 --- a/Sony/Sony_a7C_28-75_50_1080p_16by9_1920x1080-50.00fps - 3.json +++ b/Sony/Sony_a7C_28-75_50_1080p_16by9_1920x1080-50.00fps - 3.json @@ -3,7 +3,7 @@ "note": "75端", "calibrated_by": "魏雷", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "腾龙28-75", "camera_setting": "50", "calib_dimension": { diff --git a/Sony/Sony_a7C_28-75_50_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7C_28-75_50_1080p_16by9_1920x1080-50.00fps.json index 7a98d21c..5c36cc4f 100644 --- a/Sony/Sony_a7C_28-75_50_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7C_28-75_50_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "28端", "calibrated_by": "魏雷", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "腾龙28-75", "camera_setting": "50", "calib_dimension": { diff --git a/Sony/Sony_a7C_28-75__4k_16by9_3840x2160-25.00fps - 3.json b/Sony/Sony_a7C_28-75__4k_16by9_3840x2160-25.00fps - 3.json index 03fbe574..a984fed0 100644 --- a/Sony/Sony_a7C_28-75__4k_16by9_3840x2160-25.00fps - 3.json +++ b/Sony/Sony_a7C_28-75__4k_16by9_3840x2160-25.00fps - 3.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "山上有朵西蓝花", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "28-75", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_28-75__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_28-75__4k_16by9_3840x2160-25.00fps.json index 668a7a16..15006303 100644 --- a/Sony/Sony_a7C_28-75__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_28-75__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "山上有朵西蓝花", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "28-75", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_2875G2_A7C_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7C_2875G2_A7C_1080p_16by9_1920x1080-50.00fps.json index 6fe8b44a..140c7954 100644 --- a/Sony/Sony_a7C_2875G2_A7C_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7C_2875G2_A7C_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "28焦段", "calibrated_by": "zhiyu", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "2875G2", "camera_setting": "A7C", "calib_dimension": { diff --git a/Sony/Sony_a7C_2875_25_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_2875_25_4k_16by9_3840x2160-25.00fps.json index e9e0765c..9be56ff1 100644 --- a/Sony/Sony_a7C_2875_25_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_2875_25_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "28mm", "calibrated_by": "F", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "2875", "camera_setting": "25", "calib_dimension": { diff --git a/Sony/Sony_a7C_351.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_351.8__4k_16by9_3840x2160-25.00fps.json index 24f55f0d..5974e0c0 100644 --- a/Sony/Sony_a7C_351.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_351.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "徐柯斐", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "351.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_48e423ad_24mm FE2.8 G_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_48e423ad_24mm FE2.8 G_4k_16by9_3840x2160-25.00fps.json index 475161f8..a4bc462c 100644 --- a/Sony/Sony_a7C_48e423ad_24mm FE2.8 G_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_48e423ad_24mm FE2.8 G_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "24mm FE2.8 G", "calibrated_by": "JoeShu", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "48e423ad", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_50mm 1.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_50mm 1.8__4k_16by9_3840x2160-25.00fps.json index 0984b132..bf6ba3c8 100644 --- a/Sony/Sony_a7C_50mm 1.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_50mm 1.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Marc Garcia Cerezo", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "50mm 1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_50mm f1,7 meike__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_50mm f1,7 meike__4k_16by9_3840x2160-25.00fps.json index b86d8330..a8d07b39 100644 --- a/Sony/Sony_a7C_50mm f1,7 meike__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_50mm f1,7 meike__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "hong djie", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "50mm f1,7 meike", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_50mm f2.5__4k_16by9_3840x2160-25.00fps - U0 A533 - 2.json b/Sony/Sony_a7C_50mm f2.5__4k_16by9_3840x2160-25.00fps - U0 A533 - 2.json index 96d673f3..cb8a2bdb 100644 --- a/Sony/Sony_a7C_50mm f2.5__4k_16by9_3840x2160-25.00fps - U0 A533 - 2.json +++ b/Sony/Sony_a7C_50mm f2.5__4k_16by9_3840x2160-25.00fps - U0 A533 - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "U0 A533", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "50mm f2.5", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_50mm f2.5__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_50mm f2.5__4k_16by9_3840x2160-25.00fps.json index 635f4da6..4328db1b 100644 --- a/Sony/Sony_a7C_50mm f2.5__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_50mm f2.5__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "U0 A533", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "50mm f2.5", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_55__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_55__4k_16by9_3840x2160-25.00fps.json index 3241d4ba..a770d166 100644 --- a/Sony/Sony_a7C_55__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_55__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "111", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "55", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_55mm f1.8 zeiss__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_55mm f1.8 zeiss__4k_16by9_3840x2160-25.00fps.json index 2a8a3ce8..68ead393 100644 --- a/Sony/Sony_a7C_55mm f1.8 zeiss__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_55mm f1.8 zeiss__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ariya Chandra", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "55mm f1.8 zeiss", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_55mm f1.8__4k_16by9_3840x2160-25.00fps - ori - 2.json b/Sony/Sony_a7C_55mm f1.8__4k_16by9_3840x2160-25.00fps - ori - 2.json index 45bec5fd..067c9843 100644 --- a/Sony/Sony_a7C_55mm f1.8__4k_16by9_3840x2160-25.00fps - ori - 2.json +++ b/Sony/Sony_a7C_55mm f1.8__4k_16by9_3840x2160-25.00fps - ori - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ori", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "55mm f/1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_55mm f1.8__4k_16by9_3840x2160-25.00fps - ori - 3.json b/Sony/Sony_a7C_55mm f1.8__4k_16by9_3840x2160-25.00fps - ori - 3.json index 983915d0..47e60b80 100644 --- a/Sony/Sony_a7C_55mm f1.8__4k_16by9_3840x2160-25.00fps - ori - 3.json +++ b/Sony/Sony_a7C_55mm f1.8__4k_16by9_3840x2160-25.00fps - ori - 3.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ori", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "55mm f/1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_55mm f1.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_55mm f1.8__4k_16by9_3840x2160-25.00fps.json index a034bb69..2891bf5b 100644 --- a/Sony/Sony_a7C_55mm f1.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_55mm f1.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ori", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "55mm f/1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_7 artisans 25mm f1.8 e mount (APSC)_,_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7C_7 artisans 25mm f1.8 e mount (APSC)_,_1080p_16by9_1920x1080-50.00fps.json index 80d80f2f..a6e8e9bb 100644 --- a/Sony/Sony_a7C_7 artisans 25mm f1.8 e mount (APSC)_,_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7C_7 artisans 25mm f1.8 e mount (APSC)_,_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "this profile useing super 35 mode on sony a7c", "calibrated_by": "Diptayana", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "7 artisans 25mm f1.8 e mount (APSC)", "camera_setting": ",", "calib_dimension": { diff --git a/Sony/Sony_a7C_7.5mm Fisheye APSC__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_7.5mm Fisheye APSC__4k_16by9_3840x2160-23.98fps.json index 53207d82..bdba0d36 100644 --- a/Sony/Sony_a7C_7.5mm Fisheye APSC__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_7.5mm Fisheye APSC__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Malin dorris", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "7.5mm Fisheye APSC", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_70-180__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_70-180__4k_16by9_3840x2160-25.00fps.json index 4f08457b..ec4b138a 100644 --- a/Sony/Sony_a7C_70-180__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_70-180__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "70-180", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_70-300__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_70-300__4k_16by9_3840x2160-25.00fps.json index 7d326e79..7c6f39a8 100644 --- a/Sony/Sony_a7C_70-300__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_70-300__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "夏汶宏", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "70-300", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_7Artisans 10mm 1_2.8 Fisheye ED__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_7Artisans 10mm 1_2.8 Fisheye ED__4k_16by9_3840x2160-25.00fps.json index 1fea4f5c..81d6908a 100644 --- a/Sony/Sony_a7C_7Artisans 10mm 1_2.8 Fisheye ED__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_7Artisans 10mm 1_2.8 Fisheye ED__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Per Hansen", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "7Artisans 10mm 1:2.8 Fisheye ED", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_7abb6735__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7C_7abb6735__1080p_16by9_1920x1080-50.00fps.json index d3990f61..2a3242c6 100644 --- a/Sony/Sony_a7C_7abb6735__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7C_7abb6735__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Shaw", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "7abb6735", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_7artisans 10mm fisheye_no oss_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_7artisans 10mm fisheye_no oss_4k_16by9_3840x2160-23.98fps.json index cb983761..a007b8d5 100644 --- a/Sony/Sony_a7C_7artisans 10mm fisheye_no oss_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_7artisans 10mm fisheye_no oss_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "pp8 slog3", "calibrated_by": "Mark Alexander", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "7artisans 10mm fisheye", "camera_setting": "no oss", "calib_dimension": { diff --git a/Sony/Sony_a7C_85mm 1.8_60ss with mist nd_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_85mm 1.8_60ss with mist nd_4k_16by9_3840x2160-23.98fps.json index 2d64a55e..b366e54b 100644 --- a/Sony/Sony_a7C_85mm 1.8_60ss with mist nd_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_85mm 1.8_60ss with mist nd_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "mlo tac", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "85mm 1.8", "camera_setting": "60ss with mist nd", "calib_dimension": { diff --git a/Sony/Sony_a7C_932993f_Sony 14mm 1.8 GM_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_932993f_Sony 14mm 1.8 GM_4k_16by9_3840x2160-23.98fps.json index 4df9d6bc..a48cfbe2 100644 --- a/Sony/Sony_a7C_932993f_Sony 14mm 1.8 GM_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_932993f_Sony 14mm 1.8 GM_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "Sony 14mm 1.8 GM", "calibrated_by": "jai johns", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "932993f", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_95216789_FE 4-5.6 28-60 28mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_95216789_FE 4-5.6 28-60 28mm_4k_16by9_3840x2160-25.00fps.json index 9afebf48..67e56bbc 100644 --- a/Sony/Sony_a7C_95216789_FE 4-5.6 28-60 28mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_95216789_FE 4-5.6 28-60 28mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "FE 4-5.6 / 28-60 28mm", "calibrated_by": "Markus Benders", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "95216789", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_AF 85mm F1.4 FE__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7C_AF 85mm F1.4 FE__1080p_16by9_1920x1080-59.94fps.json index e5298a84..085df3ff 100644 --- a/Sony/Sony_a7C_AF 85mm F1.4 FE__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7C_AF 85mm F1.4 FE__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Annas Fresti", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "AF 85mm F1.4 FE", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_AF851.8 II__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_AF851.8 II__4k_16by9_3840x2160-29.97fps.json index b45793ba..f0a157bc 100644 --- a/Sony/Sony_a7C_AF851.8 II__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_AF851.8 II__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "东哥吉祥", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "唯卓仕AF85/1.8 II", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Contax Planar 1,450_Urth CY-E Adapter_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7C_Contax Planar 1,450_Urth CY-E Adapter_1080p_16by9_1920x1080-50.00fps.json index 2a816486..713042aa 100644 --- a/Sony/Sony_a7C_Contax Planar 1,450_Urth CY-E Adapter_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7C_Contax Planar 1,450_Urth CY-E Adapter_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "Urth C/Y-E Adapter", "calibrated_by": "Dante Villa", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Contax Planar 1,4/50", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Contax Planar 1,450_Urth CY-E Adapter_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Contax Planar 1,450_Urth CY-E Adapter_4k_16by9_3840x2160-25.00fps.json index 1a4cde32..73f8939b 100644 --- a/Sony/Sony_a7C_Contax Planar 1,450_Urth CY-E Adapter_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Contax Planar 1,450_Urth CY-E Adapter_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "Urth C/Y-E Adapter", "calibrated_by": "Dante Villa", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Contax Planar 1,4/50", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_EF 24-70mm F2.8 GM_30 fps_4k_16by9_3840x2160-0.00fps.json b/Sony/Sony_a7C_EF 24-70mm F2.8 GM_30 fps_4k_16by9_3840x2160-0.00fps.json index 1fca98c5..3d39e060 100644 --- a/Sony/Sony_a7C_EF 24-70mm F2.8 GM_30 fps_4k_16by9_3840x2160-0.00fps.json +++ b/Sony/Sony_a7C_EF 24-70mm F2.8 GM_30 fps_4k_16by9_3840x2160-0.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Gonges", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "EF 24-70mm F2.8 GM", "camera_setting": "30 fps", "calibrator_version": "0.2.1-alpha", diff --git a/Sony/Sony_a7C_EF 28-60mm F4-5.6_Lens 28mm_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_EF 28-60mm F4-5.6_Lens 28mm_4k_16by9_3840x2160-23.98fps.json index ab62dea6..37667f41 100644 --- a/Sony/Sony_a7C_EF 28-60mm F4-5.6_Lens 28mm_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_EF 28-60mm F4-5.6_Lens 28mm_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "Lens 28mm", "calibrated_by": "Joe", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "EF 28-60mm F4-5.6", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_EF 28-60mm F4-5.6_Lens 35_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_EF 28-60mm F4-5.6_Lens 35_4k_16by9_3840x2160-23.98fps.json index 350df1cd..141a7cb0 100644 --- a/Sony/Sony_a7C_EF 28-60mm F4-5.6_Lens 35_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_EF 28-60mm F4-5.6_Lens 35_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "Lens 35", "calibrated_by": "Joe", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "EF 28-60mm F4-5.6", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_EF 35mm F1.8__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_EF 35mm F1.8__4k_16by9_3840x2160-23.98fps.json index 65c27026..fd7b05e8 100644 --- a/Sony/Sony_a7C_EF 35mm F1.8__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_EF 35mm F1.8__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Joe", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "EF 35mm F1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_FE 1.250 GM__1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a7C_FE 1.250 GM__1080p_16by9_1920x1080-100.00fps.json index 290b56a2..aeb84cc6 100644 --- a/Sony/Sony_a7C_FE 1.250 GM__1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a7C_FE 1.250 GM__1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ruby不会飞", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "FE 1.2/50 GM", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_FE 1.850_XYY_4k_16by9_3840x2160-25.00fps - xuyiyang - 2.json b/Sony/Sony_a7C_FE 1.850_XYY_4k_16by9_3840x2160-25.00fps - xuyiyang - 2.json index 412747a8..d7633423 100644 --- a/Sony/Sony_a7C_FE 1.850_XYY_4k_16by9_3840x2160-25.00fps - xuyiyang - 2.json +++ b/Sony/Sony_a7C_FE 1.850_XYY_4k_16by9_3840x2160-25.00fps - xuyiyang - 2.json @@ -3,7 +3,7 @@ "note": "XYY", "calibrated_by": "xuyiyang", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "FE 1.8/50", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_FE 1.850_XYY_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_FE 1.850_XYY_4k_16by9_3840x2160-25.00fps.json index a12c88ce..9775dbbd 100644 --- a/Sony/Sony_a7C_FE 1.850_XYY_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_FE 1.850_XYY_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "XYY", "calibrated_by": "xuyingc", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "FE 1.8/50", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_FE 16-35mm F4 ZA OSS_P_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7C_FE 16-35mm F4 ZA OSS_P_1080p_16by9_1920x1080-50.00fps.json index 9283dc47..d9735798 100644 --- a/Sony/Sony_a7C_FE 16-35mm F4 ZA OSS_P_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7C_FE 16-35mm F4 ZA OSS_P_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ariya Chandra", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "FE 16-35mm F4 ZA OSS", "camera_setting": "P", "calib_dimension": { diff --git a/Sony/Sony_a7C_FE 28-60 @28__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7C_FE 28-60 @28__1080p_16by9_1920x1080-50.00fps.json index fb4a7a77..ce642a7b 100644 --- a/Sony/Sony_a7C_FE 28-60 @28__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7C_FE 28-60 @28__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Davide D'Angelo", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "FE 28-60 @28", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_FE 4-5.628-60_28mm_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_FE 4-5.628-60_28mm_4k_16by9_3840x2160-23.98fps.json index a33596cf..d60d202e 100644 --- a/Sony/Sony_a7C_FE 4-5.628-60_28mm_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_FE 4-5.628-60_28mm_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "28mm", "calibrated_by": "COMING-FPV", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "FE 4-5.6/28-60", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_FE 4-5.628-60__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_FE 4-5.628-60__4k_16by9_3840x2160-25.00fps.json index a7d9abf3..d00daa48 100644 --- a/Sony/Sony_a7C_FE 4-5.628-60__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_FE 4-5.628-60__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "HJW", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "FE 4-5.6/28-60", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_FE 420-70 G__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_FE 420-70 G__4k_16by9_3840x2160-23.98fps.json index 7f4c5f52..9e4d53b7 100644 --- a/Sony/Sony_a7C_FE 420-70 G__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_FE 420-70 G__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "admin", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "FE 4/20-70 G", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_FE 424-105 G OSS__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_FE 424-105 G OSS__4k_16by9_3840x2160-29.97fps.json index 3ce43667..3465dc94 100644 --- a/Sony/Sony_a7C_FE 424-105 G OSS__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_FE 424-105 G OSS__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "boybook", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "FE 4/24-105 G OSS", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_FE1.820G__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_FE1.820G__4k_16by9_3840x2160-29.97fps.json index a9541dbd..37d8f7f2 100644 --- a/Sony/Sony_a7C_FE1.820G__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_FE1.820G__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "宮脇俊彦", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "FE1.8/20G", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_FE16-35F4za_16mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_FE16-35F4za_16mm_4k_16by9_3840x2160-25.00fps.json index 2287fca1..34358de0 100644 --- a/Sony/Sony_a7C_FE16-35F4za_16mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_FE16-35F4za_16mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "AK47", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "FE16-35F4za", "camera_setting": "16mm", "calib_dimension": { diff --git a/Sony/Sony_a7C_FE24-70F4za_24mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_FE24-70F4za_24mm_4k_16by9_3840x2160-25.00fps.json index 07a448e1..a096fb68 100644 --- a/Sony/Sony_a7C_FE24-70F4za_24mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_FE24-70F4za_24mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "AK47", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "FE24-70F4za", "camera_setting": "24mm", "calib_dimension": { diff --git a/Sony/Sony_a7C_FE2470F4za__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_FE2470F4za__4k_16by9_3840x2160-25.00fps.json index f9e9bfcc..b34e9abd 100644 --- a/Sony/Sony_a7C_FE2470F4za__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_FE2470F4za__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "AK47", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "FE2470F4za", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_FE551.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_FE551.8__4k_16by9_3840x2160-25.00fps.json index 63963873..89652588 100644 --- a/Sony/Sony_a7C_FE551.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_FE551.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "cinco", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "FE55/1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Helios 44-2_58mm_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_Helios 44-2_58mm_4k_16by9_3840x2160-23.98fps.json index 3d0d01f6..6510c046 100644 --- a/Sony/Sony_a7C_Helios 44-2_58mm_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_Helios 44-2_58mm_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "58mm", "calibrated_by": "Malin Dean", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Helios 44-2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Kit 28-70mm__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7C_Kit 28-70mm__1080p_16by9_1920x1080-59.94fps.json index 72a9fcc6..adb3d5e9 100644 --- a/Sony/Sony_a7C_Kit 28-70mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7C_Kit 28-70mm__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "aRmee", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Kit 28-70mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_LAOWA 15mm F.4 MACRO_-_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_LAOWA 15mm F.4 MACRO_-_4k_16by9_3840x2160-25.00fps.json index 9a55b6e0..2beae9be 100644 --- a/Sony/Sony_a7C_LAOWA 15mm F.4 MACRO_-_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_LAOWA 15mm F.4 MACRO_-_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "100 Mbps", "calibrated_by": "giuseppe mirigliano", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "LAOWA 15mm F.4 MACRO", "camera_setting": "-", "calib_dimension": { diff --git a/Sony/Sony_a7C_LAOWA 15mm f4 MAcro_HLG3_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_LAOWA 15mm f4 MAcro_HLG3_4k_16by9_3840x2160-25.00fps.json index 46e1d739..3359e0a4 100644 --- a/Sony/Sony_a7C_LAOWA 15mm f4 MAcro_HLG3_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_LAOWA 15mm f4 MAcro_HLG3_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "HLG3", "calibrated_by": "giuseppe mirigliano", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "LAOWA 15mm f/4 MAcro", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Laowa 9mm f5.6 FF RL__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Laowa 9mm f5.6 FF RL__4k_16by9_3840x2160-25.00fps.json index ed84bdae..cbae6a4d 100644 --- a/Sony/Sony_a7C_Laowa 9mm f5.6 FF RL__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Laowa 9mm f5.6 FF RL__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Andrew Efimov from Timelab", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Laowa 9mm f/5.6 FF RL", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_MINolta55mm__1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7C_MINolta55mm__1080p_16by9_1920x1080-25.00fps.json index e9b47f4c..9d20040b 100644 --- a/Sony/Sony_a7C_MINolta55mm__1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7C_MINolta55mm__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "杨丕展", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "MINolta55mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Minolta MC Rokkor 28mm f2.5__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Minolta MC Rokkor 28mm f2.5__4k_16by9_3840x2160-25.00fps.json index a6de6d47..45188995 100644 --- a/Sony/Sony_a7C_Minolta MC Rokkor 28mm f2.5__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Minolta MC Rokkor 28mm f2.5__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Lucio S. Druetto", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Minolta MC Rokkor 28mm f2.5", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Nisi 15mm f4__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Nisi 15mm f4__4k_16by9_3840x2160-25.00fps.json index e3cc3051..572766c6 100644 --- a/Sony/Sony_a7C_Nisi 15mm f4__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Nisi 15mm f4__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Maxim Gustarev", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Nisi 15mm f4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_RockStar 10mm MKII_FullFrame 30 No-IBIS_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_RockStar 10mm MKII_FullFrame 30 No-IBIS_4k_16by9_3840x2160-29.97fps.json index 157dc95c..b240e32a 100644 --- a/Sony/Sony_a7C_RockStar 10mm MKII_FullFrame 30 No-IBIS_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_RockStar 10mm MKII_FullFrame 30 No-IBIS_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "JoeShu", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "RockStar 10mm MKII", "camera_setting": "FullFrame 30 No-IBIS", "calib_dimension": { diff --git a/Sony/Sony_a7C_RoclStar 10mm F8 MKII_FullFrame 60 No-IBIS_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7C_RoclStar 10mm F8 MKII_FullFrame 60 No-IBIS_1080p_16by9_1920x1080-59.94fps.json index 4c5ea192..cd15b443 100644 --- a/Sony/Sony_a7C_RoclStar 10mm F8 MKII_FullFrame 60 No-IBIS_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7C_RoclStar 10mm F8 MKII_FullFrame 60 No-IBIS_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "JoeShu", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "RoclStar 10mm F8 MKII", "camera_setting": "FullFrame 60 No-IBIS", "calib_dimension": { diff --git a/Sony/Sony_a7C_RoclStar 10mm F8 MKii_FullFrame 30 No-IBIS_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_RoclStar 10mm F8 MKii_FullFrame 30 No-IBIS_4k_16by9_3840x2160-29.97fps.json index 86ef11db..d8edb5ec 100644 --- a/Sony/Sony_a7C_RoclStar 10mm F8 MKii_FullFrame 30 No-IBIS_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_RoclStar 10mm F8 MKii_FullFrame 30 No-IBIS_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "JoeShu", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "RoclStar 10mm F8 MKii", "camera_setting": "FullFrame 30 No-IBIS", "calib_dimension": { diff --git a/Sony/Sony_a7C_SEL1018_10mm_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_SEL1018_10mm_4k_16by9_3840x2160-29.97fps.json index d2529744..68aac4b6 100644 --- a/Sony/Sony_a7C_SEL1018_10mm_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_SEL1018_10mm_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "10mm", "calibrated_by": "Yan Wang", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "SEL1018", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_SEL1224GM_No IBIS_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_SEL1224GM_No IBIS_4k_16by9_3840x2160-29.97fps.json index 453b20d6..2b61ace8 100644 --- a/Sony/Sony_a7C_SEL1224GM_No IBIS_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_SEL1224GM_No IBIS_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "12mm", "calibrated_by": "桂香", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "SEL1224GM", "camera_setting": "No IBIS", "calib_dimension": { diff --git a/Sony/Sony_a7C_SEL2070G_@20MM_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_SEL2070G_@20MM_4k_16by9_3840x2160-29.97fps.json index 9f8cd66f..03a3e8b3 100644 --- a/Sony/Sony_a7C_SEL2070G_@20MM_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_SEL2070G_@20MM_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "xuyiyang", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "SEL2070G", "camera_setting": "@20MM", "calib_dimension": { diff --git a/Sony/Sony_a7C_SEL2070G_@24MM_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_SEL2070G_@24MM_4k_16by9_3840x2160-29.97fps.json index b788eb5e..35947d3c 100644 --- a/Sony/Sony_a7C_SEL2070G_@24MM_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_SEL2070G_@24MM_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "xuyiyang", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "SEL2070G", "camera_setting": "@24MM", "calib_dimension": { diff --git a/Sony/Sony_a7C_SEL2070G_@24_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_SEL2070G_@24_4k_16by9_3840x2160-29.97fps.json index f0926a63..5faf679b 100644 --- a/Sony/Sony_a7C_SEL2070G_@24_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_SEL2070G_@24_4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "xuyiyang", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "camera_setting": "@24", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7C_SEL2070G_@70MM_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_SEL2070G_@70MM_4k_16by9_3840x2160-29.97fps.json index 3d8fa627..7c70ac41 100644 --- a/Sony/Sony_a7C_SEL2070G_@70MM_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_SEL2070G_@70MM_4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "xuyiyang", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "camera_setting": "@70MM", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7C_SEL20F18G__4k_16by9_3840x2160-29.97fps - 2.json b/Sony/Sony_a7C_SEL20F18G__4k_16by9_3840x2160-29.97fps - 2.json index 553c2c86..58b73272 100644 --- a/Sony/Sony_a7C_SEL20F18G__4k_16by9_3840x2160-29.97fps - 2.json +++ b/Sony/Sony_a7C_SEL20F18G__4k_16by9_3840x2160-29.97fps - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "横山正洋", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "SEL20F18G", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_SEL24105G@24mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_SEL24105G@24mm__4k_16by9_3840x2160-25.00fps.json index ce4e717f..faffa50c 100644 --- a/Sony/Sony_a7C_SEL24105G@24mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_SEL24105G@24mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "yoyo Mo", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "SEL24105G@24mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_SEL24105G__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7C_SEL24105G__1080p_16by9_1920x1080-50.00fps.json index 5dd758a9..83277977 100644 --- a/Sony/Sony_a7C_SEL24105G__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7C_SEL24105G__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "王梓舟", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "SEL24105G", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_SEL2470GM2_f2.8 24mm_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7C_SEL2470GM2_f2.8 24mm_1080p_16by9_1920x1080-59.94fps.json index 5f8dc788..29bcc5c5 100644 --- a/Sony/Sony_a7C_SEL2470GM2_f2.8 24mm_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7C_SEL2470GM2_f2.8 24mm_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "太朗竹田", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "SEL2470GM2", "camera_setting": "f2.8 24mm", "calib_dimension": { diff --git a/Sony/Sony_a7C_SEL28F20__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_SEL28F20__4k_16by9_3840x2160-25.00fps.json index 78a77fd8..24100130 100644 --- a/Sony/Sony_a7C_SEL28F20__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_SEL28F20__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Marc Garcia Cerezo", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "SEL28F20", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_SEL40F25G_11000 f2.5_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_SEL40F25G_11000 f2.5_4k_16by9_3840x2160-29.97fps.json index c9a4f1eb..1bd25bdb 100644 --- a/Sony/Sony_a7C_SEL40F25G_11000 f2.5_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_SEL40F25G_11000 f2.5_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jason Hong", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "SEL40F25G", "camera_setting": "1/1000 f2.5", "calib_dimension": { diff --git a/Sony/Sony_a7C_SIGMA 24-70mm F2,8 DG DN _ Art__4k_16by9_3840x2160-29.97fps - 2.json b/Sony/Sony_a7C_SIGMA 24-70mm F2,8 DG DN _ Art__4k_16by9_3840x2160-29.97fps - 2.json index ca294de6..254b99b4 100644 --- a/Sony/Sony_a7C_SIGMA 24-70mm F2,8 DG DN _ Art__4k_16by9_3840x2160-29.97fps - 2.json +++ b/Sony/Sony_a7C_SIGMA 24-70mm F2,8 DG DN _ Art__4k_16by9_3840x2160-29.97fps - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "SIGMA 24-70mm F2,8 DG DN | Art", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_SIGMA 28-70 2.8 dgdn_100mbps_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_SIGMA 28-70 2.8 dgdn_100mbps_4k_16by9_3840x2160-23.98fps.json index 581cf445..2492d1f8 100644 --- a/Sony/Sony_a7C_SIGMA 28-70 2.8 dgdn_100mbps_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_SIGMA 28-70 2.8 dgdn_100mbps_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "范翔洋", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "SIGMA 28-70 2.8 dgdn", "camera_setting": "100mbps", "calib_dimension": { diff --git a/Sony/Sony_a7C_SLR Magic 25mm f1.4__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_SLR Magic 25mm f1.4__4k_16by9_3840x2160-23.98fps.json index d9d1b2e4..e25423d9 100644 --- a/Sony/Sony_a7C_SLR Magic 25mm f1.4__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_SLR Magic 25mm f1.4__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Taylor", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "SLR Magic 25mm f1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_SONY 20-70 F4G 20mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_SONY 20-70 F4G 20mm__4k_16by9_3840x2160-25.00fps.json index 5003859f..b9803bf8 100644 --- a/Sony/Sony_a7C_SONY 20-70 F4G 20mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_SONY 20-70 F4G 20mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "W", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "SONY 20-70 F4G 20mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Samyang 12mm f2.0 CS E_XAVC-S_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Samyang 12mm f2.0 CS E_XAVC-S_4k_16by9_3840x2160-25.00fps.json index 433bc508..192d200a 100644 --- a/Sony/Sony_a7C_Samyang 12mm f2.0 CS E_XAVC-S_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Samyang 12mm f2.0 CS E_XAVC-S_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "12mm Crop", "calibrated_by": "Jörg Niggli | niggli.com", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Samyang 12mm f/2.0 CS E", "camera_setting": "XAVC-S", "calib_dimension": { diff --git a/Sony/Sony_a7C_Samyang 18 2.8_30_4k_16by9_3840x2160-29.97fps - moeforever - 2.json b/Sony/Sony_a7C_Samyang 18 2.8_30_4k_16by9_3840x2160-29.97fps - moeforever - 2.json index 03ee021c..84bc6275 100644 --- a/Sony/Sony_a7C_Samyang 18 2.8_30_4k_16by9_3840x2160-29.97fps - moeforever - 2.json +++ b/Sony/Sony_a7C_Samyang 18 2.8_30_4k_16by9_3840x2160-29.97fps - moeforever - 2.json @@ -7,7 +7,7 @@ "calibrated_by": "moeforever", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "camera_setting": "30", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7C_Samyang 18 2.8_30_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_Samyang 18 2.8_30_4k_16by9_3840x2160-29.97fps.json index 00232c2f..1db1ee9e 100644 --- a/Sony/Sony_a7C_Samyang 18 2.8_30_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_Samyang 18 2.8_30_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "moeforever", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Samyang 18 2.8", "camera_setting": "30", "calib_dimension": { diff --git a/Sony/Sony_a7C_Samyang 24 mm f1.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Samyang 24 mm f1.8__4k_16by9_3840x2160-25.00fps.json index 279c9778..804b31cb 100644 --- a/Sony/Sony_a7C_Samyang 24 mm f1.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Samyang 24 mm f1.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "A", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Samyang 24 mm f/1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Samyang 24-70mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_Samyang 24-70mm__4k_16by9_3840x2160-29.97fps.json index 78ee5520..1d754c1f 100644 --- a/Sony/Sony_a7C_Samyang 24-70mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_Samyang 24-70mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Oscar Paredes", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Samyang 24-70mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Samyang 24mm 2.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Samyang 24mm 2.8__4k_16by9_3840x2160-25.00fps.json index 3b390230..d466ab16 100644 --- a/Sony/Sony_a7C_Samyang 24mm 2.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Samyang 24mm 2.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "derek", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Samyang 24mm 2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Samyang 35mm f1.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Samyang 35mm f1.8__4k_16by9_3840x2160-25.00fps.json index b88563a2..41596ea2 100644 --- a/Sony/Sony_a7C_Samyang 35mm f1.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Samyang 35mm f1.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Alexander Marquardt", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Samyang 35mm f1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Samyang 50mm f1.2__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Samyang 50mm f1.2__4k_16by9_3840x2160-25.00fps.json index 3fe65d07..1b740209 100644 --- a/Sony/Sony_a7C_Samyang 50mm f1.2__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Samyang 50mm f1.2__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jan Muller", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Samyang 50mm f1.2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Samyang 50mm f1.4_1200_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_Samyang 50mm f1.4_1200_4k_16by9_3840x2160-23.98fps.json index e2614d42..9f9db2a1 100644 --- a/Sony/Sony_a7C_Samyang 50mm f1.4_1200_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_Samyang 50mm f1.4_1200_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rodrigo M", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Samyang 50mm f1.4", "camera_setting": "1/200", "calib_dimension": { diff --git a/Sony/Sony_a7C_Samyang 75mm f1.8__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_Samyang 75mm f1.8__4k_16by9_3840x2160-23.98fps.json index e603956f..378cbb96 100644 --- a/Sony/Sony_a7C_Samyang 75mm f1.8__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_Samyang 75mm f1.8__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "robert", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Samyang 75mm f1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Samyang 85mm f1.4 v1__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Samyang 85mm f1.4 v1__4k_16by9_3840x2160-25.00fps.json index 15b3278d..34d5a12c 100644 --- a/Sony/Sony_a7C_Samyang 85mm f1.4 v1__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Samyang 85mm f1.4 v1__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jan Muller", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Samyang 85mm f1.4 v1", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Samyang AF 35mm F3.8 FE__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_Samyang AF 35mm F3.8 FE__4k_16by9_3840x2160-23.98fps.json index 175e9117..c138e868 100644 --- a/Sony/Sony_a7C_Samyang AF 35mm F3.8 FE__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_Samyang AF 35mm F3.8 FE__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ghost", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Samyang AF 35mm F3.8 FE", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Samyang FE 18mm 2.8_400ss_4k_16by9_3840x2160-25.00fps - Rio A7C Yogyakarta.json b/Sony/Sony_a7C_Samyang FE 18mm 2.8_400ss_4k_16by9_3840x2160-25.00fps - Rio A7C Yogyakarta.json index e56b753a..ca4c7d91 100644 --- a/Sony/Sony_a7C_Samyang FE 18mm 2.8_400ss_4k_16by9_3840x2160-25.00fps - Rio A7C Yogyakarta.json +++ b/Sony/Sony_a7C_Samyang FE 18mm 2.8_400ss_4k_16by9_3840x2160-25.00fps - Rio A7C Yogyakarta.json @@ -3,7 +3,7 @@ "note": "F3.2 IBIS OFF", "calibrated_by": "Rio A7C Yogyakarta", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Samyang FE 18mm 2.8", "camera_setting": "400ss", "calib_dimension": { diff --git a/Sony/Sony_a7C_Samyang FE 18mm 2.8_400ss_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Samyang FE 18mm 2.8_400ss_4k_16by9_3840x2160-25.00fps.json index 252259c4..5b2deb12 100644 --- a/Sony/Sony_a7C_Samyang FE 18mm 2.8_400ss_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Samyang FE 18mm 2.8_400ss_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "IBIS Walk & Panning", "calibrated_by": "Rio A7C Yogyakarta", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Samyang FE 18mm 2.8", "camera_setting": "400ss", "calib_dimension": { diff --git a/Sony/Sony_a7C_Samyang FE 35 2.8_30_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_Samyang FE 35 2.8_30_4k_16by9_3840x2160-29.97fps.json index e60a92d0..e4200117 100644 --- a/Sony/Sony_a7C_Samyang FE 35 2.8_30_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_Samyang FE 35 2.8_30_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "moeforever", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Samyang FE 35 2.8", "camera_setting": "30", "calib_dimension": { diff --git a/Sony/Sony_a7C_Samyang FE 35MM 1.8_400ss_4k_16by9_3840x2160-25.00fps - Rio A7C Yogyakarta.json b/Sony/Sony_a7C_Samyang FE 35MM 1.8_400ss_4k_16by9_3840x2160-25.00fps - Rio A7C Yogyakarta.json index 9a60855d..4fb5aa19 100644 --- a/Sony/Sony_a7C_Samyang FE 35MM 1.8_400ss_4k_16by9_3840x2160-25.00fps - Rio A7C Yogyakarta.json +++ b/Sony/Sony_a7C_Samyang FE 35MM 1.8_400ss_4k_16by9_3840x2160-25.00fps - Rio A7C Yogyakarta.json @@ -3,7 +3,7 @@ "note": "F2.0", "calibrated_by": "Rio A7C Yogyakarta", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Samyang FE 35MM 1.8", "camera_setting": "400ss", "calib_dimension": { diff --git a/Sony/Sony_a7C_Samyang FE 35MM 1.8_400ss_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Samyang FE 35MM 1.8_400ss_4k_16by9_3840x2160-25.00fps.json index de1d30df..d6e8f5ea 100644 --- a/Sony/Sony_a7C_Samyang FE 35MM 1.8_400ss_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Samyang FE 35MM 1.8_400ss_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rio A7C Yogyakarta", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Samyang FE 35MM 1.8", "camera_setting": "400ss", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sigma 16-28mm 1_2.8 DG DN_@16mm_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7C_Sigma 16-28mm 1_2.8 DG DN_@16mm_1080p_16by9_1920x1080-25.00fps.json index 40893868..b56ff4cd 100644 --- a/Sony/Sony_a7C_Sigma 16-28mm 1_2.8 DG DN_@16mm_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7C_Sigma 16-28mm 1_2.8 DG DN_@16mm_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "stz", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sigma 16-28mm 1:2.8 DG DN", "camera_setting": "@16mm", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sigma 16-28mm 1_2.8 DG DN_@20_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7C_Sigma 16-28mm 1_2.8 DG DN_@20_1080p_16by9_1920x1080-25.00fps.json index 2e5bdf9d..9d0e6a88 100644 --- a/Sony/Sony_a7C_Sigma 16-28mm 1_2.8 DG DN_@20_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7C_Sigma 16-28mm 1_2.8 DG DN_@20_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "stz", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sigma 16-28mm 1:2.8 DG DN", "camera_setting": "@20", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sigma 16-28mm 1_2.8 DG DN_@20mm_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7C_Sigma 16-28mm 1_2.8 DG DN_@20mm_1080p_16by9_1920x1080-25.00fps.json index dd7695b9..b283dbbc 100644 --- a/Sony/Sony_a7C_Sigma 16-28mm 1_2.8 DG DN_@20mm_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7C_Sigma 16-28mm 1_2.8 DG DN_@20mm_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "stz", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sigma 16-28mm 1:2.8 DG DN", "camera_setting": "@20mm", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sigma 16-28mm 1_2.8 DG DN_@24mm_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7C_Sigma 16-28mm 1_2.8 DG DN_@24mm_1080p_16by9_1920x1080-25.00fps.json index 26ff8bd8..d9f2813d 100644 --- a/Sony/Sony_a7C_Sigma 16-28mm 1_2.8 DG DN_@24mm_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7C_Sigma 16-28mm 1_2.8 DG DN_@24mm_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "stz", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sigma 16-28mm 1:2.8 DG DN", "camera_setting": "@24mm", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sigma 16-28mm 1_2.8 DG DN_@28mm_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7C_Sigma 16-28mm 1_2.8 DG DN_@28mm_1080p_16by9_1920x1080-25.00fps.json index 4f889809..139d7d73 100644 --- a/Sony/Sony_a7C_Sigma 16-28mm 1_2.8 DG DN_@28mm_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7C_Sigma 16-28mm 1_2.8 DG DN_@28mm_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "stz", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sigma 16-28mm 1:2.8 DG DN", "camera_setting": "@28mm", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sigma 20 F2_160_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_Sigma 20 F2_160_4k_16by9_3840x2160-23.98fps.json index 230deebc..004f8360 100644 --- a/Sony/Sony_a7C_Sigma 20 F2_160_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_Sigma 20 F2_160_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "160", "calibrated_by": "Theanea Theang", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sigma 20 F2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sigma 24 mm 1.4_50M_1080p_16by9_1920x1080-23.98fps.json b/Sony/Sony_a7C_Sigma 24 mm 1.4_50M_1080p_16by9_1920x1080-23.98fps.json index 15773a00..092ed0e4 100644 --- a/Sony/Sony_a7C_Sigma 24 mm 1.4_50M_1080p_16by9_1920x1080-23.98fps.json +++ b/Sony/Sony_a7C_Sigma 24 mm 1.4_50M_1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Andres Guzman", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sigma 24 mm 1.4", "camera_setting": "50M", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sigma 24-70_24mm_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_Sigma 24-70_24mm_4k_16by9_3840x2160-23.98fps.json index a5e4b3dc..2cb3dd47 100644 --- a/Sony/Sony_a7C_Sigma 24-70_24mm_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_Sigma 24-70_24mm_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "24mm", "calibrated_by": "Joey Wong", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sigma 24-70", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sigma 24-70mm F2,8 DG DN _ Art__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_Sigma 24-70mm F2,8 DG DN _ Art__4k_16by9_3840x2160-29.97fps.json index 92b3028a..eb9b7ceb 100644 --- a/Sony/Sony_a7C_Sigma 24-70mm F2,8 DG DN _ Art__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_Sigma 24-70mm F2,8 DG DN _ Art__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Aaron Gilb", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sigma 24-70mm F2,8 DG DN | Art", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sigma 24-70mm f2.8 DG DN Art_24-70mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Sigma 24-70mm f2.8 DG DN Art_24-70mm_4k_16by9_3840x2160-25.00fps.json index fb7eebd4..b610c6f5 100644 --- a/Sony/Sony_a7C_Sigma 24-70mm f2.8 DG DN Art_24-70mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Sigma 24-70mm f2.8 DG DN Art_24-70mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "24-70mm", "calibrated_by": "Lee Barone", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sigma 24-70mm f/2.8 DG DN Art", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sigma 24-70mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_Sigma 24-70mm__4k_16by9_3840x2160-23.98fps.json index 9e5537c0..37f73a6b 100644 --- a/Sony/Sony_a7C_Sigma 24-70mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_Sigma 24-70mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Joey Wong", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sigma 24-70mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sigma 28-70 F2.8 DG DN_35mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Sigma 28-70 F2.8 DG DN_35mm_4k_16by9_3840x2160-25.00fps.json index 18acbb48..0630105c 100644 --- a/Sony/Sony_a7C_Sigma 28-70 F2.8 DG DN_35mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Sigma 28-70 F2.8 DG DN_35mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "16:9", "calibrated_by": "chamquin", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sigma 28-70 F2.8 DG DN", "camera_setting": "35mm", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sigma 28-70 F2.8 DG DN_50mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Sigma 28-70 F2.8 DG DN_50mm_4k_16by9_3840x2160-25.00fps.json index 34755237..94abc8ad 100644 --- a/Sony/Sony_a7C_Sigma 28-70 F2.8 DG DN_50mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Sigma 28-70 F2.8 DG DN_50mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "16:9", "calibrated_by": "chamquin", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sigma 28-70 F2.8 DG DN", "camera_setting": "50mm", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sigma 28-70 F2.8 DG DN_70mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Sigma 28-70 F2.8 DG DN_70mm_4k_16by9_3840x2160-25.00fps.json index 446f4527..319880a7 100644 --- a/Sony/Sony_a7C_Sigma 28-70 F2.8 DG DN_70mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Sigma 28-70 F2.8 DG DN_70mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "16:9", "calibrated_by": "chamquin", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sigma 28-70 F2.8 DG DN", "camera_setting": "70mm", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sigma 28-70 f2.8_Slog2_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_Sigma 28-70 f2.8_Slog2_4k_16by9_3840x2160-23.98fps.json index fdb13b66..04c42c3e 100644 --- a/Sony/Sony_a7C_Sigma 28-70 f2.8_Slog2_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_Sigma 28-70 f2.8_Slog2_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "28mm", "calibrated_by": "Oliver Diec", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sigma 28-70 f2.8", "camera_setting": "Slog2", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sigma 28-70mm__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7C_Sigma 28-70mm__1080p_16by9_1920x1080-50.00fps.json index 64c561ef..d4474827 100644 --- a/Sony/Sony_a7C_Sigma 28-70mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7C_Sigma 28-70mm__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Roy", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sigma 28-70mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sigma 35 F2__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_Sigma 35 F2__4k_16by9_3840x2160-23.98fps.json index 7735c109..8f0292e9 100644 --- a/Sony/Sony_a7C_Sigma 35 F2__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_Sigma 35 F2__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Theanea Theang", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sigma 35 F2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sigma 35mm f2__4k_16by9_3840x2160-25.00fps - Tim Ladewig - 2.json b/Sony/Sony_a7C_Sigma 35mm f2__4k_16by9_3840x2160-25.00fps - Tim Ladewig - 2.json index 5f05e823..1248baba 100644 --- a/Sony/Sony_a7C_Sigma 35mm f2__4k_16by9_3840x2160-25.00fps - Tim Ladewig - 2.json +++ b/Sony/Sony_a7C_Sigma 35mm f2__4k_16by9_3840x2160-25.00fps - Tim Ladewig - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Tim Ladewig", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sigma 35mm f2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sigma 35mm f2__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Sigma 35mm f2__4k_16by9_3840x2160-25.00fps.json index 0770a98b..861cd334 100644 --- a/Sony/Sony_a7C_Sigma 35mm f2__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Sigma 35mm f2__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Tim Ladewig", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sigma 35mm f2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sigma 65 F2 DG DN 20_HLG_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_Sigma 65 F2 DG DN 20_HLG_4k_16by9_3840x2160-23.98fps.json index 468fae45..72e1b531 100644 --- a/Sony/Sony_a7C_Sigma 65 F2 DG DN 20_HLG_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_Sigma 65 F2 DG DN 20_HLG_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "1/200", "calibrated_by": "Theanea Theang", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sigma 65 F2 DG DN 20", "camera_setting": "HLG", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sigma art 24-70__1080p_16by9_1920x1080-50.00fps - Wiwid Aolia.json b/Sony/Sony_a7C_Sigma art 24-70__1080p_16by9_1920x1080-50.00fps - Wiwid Aolia.json index c3ebe057..efde9ae0 100644 --- a/Sony/Sony_a7C_Sigma art 24-70__1080p_16by9_1920x1080-50.00fps - Wiwid Aolia.json +++ b/Sony/Sony_a7C_Sigma art 24-70__1080p_16by9_1920x1080-50.00fps - Wiwid Aolia.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Wiwid Aolia", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sigma art 24-70", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sigma2470_2022.09.27_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_Sigma2470_2022.09.27_4k_16by9_3840x2160-29.97fps.json index 1076f056..9133a44b 100644 --- a/Sony/Sony_a7C_Sigma2470_2022.09.27_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_Sigma2470_2022.09.27_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "2022.09.27", "calibrated_by": "Leo TX", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sigma2470", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sigma28-702.8__4k_16by9_3840x2160-23.98fps - Eric.json b/Sony/Sony_a7C_Sigma28-702.8__4k_16by9_3840x2160-23.98fps - Eric.json index 78720847..3e1d3a12 100644 --- a/Sony/Sony_a7C_Sigma28-702.8__4k_16by9_3840x2160-23.98fps - Eric.json +++ b/Sony/Sony_a7C_Sigma28-702.8__4k_16by9_3840x2160-23.98fps - Eric.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eric", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sigma28-70/2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sigma28-70__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Sigma28-70__4k_16by9_3840x2160-25.00fps.json index 913adf49..fb783047 100644 --- a/Sony/Sony_a7C_Sigma28-70__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Sigma28-70__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sigma28-70", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sigma_35mm_F2_DGDN_30p_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Sigma_35mm_F2_DGDN_30p_4k_16by9_3840x2160-25.00fps.json index 697ae9f1..e02b980c 100644 --- a/Sony/Sony_a7C_Sigma_35mm_F2_DGDN_30p_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Sigma_35mm_F2_DGDN_30p_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "The Alien", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sigma_35mm_F2_DGDN", "camera_setting": "30p", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sirui Anamorphic 50mmF1.8 1.33__4k_16by9_3840x2160-25.00fps - Leos - 2.json b/Sony/Sony_a7C_Sirui Anamorphic 50mmF1.8 1.33__4k_16by9_3840x2160-25.00fps - Leos - 2.json index b64be2e2..5494bb60 100644 --- a/Sony/Sony_a7C_Sirui Anamorphic 50mmF1.8 1.33__4k_16by9_3840x2160-25.00fps - Leos - 2.json +++ b/Sony/Sony_a7C_Sirui Anamorphic 50mmF1.8 1.33__4k_16by9_3840x2160-25.00fps - Leos - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Leos", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sirui Anamorphic 50mmF1.8 1.33", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sirui Anamorphic 50mmF1.8 1.33__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Sirui Anamorphic 50mmF1.8 1.33__4k_16by9_3840x2160-25.00fps.json index 19005863..7c453180 100644 --- a/Sony/Sony_a7C_Sirui Anamorphic 50mmF1.8 1.33__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Sirui Anamorphic 50mmF1.8 1.33__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Leos", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sirui Anamorphic 50mmF1.8 1.33", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sony 20mm f1.8 G_Shutter Speed 1100_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_Sony 20mm f1.8 G_Shutter Speed 1100_4k_16by9_3840x2160-23.98fps.json index a36aa9f6..28272eac 100644 --- a/Sony/Sony_a7C_Sony 20mm f1.8 G_Shutter Speed 1100_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_Sony 20mm f1.8 G_Shutter Speed 1100_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "Shutter Speed 1/100", "calibrated_by": "Din Osman", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sony 20mm f1.8 G", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sony 24mm 1.4 GM_100M_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Sony 24mm 1.4 GM_100M_4k_16by9_3840x2160-25.00fps.json index 41d2798c..46d24b5c 100644 --- a/Sony/Sony_a7C_Sony 24mm 1.4 GM_100M_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Sony 24mm 1.4 GM_100M_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "MaEtUgR", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sony 24mm 1.4 GM", "camera_setting": "100M", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sony 24mm F2.8 G__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Sony 24mm F2.8 G__4k_16by9_3840x2160-25.00fps.json index b75f3b0a..6741c763 100644 --- a/Sony/Sony_a7C_Sony 24mm F2.8 G__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Sony 24mm F2.8 G__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Konstantin Dziuin", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sony 24mm F/2.8 G", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sony 28-60(@28)_@28mm_4k_16by9_3840x2160-23.98fps - Eric.json b/Sony/Sony_a7C_Sony 28-60(@28)_@28mm_4k_16by9_3840x2160-23.98fps - Eric.json index e9bb126f..58b710f1 100644 --- a/Sony/Sony_a7C_Sony 28-60(@28)_@28mm_4k_16by9_3840x2160-23.98fps - Eric.json +++ b/Sony/Sony_a7C_Sony 28-60(@28)_@28mm_4k_16by9_3840x2160-23.98fps - Eric.json @@ -3,7 +3,7 @@ "note": "@28mm", "calibrated_by": "Eric", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sony 28-60(@28)", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sony 35mm F1.4 GM__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Sony 35mm F1.4 GM__4k_16by9_3840x2160-25.00fps.json index 0b37a038..47a12e5a 100644 --- a/Sony/Sony_a7C_Sony 35mm F1.4 GM__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Sony 35mm F1.4 GM__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Konstantin Dziuin", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sony 35mm F/1.4 GM", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sony 50mm F2.5 G__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Sony 50mm F2.5 G__4k_16by9_3840x2160-25.00fps.json index 6f579418..1edb65b5 100644 --- a/Sony/Sony_a7C_Sony 50mm F2.5 G__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Sony 50mm F2.5 G__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Konstantin Dziuin", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sony 50mm F/2.5 G", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sony 85mm F1.4 GM__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Sony 85mm F1.4 GM__4k_16by9_3840x2160-25.00fps.json index 283b9f57..17d5a7ea 100644 --- a/Sony/Sony_a7C_Sony 85mm F1.4 GM__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Sony 85mm F1.4 GM__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Konstantin Dziuin", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sony 85mm F/1.4 GM", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sony FE 4-5.6 28-60_28mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Sony FE 4-5.6 28-60_28mm_4k_16by9_3840x2160-25.00fps.json index ee877c63..a0c11aa2 100644 --- a/Sony/Sony_a7C_Sony FE 4-5.6 28-60_28mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Sony FE 4-5.6 28-60_28mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "28mm", "calibrated_by": "Markus Benders", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sony FE 4-5.6 / 28-60", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sony FE 4-5.6 28-60_50Mbit_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7C_Sony FE 4-5.6 28-60_50Mbit_1080p_16by9_1920x1080-50.00fps.json index 811f7f13..353b48d7 100644 --- a/Sony/Sony_a7C_Sony FE 4-5.6 28-60_50Mbit_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7C_Sony FE 4-5.6 28-60_50Mbit_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "28mm", "calibrated_by": "Markus Benders", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sony FE 4-5.6 /28-60", "camera_setting": "50Mbit", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sony FE 85mm 1.8_400ss_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Sony FE 85mm 1.8_400ss_4k_16by9_3840x2160-25.00fps.json index 510600c5..630e3a3d 100644 --- a/Sony/Sony_a7C_Sony FE 85mm 1.8_400ss_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Sony FE 85mm 1.8_400ss_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rio A7C Yogyakarta", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sony FE 85mm 1.8", "camera_setting": "400ss", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sony SEL11F18_XAVC-S_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Sony SEL11F18_XAVC-S_4k_16by9_3840x2160-25.00fps.json index bf0f12e8..3d785316 100644 --- a/Sony/Sony_a7C_Sony SEL11F18_XAVC-S_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Sony SEL11F18_XAVC-S_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "Crop 11mm", "calibrated_by": "Jörg Niggli | niggli.com", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sony SEL11F18", "camera_setting": "XAVC-S", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sony SEL20F18G_XAVC-S_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Sony SEL20F18G_XAVC-S_4k_16by9_3840x2160-25.00fps.json index 87a3ceae..40b70ecd 100644 --- a/Sony/Sony_a7C_Sony SEL20F18G_XAVC-S_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Sony SEL20F18G_XAVC-S_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "20mm Fullframe", "calibrated_by": "Jörg Niggli | niggli.com", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sony SEL20F18G", "camera_setting": "XAVC-S", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sony SEL28F2_XAVC-S_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Sony SEL28F2_XAVC-S_4k_16by9_3840x2160-25.00fps.json index f406c2ce..d7fc3129 100644 --- a/Sony/Sony_a7C_Sony SEL28F2_XAVC-S_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Sony SEL28F2_XAVC-S_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "28mm Fullframe", "calibrated_by": "Jörg Niggli | niggli.com", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sony SEL28F2", "camera_setting": "XAVC-S", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sony SEL28FE20_HD60fps_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7C_Sony SEL28FE20_HD60fps_1080p_16by9_1920x1080-50.00fps.json index 9a633ae3..136996db 100644 --- a/Sony/Sony_a7C_Sony SEL28FE20_HD60fps_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7C_Sony SEL28FE20_HD60fps_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "20mm 2.8", "calibrated_by": "Christian Möller", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sony SEL28FE20", "camera_setting": "HD60fps", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sony SEL35F18F_XAVC-S_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Sony SEL35F18F_XAVC-S_4k_16by9_3840x2160-25.00fps.json index 3df011e8..6763148f 100644 --- a/Sony/Sony_a7C_Sony SEL35F18F_XAVC-S_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Sony SEL35F18F_XAVC-S_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "35mm Fullframe", "calibrated_by": "Jörg Niggli | niggli.com", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sony SEL35F18F", "camera_setting": "XAVC-S", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sony28-60_60mm(APSC)_4k_16by9_3840x2160-23.98fps - Eric.json b/Sony/Sony_a7C_Sony28-60_60mm(APSC)_4k_16by9_3840x2160-23.98fps - Eric.json index 6de313fa..eea0e1f7 100644 --- a/Sony/Sony_a7C_Sony28-60_60mm(APSC)_4k_16by9_3840x2160-23.98fps - Eric.json +++ b/Sony/Sony_a7C_Sony28-60_60mm(APSC)_4k_16by9_3840x2160-23.98fps - Eric.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eric", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sony28-60", "camera_setting": "60mm(APSC)", "calib_dimension": { diff --git a/Sony/Sony_a7C_Sony_A7C_SuperTakumar_55mm_F1_8_3840x2140_30fps__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_Sony_A7C_SuperTakumar_55mm_F1_8_3840x2140_30fps__4k_16by9_3840x2160-29.97fps.json index b9de6421..2319ef96 100644 --- a/Sony/Sony_a7C_Sony_A7C_SuperTakumar_55mm_F1_8_3840x2140_30fps__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_Sony_A7C_SuperTakumar_55mm_F1_8_3840x2140_30fps__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "横山正洋", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Sony_A7C_SuperTakumar_55mm_F1_8_3840x2140_30fps", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_TAMRON 17-28@17MM__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_TAMRON 17-28@17MM__4k_16by9_3840x2160-25.00fps.json index c5e3275c..4f26a210 100644 --- a/Sony/Sony_a7C_TAMRON 17-28@17MM__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_TAMRON 17-28@17MM__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "KwadLife", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "TAMRON 17-28@17MM", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_TAMRON 70-180 F2.8__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7C_TAMRON 70-180 F2.8__1080p_16by9_1920x1080-50.00fps.json index ca019c26..64cb5f09 100644 --- a/Sony/Sony_a7C_TAMRON 70-180 F2.8__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7C_TAMRON 70-180 F2.8__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "U0 A217", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "TAMRON 70-180 F2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_TTArtisans 11mm f2.8__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_TTArtisans 11mm f2.8__4k_16by9_3840x2160-23.98fps.json index 8e42d610..39b15dff 100644 --- a/Sony/Sony_a7C_TTArtisans 11mm f2.8__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_TTArtisans 11mm f2.8__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Taylor", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "TTArtisans 11mm f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron 17-28 A046_17mm_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_Tamron 17-28 A046_17mm_4k_16by9_3840x2160-29.97fps.json index 28cc59cc..742954e4 100644 --- a/Sony/Sony_a7C_Tamron 17-28 A046_17mm_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_Tamron 17-28 A046_17mm_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "17mm", "calibrated_by": "桂香", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron 17-28 A046", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron 17-28 A046_IBIS_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_Tamron 17-28 A046_IBIS_4k_16by9_3840x2160-29.97fps.json index 436c7c4c..642fc86e 100644 --- a/Sony/Sony_a7C_Tamron 17-28 A046_IBIS_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_Tamron 17-28 A046_IBIS_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "17mm", "calibrated_by": "桂香", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron 17-28 A046", "camera_setting": "IBIS", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron 17-28 f 2.8 Di III RXD__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Tamron 17-28 f 2.8 Di III RXD__4k_16by9_3840x2160-25.00fps.json index f104204f..ffdcf711 100644 --- a/Sony/Sony_a7C_Tamron 17-28 f 2.8 Di III RXD__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Tamron 17-28 f 2.8 Di III RXD__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Madcow9510", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron 17-28 f 2.8 Di III RXD", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron 17-50F4 Di III VXD 17mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_Tamron 17-50F4 Di III VXD 17mm__4k_16by9_3840x2160-29.97fps.json index bd58823b..9828b22d 100644 --- a/Sony/Sony_a7C_Tamron 17-50F4 Di III VXD 17mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_Tamron 17-50F4 Di III VXD 17mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Boris Riaposov", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron 17-50F4 Di III VXD 17mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron 17-50F4 Di III VXD 20mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_Tamron 17-50F4 Di III VXD 20mm__4k_16by9_3840x2160-29.97fps.json index 6cf518f2..2cae294d 100644 --- a/Sony/Sony_a7C_Tamron 17-50F4 Di III VXD 20mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_Tamron 17-50F4 Di III VXD 20mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Boris Riaposov", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron 17-50F4 Di III VXD 20mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron 17-50F4 Di III VXD 24mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_Tamron 17-50F4 Di III VXD 24mm__4k_16by9_3840x2160-29.97fps.json index cfc18cd2..6ee5eb5e 100644 --- a/Sony/Sony_a7C_Tamron 17-50F4 Di III VXD 24mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_Tamron 17-50F4 Di III VXD 24mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Boris Riaposov", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron 17-50F4 Di III VXD 24mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron 17-50F4 Di III VXD 28mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_Tamron 17-50F4 Di III VXD 28mm__4k_16by9_3840x2160-29.97fps.json index 184a5bf8..0cb3f4e9 100644 --- a/Sony/Sony_a7C_Tamron 17-50F4 Di III VXD 28mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_Tamron 17-50F4 Di III VXD 28mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Boris Riaposov", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron 17-50F4 Di III VXD 28mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron 17-50F4 Di III VXD__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_Tamron 17-50F4 Di III VXD__4k_16by9_3840x2160-29.97fps.json index ca475c35..eb51fee6 100644 --- a/Sony/Sony_a7C_Tamron 17-50F4 Di III VXD__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_Tamron 17-50F4 Di III VXD__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Boris Riaposov", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron 17-50F4 Di III VXD", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron 1728_17mm_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_Tamron 1728_17mm_4k_16by9_3840x2160-29.97fps.json index 362d391e..2ec012ef 100644 --- a/Sony/Sony_a7C_Tamron 1728_17mm_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_Tamron 1728_17mm_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "17mm", "calibrated_by": "王彦", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron 1728", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron 20-40 f2.8_20 mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Tamron 20-40 f2.8_20 mm_4k_16by9_3840x2160-25.00fps.json index ad7965e5..b69cbabc 100644 --- a/Sony/Sony_a7C_Tamron 20-40 f2.8_20 mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Tamron 20-40 f2.8_20 mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "4K 25 fps", "calibrated_by": "A", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron 20-40 f/2.8", "camera_setting": "20 mm", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron 20-40 f2.8_40 mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Tamron 20-40 f2.8_40 mm_4k_16by9_3840x2160-25.00fps.json index 63501344..1138d652 100644 --- a/Sony/Sony_a7C_Tamron 20-40 f2.8_40 mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Tamron 20-40 f2.8_40 mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "4K 25 fps", "calibrated_by": "A", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron 20-40 f/2.8", "camera_setting": "40 mm", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron 20-40_20 mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Tamron 20-40_20 mm_4k_16by9_3840x2160-25.00fps.json index b2fc5707..e1ec6739 100644 --- a/Sony/Sony_a7C_Tamron 20-40_20 mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Tamron 20-40_20 mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "20 mm", "calibrated_by": "A", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron 20-40", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron 20F2.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Tamron 20F2.8__4k_16by9_3840x2160-25.00fps.json index aab4f308..2ba70e65 100644 --- a/Sony/Sony_a7C_Tamron 20F2.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Tamron 20F2.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "HWRacing", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron 20F2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron 20mm 2.8_23.976_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_Tamron 20mm 2.8_23.976_4k_16by9_3840x2160-23.98fps.json index b989c444..5a633912 100644 --- a/Sony/Sony_a7C_Tamron 20mm 2.8_23.976_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_Tamron 20mm 2.8_23.976_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Mehtab Singh Edhan", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron 20mm 2.8", "camera_setting": "23.976", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron 24mmn F28 Di III OSD__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Tamron 24mmn F28 Di III OSD__4k_16by9_3840x2160-25.00fps.json index f40f8407..e196eac2 100644 --- a/Sony/Sony_a7C_Tamron 24mmn F28 Di III OSD__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Tamron 24mmn F28 Di III OSD__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Atanas Dragov", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron 24mmn F/28 Di III OSD", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron 28-200 @ 100__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Tamron 28-200 @ 100__4k_16by9_3840x2160-25.00fps.json index 13896819..8b42ac21 100644 --- a/Sony/Sony_a7C_Tamron 28-200 @ 100__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Tamron 28-200 @ 100__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rupert Jordan", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron 28-200 @ 100", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron 28-200 @ 135__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Tamron 28-200 @ 135__4k_16by9_3840x2160-25.00fps.json index b43d12aa..9d2f39ed 100644 --- a/Sony/Sony_a7C_Tamron 28-200 @ 135__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Tamron 28-200 @ 135__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rupert Jordan", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron 28-200 @ 135", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron 28-200 @ 200__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Tamron 28-200 @ 200__4k_16by9_3840x2160-25.00fps.json index c7b7114e..0991a21e 100644 --- a/Sony/Sony_a7C_Tamron 28-200 @ 200__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Tamron 28-200 @ 200__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rupert Jordan", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron 28-200 @ 200", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron 28-200 @ 28__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Tamron 28-200 @ 28__4k_16by9_3840x2160-25.00fps.json index df20e7e8..3f39a2d1 100644 --- a/Sony/Sony_a7C_Tamron 28-200 @ 28__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Tamron 28-200 @ 28__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rupert Jordan", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron 28-200 @ 28", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron 28-200 @ 35__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Tamron 28-200 @ 35__4k_16by9_3840x2160-25.00fps.json index d101bff7..a50da099 100644 --- a/Sony/Sony_a7C_Tamron 28-200 @ 35__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Tamron 28-200 @ 35__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rupert Jordan", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron 28-200 @ 35", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron 28-200 @ 50__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Tamron 28-200 @ 50__4k_16by9_3840x2160-25.00fps.json index 68a80863..dbb06a9d 100644 --- a/Sony/Sony_a7C_Tamron 28-200 @ 50__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Tamron 28-200 @ 50__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rupert Jordan", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron 28-200 @ 50", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron 28-200 @ 70__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Tamron 28-200 @ 70__4k_16by9_3840x2160-25.00fps.json index aa4ce3b4..ee52ba59 100644 --- a/Sony/Sony_a7C_Tamron 28-200 @ 70__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Tamron 28-200 @ 70__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rupert Jordan", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron 28-200 @ 70", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron 28-200mm f2.8-5.6__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_Tamron 28-200mm f2.8-5.6__4k_16by9_3840x2160-29.97fps.json index cec56fb1..ea5e1b17 100644 --- a/Sony/Sony_a7C_Tamron 28-200mm f2.8-5.6__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_Tamron 28-200mm f2.8-5.6__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Gavin Liu", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron 28-200mm f/2.8-5.6", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron 28-75 Di VXD G2_28mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Tamron 28-75 Di VXD G2_28mm_4k_16by9_3840x2160-25.00fps.json index 7372238d..78ef168c 100644 --- a/Sony/Sony_a7C_Tamron 28-75 Di VXD G2_28mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Tamron 28-75 Di VXD G2_28mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "28mm", "calibrated_by": "Alex", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron 28-75 Di VXD G2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron 28-75 F2.8 G2__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_Tamron 28-75 F2.8 G2__4k_16by9_3840x2160-29.97fps.json index cb490434..6a8ab67a 100644 --- a/Sony/Sony_a7C_Tamron 28-75 F2.8 G2__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_Tamron 28-75 F2.8 G2__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Chandrashekar Gunashekaran", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron 28-75 F2.8 G2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron 28-75__1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7C_Tamron 28-75__1080p_16by9_1920x1080-25.00fps.json index 990f1b2d..7a86fe2e 100644 --- a/Sony/Sony_a7C_Tamron 28-75__1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7C_Tamron 28-75__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Michael Gurfing", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron 28-75", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron 35mm FE2.8 Di III OSD__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Tamron 35mm FE2.8 Di III OSD__4k_16by9_3840x2160-25.00fps.json index 104a0f60..2508e16c 100644 --- a/Sony/Sony_a7C_Tamron 35mm FE2.8 Di III OSD__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Tamron 35mm FE2.8 Di III OSD__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Atanas Dragov", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron 35mm FE/2.8 Di III OSD", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron FE 20-40 @20mm 1.2x 30fps_11000_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_Tamron FE 20-40 @20mm 1.2x 30fps_11000_4k_16by9_3840x2160-29.97fps.json index 947cdffa..cb8581b5 100644 --- a/Sony/Sony_a7C_Tamron FE 20-40 @20mm 1.2x 30fps_11000_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_Tamron FE 20-40 @20mm 1.2x 30fps_11000_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rio SW Yogyakarta", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron FE 20-40 @20mm 1.2x 30fps", "camera_setting": "1/1000", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron FE 20-40 @20mm_11000_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_Tamron FE 20-40 @20mm_11000_4k_16by9_3840x2160-23.98fps.json index 9bf00521..fa0f4fca 100644 --- a/Sony/Sony_a7C_Tamron FE 20-40 @20mm_11000_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_Tamron FE 20-40 @20mm_11000_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rio SW Yogyakarta", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron FE 20-40 @20mm", "camera_setting": "1/1000", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron FE 20-40 @20mm_1250_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_Tamron FE 20-40 @20mm_1250_4k_16by9_3840x2160-23.98fps.json index fc696c5d..28c6f23d 100644 --- a/Sony/Sony_a7C_Tamron FE 20-40 @20mm_1250_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_Tamron FE 20-40 @20mm_1250_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rio SW Yogyakarta", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron FE 20-40 @20mm", "camera_setting": "1/250", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron FE 20-40 @28mm 30fps 1.2x_11000_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_Tamron FE 20-40 @28mm 30fps 1.2x_11000_4k_16by9_3840x2160-29.97fps.json index c7ff0a21..caf6e1c8 100644 --- a/Sony/Sony_a7C_Tamron FE 20-40 @28mm 30fps 1.2x_11000_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_Tamron FE 20-40 @28mm 30fps 1.2x_11000_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rio SW Yogyakarta", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron FE 20-40 @28mm 30fps 1.2x", "camera_setting": "1/1000", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron FE 20-40 @28mm_1.2x Crop_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_Tamron FE 20-40 @28mm_1.2x Crop_4k_16by9_3840x2160-29.97fps.json index 9507bf59..2ca89f5c 100644 --- a/Sony/Sony_a7C_Tamron FE 20-40 @28mm_1.2x Crop_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_Tamron FE 20-40 @28mm_1.2x Crop_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rio SW Yogyakarta", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron FE 20-40 @28mm", "camera_setting": "1.2x Crop", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron FE 20-40 @28mm_11000_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_Tamron FE 20-40 @28mm_11000_4k_16by9_3840x2160-23.98fps.json index 41c3b80c..fea1dc7d 100644 --- a/Sony/Sony_a7C_Tamron FE 20-40 @28mm_11000_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_Tamron FE 20-40 @28mm_11000_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rio SW Yogyakarta", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron FE 20-40 @28mm", "camera_setting": "1/1000", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron FE 20-40 @28mm_1250_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_Tamron FE 20-40 @28mm_1250_4k_16by9_3840x2160-23.98fps.json index 401069cb..63edfde9 100644 --- a/Sony/Sony_a7C_Tamron FE 20-40 @28mm_1250_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_Tamron FE 20-40 @28mm_1250_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rio SW Yogyakarta", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron FE 20-40 @28mm", "camera_setting": "1/250", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron FE 20-40 @40 1.5x Crop + Zoom 1.5x_11000_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_Tamron FE 20-40 @40 1.5x Crop + Zoom 1.5x_11000_4k_16by9_3840x2160-29.97fps.json index 2eb86231..1286e3e9 100644 --- a/Sony/Sony_a7C_Tamron FE 20-40 @40 1.5x Crop + Zoom 1.5x_11000_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_Tamron FE 20-40 @40 1.5x Crop + Zoom 1.5x_11000_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rio SW Yogyakarta", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron FE 20-40 @40 1.5x Crop + Zoom 1.5x", "camera_setting": "1/1000", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron FE 20-40 @40mm + Zoom 1.5x_11000_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_Tamron FE 20-40 @40mm + Zoom 1.5x_11000_4k_16by9_3840x2160-23.98fps.json index 173a3dee..3277afbf 100644 --- a/Sony/Sony_a7C_Tamron FE 20-40 @40mm + Zoom 1.5x_11000_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_Tamron FE 20-40 @40mm + Zoom 1.5x_11000_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rio SW Yogyakarta", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron FE 20-40 @40mm + Zoom 1.5x", "camera_setting": "1/1000", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron FE 20-40 @40mm + Zoom 1.5x_1250_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_Tamron FE 20-40 @40mm + Zoom 1.5x_1250_4k_16by9_3840x2160-23.98fps.json index f8401fe4..899cf7ec 100644 --- a/Sony/Sony_a7C_Tamron FE 20-40 @40mm + Zoom 1.5x_1250_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_Tamron FE 20-40 @40mm + Zoom 1.5x_1250_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rio SW Yogyakarta", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron FE 20-40 @40mm + Zoom 1.5x", "camera_setting": "1/250", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron FE 20-40 @40mm 30fps 1.2x + 1.5x Zoom_11000_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_Tamron FE 20-40 @40mm 30fps 1.2x + 1.5x Zoom_11000_4k_16by9_3840x2160-29.97fps.json index 658060fb..74c5f05f 100644 --- a/Sony/Sony_a7C_Tamron FE 20-40 @40mm 30fps 1.2x + 1.5x Zoom_11000_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_Tamron FE 20-40 @40mm 30fps 1.2x + 1.5x Zoom_11000_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rio SW Yogyakarta", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron FE 20-40 @40mm 30fps 1.2x + 1.5x Zoom", "camera_setting": "1/1000", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron FE 20-40 @40mm 30fps 1.2x_11000_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_Tamron FE 20-40 @40mm 30fps 1.2x_11000_4k_16by9_3840x2160-29.97fps.json index b55d99f0..5a704f01 100644 --- a/Sony/Sony_a7C_Tamron FE 20-40 @40mm 30fps 1.2x_11000_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_Tamron FE 20-40 @40mm 30fps 1.2x_11000_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rio SW Yogyakarta", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron FE 20-40 @40mm 30fps 1.2x", "camera_setting": "1/1000", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron FE 20-40 @40mm Crop 1.5 + Zoom 1.5_1250_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_Tamron FE 20-40 @40mm Crop 1.5 + Zoom 1.5_1250_4k_16by9_3840x2160-23.98fps.json index eec7ce1c..2af9d09e 100644 --- a/Sony/Sony_a7C_Tamron FE 20-40 @40mm Crop 1.5 + Zoom 1.5_1250_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_Tamron FE 20-40 @40mm Crop 1.5 + Zoom 1.5_1250_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rio SW Yogyakarta", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron FE 20-40 @40mm Crop 1.5 + Zoom 1.5", "camera_setting": "1/250", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron FE 20-40 @40mm_1.2x Crop_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_Tamron FE 20-40 @40mm_1.2x Crop_4k_16by9_3840x2160-29.97fps.json index df5aa103..02799196 100644 --- a/Sony/Sony_a7C_Tamron FE 20-40 @40mm_1.2x Crop_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_Tamron FE 20-40 @40mm_1.2x Crop_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rio SW Yogyakarta", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron FE 20-40 @40mm", "camera_setting": "1.2x Crop", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron FE 20-40 @40mm_11000_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_Tamron FE 20-40 @40mm_11000_4k_16by9_3840x2160-23.98fps.json index aeccec79..444c9ad5 100644 --- a/Sony/Sony_a7C_Tamron FE 20-40 @40mm_11000_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_Tamron FE 20-40 @40mm_11000_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rio SW Yogyakarta", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron FE 20-40 @40mm", "camera_setting": "1/1000", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron FE 20-40 @40mm_1250_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_Tamron FE 20-40 @40mm_1250_4k_16by9_3840x2160-23.98fps.json index 120a4c9d..1d93e278 100644 --- a/Sony/Sony_a7C_Tamron FE 20-40 @40mm_1250_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_Tamron FE 20-40 @40mm_1250_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rio SW Yogyakarta", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron FE 20-40 @40mm", "camera_setting": "1/250", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron FE 28-200 @100mm_400ss_4k_16by9_3840x2160-25.00fps - Rio A7C Yogyakarta - 2.json b/Sony/Sony_a7C_Tamron FE 28-200 @100mm_400ss_4k_16by9_3840x2160-25.00fps - Rio A7C Yogyakarta - 2.json index 7e48cbe0..d42acc31 100644 --- a/Sony/Sony_a7C_Tamron FE 28-200 @100mm_400ss_4k_16by9_3840x2160-25.00fps - Rio A7C Yogyakarta - 2.json +++ b/Sony/Sony_a7C_Tamron FE 28-200 @100mm_400ss_4k_16by9_3840x2160-25.00fps - Rio A7C Yogyakarta - 2.json @@ -3,7 +3,7 @@ "note": "100mm Focal Length", "calibrated_by": "Rio A7C Yogyakarta", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron FE 28-200 @100mm", "camera_setting": "400ss", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron FE 28-200 @100mm_400ss_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Tamron FE 28-200 @100mm_400ss_4k_16by9_3840x2160-25.00fps.json index deaf32f3..c5234029 100644 --- a/Sony/Sony_a7C_Tamron FE 28-200 @100mm_400ss_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Tamron FE 28-200 @100mm_400ss_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "100mm Focal Length", "calibrated_by": "Rio A7C Yogyakarta", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron FE 28-200 @100mm", "camera_setting": "400ss", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron FE 28-200 @40mm_400ss_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Tamron FE 28-200 @40mm_400ss_4k_16by9_3840x2160-25.00fps.json index 5acfb594..8f02f1fd 100644 --- a/Sony/Sony_a7C_Tamron FE 28-200 @40mm_400ss_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Tamron FE 28-200 @40mm_400ss_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "40mm Focal Length", "calibrated_by": "Rio A7C Yogyakarta", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron FE 28-200 @40mm", "camera_setting": "400ss", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron FE 28-200mm 2.8_400ss_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Tamron FE 28-200mm 2.8_400ss_4k_16by9_3840x2160-25.00fps.json index 07eb9d2b..65e9c2aa 100644 --- a/Sony/Sony_a7C_Tamron FE 28-200mm 2.8_400ss_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Tamron FE 28-200mm 2.8_400ss_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rio A7C Yogyakarta", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron FE 28-200mm 2.8", "camera_setting": "400ss", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron-28-75-2g__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_Tamron-28-75-2g__4k_16by9_3840x2160-29.97fps.json index c85b0f7b..2c953274 100644 --- a/Sony/Sony_a7C_Tamron-28-75-2g__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_Tamron-28-75-2g__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Cristian Lopez", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron-28-75-2g", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Tamron70-300_70mm_4k_16by9_3840x2160-23.98fps - Eric.json b/Sony/Sony_a7C_Tamron70-300_70mm_4k_16by9_3840x2160-23.98fps - Eric.json index 1915b27a..bd0beecf 100644 --- a/Sony/Sony_a7C_Tamron70-300_70mm_4k_16by9_3840x2160-23.98fps - Eric.json +++ b/Sony/Sony_a7C_Tamron70-300_70mm_4k_16by9_3840x2160-23.98fps - Eric.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eric", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Tamron70-300", "camera_setting": "70mm", "calib_dimension": { diff --git a/Sony/Sony_a7C_Topcor 57mm_f2.8_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_Topcor 57mm_f2.8_4k_16by9_3840x2160-29.97fps.json index cdf86cb6..bc81958c 100644 --- a/Sony/Sony_a7C_Topcor 57mm_f2.8_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_Topcor 57mm_f2.8_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rdreamshot", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Topcor 57mm", "camera_setting": "f2.8", "calib_dimension": { diff --git a/Sony/Sony_a7C_VILTROX 16mm 1.8f__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_VILTROX 16mm 1.8f__4k_16by9_3840x2160-29.97fps.json index 7c7976e6..534de9ba 100644 --- a/Sony/Sony_a7C_VILTROX 16mm 1.8f__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_VILTROX 16mm 1.8f__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ARTURO", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "VILTROX 16mm 1.8f", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Viltrox 20mm2.8 FE__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Viltrox 20mm2.8 FE__4k_16by9_3840x2160-25.00fps.json index 0751a944..420c76ac 100644 --- a/Sony/Sony_a7C_Viltrox 20mm2.8 FE__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Viltrox 20mm2.8 FE__4k_16by9_3840x2160-25.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Atanas Dragov", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7C_Viltrox 40mm f.5__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Viltrox 40mm f.5__4k_16by9_3840x2160-25.00fps.json index 3470cf31..3d748059 100644 --- a/Sony/Sony_a7C_Viltrox 40mm f.5__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Viltrox 40mm f.5__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Atanas Dragov", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Viltrox 40mm f.5", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_YN85MM F1.8_85MM_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7C_YN85MM F1.8_85MM_1080p_16by9_1920x1080-50.00fps.json index 085010be..ce8087ef 100644 --- a/Sony/Sony_a7C_YN85MM F1.8_85MM_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7C_YN85MM F1.8_85MM_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "' Wy", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "YN85MM F1.8", "camera_setting": "85MM", "calib_dimension": { diff --git a/Sony/Sony_a7C_Zeiss Batis 225__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Zeiss Batis 225__4k_16by9_3840x2160-25.00fps.json index c2c15af3..c576b281 100644 --- a/Sony/Sony_a7C_Zeiss Batis 225__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Zeiss Batis 225__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Sven Kalbhenn", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Zeiss Batis 2/25", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_Zeiss Loxia 21mm f2.8_IBIS on_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_Zeiss Loxia 21mm f2.8_IBIS on_4k_16by9_3840x2160-25.00fps.json index f774e6a3..af41127c 100644 --- a/Sony/Sony_a7C_Zeiss Loxia 21mm f2.8_IBIS on_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_Zeiss Loxia 21mm f2.8_IBIS on_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "IBIS on", "calibrated_by": "Jan Muller", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "Zeiss Loxia 21mm f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_a3a23ffd_Sony FE 35mm F1.8 lens_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_a3a23ffd_Sony FE 35mm F1.8 lens_4k_16by9_3840x2160-25.00fps.json index e8a87a2e..c6320817 100644 --- a/Sony/Sony_a7C_a3a23ffd_Sony FE 35mm F1.8 lens_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_a3a23ffd_Sony FE 35mm F1.8 lens_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "Sony FE 35mm F1.8 lens", "calibrated_by": "mdf", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "a3a23ffd", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_aps-c 18mm__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7C_aps-c 18mm__1080p_16by9_1920x1080-59.94fps.json index ee3b5d39..3055c6c6 100644 --- a/Sony/Sony_a7C_aps-c 18mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7C_aps-c 18mm__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ba'ba", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "aps-c 18mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_aps-c 35mm__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7C_aps-c 35mm__1080p_16by9_1920x1080-59.94fps.json index 823103fa..11ae4008 100644 --- a/Sony/Sony_a7C_aps-c 35mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7C_aps-c 35mm__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ba'ba", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "aps-c 35mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_betis 18mm 2.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_betis 18mm 2.8__4k_16by9_3840x2160-25.00fps.json index ab22f506..c53235fa 100644 --- a/Sony/Sony_a7C_betis 18mm 2.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_betis 18mm 2.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "手持", "calibrated_by": "阿猛", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "betis 18mm 2.8", "camera_setting": "防抖开启", "calib_dimension": { diff --git a/Sony/Sony_a7C_betis18mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_betis18mm__4k_16by9_3840x2160-25.00fps.json index 19c19199..4614c0ad 100644 --- a/Sony/Sony_a7C_betis18mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_betis18mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "手持", "calibrated_by": "阿猛", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "betis18mm", "camera_setting": "防抖关闭", "calib_dimension": { diff --git a/Sony/Sony_a7C_e7403f4a_SEL24F28G_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_e7403f4a_SEL24F28G_4k_16by9_3840x2160-29.97fps.json index afae2899..eb2625bf 100644 --- a/Sony/Sony_a7C_e7403f4a_SEL24F28G_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_e7403f4a_SEL24F28G_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "SEL24F28G", "calibrated_by": "Neil Chen", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "e7403f4a", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_eca95ab9_Viltrox 85mm f1.8 II_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_eca95ab9_Viltrox 85mm f1.8 II_4k_16by9_3840x2160-25.00fps.json index cc99a1fd..3898ac87 100644 --- a/Sony/Sony_a7C_eca95ab9_Viltrox 85mm f1.8 II_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_eca95ab9_Viltrox 85mm f1.8 II_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "Viltrox 85mm f1.8 II", "calibrated_by": "Jan Muller", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "eca95ab9", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_fe20-70f4_20mm_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7C_fe20-70f4_20mm_1080p_16by9_1920x1080-59.94fps.json index 4daededc..89532209 100644 --- a/Sony/Sony_a7C_fe20-70f4_20mm_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7C_fe20-70f4_20mm_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "59", "calibrated_by": "yubin zhao", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "fe20-70f4", "camera_setting": "20mm", "calib_dimension": { diff --git a/Sony/Sony_a7C_meike 35mm 1.7__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_meike 35mm 1.7__4k_16by9_3840x2160-25.00fps.json index a5960487..2bfb5ffb 100644 --- a/Sony/Sony_a7C_meike 35mm 1.7__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_meike 35mm 1.7__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ariya Chandra", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "meike 35mm 1.7", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_samyang 18mm f2.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_samyang 18mm f2.8__4k_16by9_3840x2160-25.00fps.json index dd1513f4..78663357 100644 --- a/Sony/Sony_a7C_samyang 18mm f2.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_samyang 18mm f2.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "wentao li", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "samyang 18mm f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_samyang 24__1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a7C_samyang 24__1080p_16by9_1920x1080-100.00fps.json index e0fc7fbf..d9c35dcd 100644 --- a/Sony/Sony_a7C_samyang 24__1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a7C_samyang 24__1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "王家辉", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "samyang 24", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_samyang14mmt3.1__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7C_samyang14mmt3.1__1080p_16by9_1920x1080-59.94fps.json index c0131a23..fb0801e5 100644 --- a/Sony/Sony_a7C_samyang14mmt3.1__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7C_samyang14mmt3.1__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "黄元哲", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "samyang14mmt3.1", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_sel20f18g__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_sel20f18g__4k_16by9_3840x2160-29.97fps.json index bd31290c..39f78a7e 100644 --- a/Sony/Sony_a7C_sel20f18g__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_sel20f18g__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "chanss", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "sel20f18g", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_sel24240 @ 240mm_3940x 23.976_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_sel24240 @ 240mm_3940x 23.976_4k_16by9_3840x2160-23.98fps.json index 27f81073..2cc3a9b4 100644 --- a/Sony/Sony_a7C_sel24240 @ 240mm_3940x 23.976_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_sel24240 @ 240mm_3940x 23.976_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "umr", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "sel24240 @ 240mm", "camera_setting": "3940x 23.976", "calib_dimension": { diff --git a/Sony/Sony_a7C_sel24240 @240mm_29.97_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_sel24240 @240mm_29.97_4k_16by9_3840x2160-29.97fps.json index 60802388..b20834d8 100644 --- a/Sony/Sony_a7C_sel24240 @240mm_29.97_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_sel24240 @240mm_29.97_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "umr", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "sel24240 @240mm", "camera_setting": "29.97", "calib_dimension": { diff --git a/Sony/Sony_a7C_sel2860_28mm_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7C_sel2860_28mm_4k_16by9_3840x2160-23.98fps.json index 5a0506b5..9524f1d9 100644 --- a/Sony/Sony_a7C_sel2860_28mm_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7C_sel2860_28mm_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "eis_off", "calibrated_by": "koichi", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "sel2860", "camera_setting": "28mm", "calib_dimension": { diff --git a/Sony/Sony_a7C_sigma 24-70 24mm__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7C_sigma 24-70 24mm__1080p_16by9_1920x1080-59.94fps.json index 5dfb1d1d..b53687f5 100644 --- a/Sony/Sony_a7C_sigma 24-70 24mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7C_sigma 24-70 24mm__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "林中小虎", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "sigma 24-70 24mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_sigma 28-70 DG DN_28mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_sigma 28-70 DG DN_28mm_4k_16by9_3840x2160-25.00fps.json index 2ebdeaab..2ea097f8 100644 --- a/Sony/Sony_a7C_sigma 28-70 DG DN_28mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_sigma 28-70 DG DN_28mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "16:9", "calibrated_by": "chamquin", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "sigma 28-70 DG DN", "camera_setting": "28mm", "calib_dimension": { diff --git a/Sony/Sony_a7C_sigma_30mm 1.4 dcdn_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_sigma_30mm 1.4 dcdn_4k_16by9_3840x2160-29.97fps.json index 59a4de66..834e07c4 100644 --- a/Sony/Sony_a7C_sigma_30mm 1.4 dcdn_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_sigma_30mm 1.4 dcdn_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "j ay", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "sigma", "camera_setting": "30mm 1.4 dcdn", "calib_dimension": { diff --git a/Sony/Sony_a7C_sony fe2870__1080p_16by9_1920x1080-29.97fps.json b/Sony/Sony_a7C_sony fe2870__1080p_16by9_1920x1080-29.97fps.json index 8055b025..e9388812 100644 --- a/Sony/Sony_a7C_sony fe2870__1080p_16by9_1920x1080-29.97fps.json +++ b/Sony/Sony_a7C_sony fe2870__1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "陈旷亦", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "sony fe2870", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_sony20F1.8__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7C_sony20F1.8__4k_16by9_3840x2160-29.97fps.json index 52234f45..aba63101 100644 --- a/Sony/Sony_a7C_sony20F1.8__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7C_sony20F1.8__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "蝌蚪别闹", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "sony20F1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_tamron 28-75 di 3 f2.8_28mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_tamron 28-75 di 3 f2.8_28mm_4k_16by9_3840x2160-25.00fps.json index d92ebaf3..7bf35cc1 100644 --- a/Sony/Sony_a7C_tamron 28-75 di 3 f2.8_28mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_tamron 28-75 di 3 f2.8_28mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "28mm", "calibrated_by": "Dimas", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "tamron 28-75 di 3 f/2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_viltrol 20.00mm f2.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_viltrol 20.00mm f2.8__4k_16by9_3840x2160-25.00fps.json index 5fbd4c58..80f66de7 100644 --- a/Sony/Sony_a7C_viltrol 20.00mm f2.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_viltrol 20.00mm f2.8__4k_16by9_3840x2160-25.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "wangjie", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7C_viltrox 20.00mm f2.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_viltrox 20.00mm f2.8__4k_16by9_3840x2160-25.00fps.json index 3bb04493..a139a97b 100644 --- a/Sony/Sony_a7C_viltrox 20.00mm f2.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_viltrox 20.00mm f2.8__4k_16by9_3840x2160-25.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "wangjie", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7C_yongnuo50__1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7C_yongnuo50__1080p_16by9_1920x1080-25.00fps.json index 3499acf5..bc1b9e5e 100644 --- a/Sony/Sony_a7C_yongnuo50__1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7C_yongnuo50__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "杨丕展", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "yongnuo50", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_zeiss Batis 18__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7C_zeiss Batis 18__1080p_16by9_1920x1080-50.00fps.json index 07796f13..bff4291a 100644 --- a/Sony/Sony_a7C_zeiss Batis 18__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7C_zeiss Batis 18__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Roy", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "zeiss Batis 18", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_zeiss Batis 40__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7C_zeiss Batis 40__1080p_16by9_1920x1080-50.00fps.json index fac3f685..677d25a8 100644 --- a/Sony/Sony_a7C_zeiss Batis 40__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7C_zeiss Batis 40__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Roy", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "zeiss Batis 40", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_zeiss Batis 85__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7C_zeiss Batis 85__1080p_16by9_1920x1080-50.00fps.json index 42c37ea8..63993bfe 100644 --- a/Sony/Sony_a7C_zeiss Batis 85__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7C_zeiss Batis 85__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Roy", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "zeiss Batis 85", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7C_zeiss batis 85__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7C_zeiss batis 85__4k_16by9_3840x2160-25.00fps.json index 8685bb71..3ddc7dda 100644 --- a/Sony/Sony_a7C_zeiss batis 85__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7C_zeiss batis 85__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "F", "camera_brand": "Sony", - "camera_model": "a7C", + "camera_model": "Alpha 7C", "lens_model": "zeiss batis 85", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7Cr_Sony 20-70mm f4_20mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7Cr_Sony 20-70mm f4_20mm_4k_16by9_3840x2160-25.00fps.json index 5793be28..f690846b 100644 --- a/Sony/Sony_a7Cr_Sony 20-70mm f4_20mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7Cr_Sony 20-70mm f4_20mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "20mm", "calibrated_by": "Yannick Wegner", "camera_brand": "Sony", - "camera_model": "a7Cr", + "camera_model": "Alpha 7CR", "lens_model": "Sony 20-70mm f4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_16-35 f4__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_16-35 f4__4k_16by9_3840x2160-29.97fps.json index 32f8cea6..af503235 100644 --- a/Sony/Sony_a7III_16-35 f4__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_16-35 f4__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "陶冶", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "16-35 f4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_16-35__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7III_16-35__1080p_16by9_1920x1080-50.00fps.json index 713fc8b6..3a6a1126 100644 --- a/Sony/Sony_a7III_16-35__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7III_16-35__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "蜗牛", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "16-35", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_16-35mm f2.8__1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a7III_16-35mm f2.8__1080p_16by9_1920x1080-100.00fps.json index 7ff873be..d66a2b5c 100644 --- a/Sony/Sony_a7III_16-35mm f2.8__1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a7III_16-35mm f2.8__1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Chris Colwell", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "16-35mm f/2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_16c__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_16c__4k_16by9_3840x2160-25.00fps.json index 46289f16..062e5f15 100644 --- a/Sony/Sony_a7III_16c__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_16c__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "16c", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_16mm 1_1.4 DC DN__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7III_16mm 1_1.4 DC DN__1080p_16by9_1920x1080-50.00fps.json index 924a1941..af7abac6 100644 --- a/Sony/Sony_a7III_16mm 1_1.4 DC DN__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7III_16mm 1_1.4 DC DN__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Tsepiso", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "16mm 1:1.4 DC DN", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_17__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_17__4k_16by9_3840x2160-25.00fps.json index 5ba0ac37..e81e7fa8 100644 --- a/Sony/Sony_a7III_17__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_17__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "17", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_20 2.8__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7III_20 2.8__1080p_16by9_1920x1080-50.00fps.json index ba0b8034..e6926d21 100644 --- a/Sony/Sony_a7III_20 2.8__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7III_20 2.8__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "腾龙20 2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_24-105 gss stds__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7III_24-105 gss stds__1080p_16by9_1920x1080-50.00fps.json index a33f867b..ba3ba0d6 100644 --- a/Sony/Sony_a7III_24-105 gss stds__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7III_24-105 gss stds__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jenny", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "24-105 gss stds", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_24-105__1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7III_24-105__1080p_16by9_1920x1080-25.00fps.json index adaf1cf9..25c8efcb 100644 --- a/Sony/Sony_a7III_24-105__1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7III_24-105__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "chenjie", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "24-105", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_24-105__4k_16by9_3840x2160-29.97fps - YU GU - 2.json b/Sony/Sony_a7III_24-105__4k_16by9_3840x2160-29.97fps - YU GU - 2.json index 8ff86f93..72eb3f1e 100644 --- a/Sony/Sony_a7III_24-105__4k_16by9_3840x2160-29.97fps - YU GU - 2.json +++ b/Sony/Sony_a7III_24-105__4k_16by9_3840x2160-29.97fps - YU GU - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "YU GU", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "24-105", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_24-105__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_24-105__4k_16by9_3840x2160-29.97fps.json index 899377fb..f6959d42 100644 --- a/Sony/Sony_a7III_24-105__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_24-105__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "YU GU", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "24-105", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_24-70 F2.8_60kps_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7III_24-70 F2.8_60kps_1080p_16by9_1920x1080-59.94fps.json index 30d07b74..5a63b6c3 100644 --- a/Sony/Sony_a7III_24-70 F2.8_60kps_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7III_24-70 F2.8_60kps_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "周壹", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "24-70 F2.8", "camera_setting": "60kps", "calib_dimension": { diff --git a/Sony/Sony_a7III_24-70_25_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_24-70_25_4k_16by9_3840x2160-25.00fps.json index f0a483a7..dfddb5ba 100644 --- a/Sony/Sony_a7III_24-70_25_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_24-70_25_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "李浩翔", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "24-70", "camera_setting": "25", "calib_dimension": { diff --git a/Sony/Sony_a7III_24-70__1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7III_24-70__1080p_16by9_1920x1080-25.00fps.json index 8037b13b..78c70fed 100644 --- a/Sony/Sony_a7III_24-70__1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7III_24-70__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "24-70", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_24-70mm F2.8_f8_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_24-70mm F2.8_f8_4k_16by9_3840x2160-25.00fps.json index bf3a6af6..ef6bb826 100644 --- a/Sony/Sony_a7III_24-70mm F2.8_f8_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_24-70mm F2.8_f8_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "70mm", "calibrated_by": "scott vuilleumier", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "24-70mm F2.8", "camera_setting": "f8", "calib_dimension": { diff --git a/Sony/Sony_a7III_2470F4__1080p_16by9_1920x1080-30.00fps.json b/Sony/Sony_a7III_2470F4__1080p_16by9_1920x1080-30.00fps.json index 0b6ce860..1440d4df 100644 --- a/Sony/Sony_a7III_2470F4__1080p_16by9_1920x1080-30.00fps.json +++ b/Sony/Sony_a7III_2470F4__1080p_16by9_1920x1080-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "2470F4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_24mm__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7III_24mm__1080p_16by9_1920x1080-59.94fps.json index 12637320..9f80735d 100644 --- a/Sony/Sony_a7III_24mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7III_24mm__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "linyi", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "24mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_28-70 F3.5-5.6_@_1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a7III_28-70 F3.5-5.6_@_1080p_16by9_1920x1080-100.00fps.json index 9ee4f411..d013304f 100644 --- a/Sony/Sony_a7III_28-70 F3.5-5.6_@_1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a7III_28-70 F3.5-5.6_@_1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "28mm F3.5", "calibrated_by": "林同学", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "28-70 F3.5-5.6", "camera_setting": "@", "calib_dimension": { diff --git a/Sony/Sony_a7III_28-70 F3.5-5.6_P@_1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a7III_28-70 F3.5-5.6_P@_1080p_16by9_1920x1080-100.00fps.json index bbffb8c2..56b5d1e6 100644 --- a/Sony/Sony_a7III_28-70 F3.5-5.6_P@_1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a7III_28-70 F3.5-5.6_P@_1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "林同学", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "28-70 F3.5-5.6", "camera_setting": "P@", "calib_dimension": { diff --git a/Sony/Sony_a7III_28-703.5-5.6_iso 100_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_28-703.5-5.6_iso 100_4k_16by9_3840x2160-25.00fps.json index 90fafcb2..746028d8 100644 --- a/Sony/Sony_a7III_28-703.5-5.6_iso 100_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_28-703.5-5.6_iso 100_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "35mm", "calibrated_by": "Егор Игнатенко", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "28-70/3.5-5.6", "camera_setting": "iso 100", "calib_dimension": { diff --git a/Sony/Sony_a7III_28-70_28mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_28-70_28mm_4k_16by9_3840x2160-25.00fps.json index 6537d399..ec75b256 100644 --- a/Sony/Sony_a7III_28-70_28mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_28-70_28mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "28mm", "calibrated_by": "123", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "28-70", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_28-70_30fos_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_28-70_30fos_4k_16by9_3840x2160-29.97fps.json index cf89fd00..288d63f0 100644 --- a/Sony/Sony_a7III_28-70_30fos_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_28-70_30fos_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Renan Garcia", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "28-70", "camera_setting": "30fos", "calib_dimension": { diff --git a/Sony/Sony_a7III_28-70__1080p_16by9_1920x1080-119.88fps.json b/Sony/Sony_a7III_28-70__1080p_16by9_1920x1080-119.88fps.json index 0136b4f1..e687f6c2 100644 --- a/Sony/Sony_a7III_28-70__1080p_16by9_1920x1080-119.88fps.json +++ b/Sony/Sony_a7III_28-70__1080p_16by9_1920x1080-119.88fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Tom Aulbach", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "28-70", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_28-70__4k_16by9_3840x2160-29.97fps - Rayen Bedoui.json b/Sony/Sony_a7III_28-70__4k_16by9_3840x2160-29.97fps - Rayen Bedoui.json index d68740a7..d1027351 100644 --- a/Sony/Sony_a7III_28-70__4k_16by9_3840x2160-29.97fps - Rayen Bedoui.json +++ b/Sony/Sony_a7III_28-70__4k_16by9_3840x2160-29.97fps - Rayen Bedoui.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rayen Bedoui", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "28-70", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_28-70__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_28-70__4k_16by9_3840x2160-29.97fps.json index de41216e..29196fa0 100644 --- a/Sony/Sony_a7III_28-70__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_28-70__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rayen Bedoui", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "28-70", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_28-75@28__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7III_28-75@28__1080p_16by9_1920x1080-50.00fps.json index a4a0a595..a7fb18fa 100644 --- a/Sony/Sony_a7III_28-75@28__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7III_28-75@28__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "LAM", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "28-75@28", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_28-75_28_4k_16by9_3840x2160-25.00fps - RCK-018 - 2.json b/Sony/Sony_a7III_28-75_28_4k_16by9_3840x2160-25.00fps - RCK-018 - 2.json index 24b9ddaa..b21d7810 100644 --- a/Sony/Sony_a7III_28-75_28_4k_16by9_3840x2160-25.00fps - RCK-018 - 2.json +++ b/Sony/Sony_a7III_28-75_28_4k_16by9_3840x2160-25.00fps - RCK-018 - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "RCK-018", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "28-75", "camera_setting": "28", "calib_dimension": { diff --git a/Sony/Sony_a7III_28-75_28_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_28-75_28_4k_16by9_3840x2160-25.00fps.json index d17aea53..d2977048 100644 --- a/Sony/Sony_a7III_28-75_28_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_28-75_28_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "RCK-018", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "28-75", "camera_setting": "28", "calib_dimension": { diff --git a/Sony/Sony_a7III_28-75__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7III_28-75__1080p_16by9_1920x1080-50.00fps.json index a891e71c..c26871ce 100644 --- a/Sony/Sony_a7III_28-75__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7III_28-75__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Syxmsi Rni", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "28-75", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_3.5-5.628-70_f3.5 28mm_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7III_3.5-5.628-70_f3.5 28mm_1080p_16by9_1920x1080-50.00fps.json index da7a2bed..92da867b 100644 --- a/Sony/Sony_a7III_3.5-5.628-70_f3.5 28mm_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7III_3.5-5.628-70_f3.5 28mm_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jenny", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "3.5-5.6/28-70", "camera_setting": "f3.5 28mm", "calib_dimension": { diff --git a/Sony/Sony_a7III_35c__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_35c__4k_16by9_3840x2160-25.00fps.json index f8637168..9f62427f 100644 --- a/Sony/Sony_a7III_35c__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_35c__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "35c", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_35mm f2.8 Di III OSD M 1_2__1080p_16by9_1920x1080-29.97fps.json b/Sony/Sony_a7III_35mm f2.8 Di III OSD M 1_2__1080p_16by9_1920x1080-29.97fps.json index 6c9e31af..428bbfac 100644 --- a/Sony/Sony_a7III_35mm f2.8 Di III OSD M 1_2__1080p_16by9_1920x1080-29.97fps.json +++ b/Sony/Sony_a7III_35mm f2.8 Di III OSD M 1_2__1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Will", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "35mm f/2.8 Di III OSD M 1:2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_35mm sigma__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_35mm sigma__4k_16by9_3840x2160-29.97fps.json index 0722b556..df6192d2 100644 --- a/Sony/Sony_a7III_35mm sigma__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_35mm sigma__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rene Weinitschke", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "35mm sigma", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_35mmF1.4__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_35mmF1.4__4k_16by9_3840x2160-25.00fps.json index 1239868c..5fbbacf8 100644 --- a/Sony/Sony_a7III_35mmF1.4__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_35mmF1.4__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Paulus", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "35mmF1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_418-105 stock__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_418-105 stock__4k_16by9_3840x2160-29.97fps.json index 32d87c8c..7725c505 100644 --- a/Sony/Sony_a7III_418-105 stock__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_418-105 stock__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Marc Stlouis", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "4/18-105 stock", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_50MM 1.8_FHD_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7III_50MM 1.8_FHD_1080p_16by9_1920x1080-59.94fps.json index 9025d234..48d800bc 100644 --- a/Sony/Sony_a7III_50MM 1.8_FHD_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7III_50MM 1.8_FHD_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Juan hernandez", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "50MM 1.8", "camera_setting": "FHD", "calib_dimension": { diff --git a/Sony/Sony_a7III_50MM 1.8__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_50MM 1.8__4k_16by9_3840x2160-29.97fps.json index 9586935b..9d62640a 100644 --- a/Sony/Sony_a7III_50MM 1.8__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_50MM 1.8__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Juan hernandez", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "50MM 1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_50__1080p_16by9_1920x1080-119.88fps.json b/Sony/Sony_a7III_50__1080p_16by9_1920x1080-119.88fps.json index 67033ad1..d8d38c6b 100644 --- a/Sony/Sony_a7III_50__1080p_16by9_1920x1080-119.88fps.json +++ b/Sony/Sony_a7III_50__1080p_16by9_1920x1080-119.88fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "50", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_50__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_50__4k_16by9_3840x2160-25.00fps.json index 34e3a7f9..6fd4be55 100644 --- a/Sony/Sony_a7III_50__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_50__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "🈵️十二", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "50", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_50mm 1.8 FE__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_50mm 1.8 FE__4k_16by9_3840x2160-25.00fps.json index 1d99a40b..232e2d42 100644 --- a/Sony/Sony_a7III_50mm 1.8 FE__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_50mm 1.8 FE__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Thomas' Nitro 5", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "50mm 1.8 FE", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_50mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_50mm__4k_16by9_3840x2160-29.97fps.json index 42c1aeea..54ef60a0 100644 --- a/Sony/Sony_a7III_50mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_50mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Marc Stlouis", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "50mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_50mm_c1920-_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7III_50mm_c1920-_1080p_16by9_1920x1080-50.00fps.json index c8181c1e..0afd0da4 100644 --- a/Sony/Sony_a7III_50mm_c1920-_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7III_50mm_c1920-_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "50mm", "calibrated_by": "mai", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "50mm", "camera_setting": "c1920-", "calib_dimension": { diff --git a/Sony/Sony_a7III_55 1.8 ZA__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7III_55 1.8 ZA__1080p_16by9_1920x1080-50.00fps.json index 2b29067b..b81490cb 100644 --- a/Sony/Sony_a7III_55 1.8 ZA__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7III_55 1.8 ZA__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "江展鹏", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "55 1.8 ZA", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_55 1.8__4k_16by9_3840x2160-25.00fps - Administrator - 2.json b/Sony/Sony_a7III_55 1.8__4k_16by9_3840x2160-25.00fps - Administrator - 2.json index 48d11ef7..e5aceb00 100644 --- a/Sony/Sony_a7III_55 1.8__4k_16by9_3840x2160-25.00fps - Administrator - 2.json +++ b/Sony/Sony_a7III_55 1.8__4k_16by9_3840x2160-25.00fps - Administrator - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "55 1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_55 1.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_55 1.8__4k_16by9_3840x2160-25.00fps.json index 2c830883..d78e8c12 100644 --- a/Sony/Sony_a7III_55 1.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_55 1.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "55 1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_55f1.8__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_55f1.8__4k_16by9_3840x2160-29.97fps.json index 6de45dd3..c1cc100b 100644 --- a/Sony/Sony_a7III_55f1.8__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_55f1.8__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "YU GU", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "55f1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_55mm F1.8 ZA_P@_1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a7III_55mm F1.8 ZA_P@_1080p_16by9_1920x1080-100.00fps.json index 2b197435..9102b907 100644 --- a/Sony/Sony_a7III_55mm F1.8 ZA_P@_1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a7III_55mm F1.8 ZA_P@_1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "林同学", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "55mm F1.8 ZA", "camera_setting": "P@", "calib_dimension": { diff --git a/Sony/Sony_a7III_55mm f1.8_M4k_720p_16by9_1280x720-29.97fps.json b/Sony/Sony_a7III_55mm f1.8_M4k_720p_16by9_1280x720-29.97fps.json index 8b165594..f8b9d281 100644 --- a/Sony/Sony_a7III_55mm f1.8_M4k_720p_16by9_1280x720-29.97fps.json +++ b/Sony/Sony_a7III_55mm f1.8_M4k_720p_16by9_1280x720-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ASUS 2023", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "55mm f1.8", "camera_setting": "M4k", "calib_dimension": { diff --git a/Sony/Sony_a7III_70mm__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7III_70mm__1080p_16by9_1920x1080-59.94fps.json index 03c20542..dfd20e15 100644 --- a/Sony/Sony_a7III_70mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7III_70mm__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ASUS", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "70mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_85mm__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7III_85mm__1080p_16by9_1920x1080-50.00fps.json index 8773bf30..4b1cd7e8 100644 --- a/Sony/Sony_a7III_85mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7III_85mm__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "85mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_A047__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_A047__4k_16by9_3840x2160-25.00fps.json index 47513e7c..8bf686f3 100644 --- a/Sony/Sony_a7III_A047__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_A047__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Oliver Marshall", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "A047", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_AstrHori 50 F2__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_AstrHori 50 F2__4k_16by9_3840x2160-29.97fps.json index e9929777..c51456db 100644 --- a/Sony/Sony_a7III_AstrHori 50 F2__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_AstrHori 50 F2__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "AstrHori 50 F2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Astrhori50f2__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_Astrhori50f2__4k_16by9_3840x2160-29.97fps.json index 54f812be..11c4c351 100644 --- a/Sony/Sony_a7III_Astrhori50f2__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_Astrhori50f2__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Astrhori50f2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Canon 16-35mm f4 L_16mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Canon 16-35mm f4 L_16mm_4k_16by9_3840x2160-25.00fps.json index c10dfb1c..8e4ed520 100644 --- a/Sony/Sony_a7III_Canon 16-35mm f4 L_16mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Canon 16-35mm f4 L_16mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "PC_03_Alex", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Canon 16-35mm f4 L", "camera_setting": "16mm", "calib_dimension": { diff --git a/Sony/Sony_a7III_Canon FD 28mm_XAVCS_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Canon FD 28mm_XAVCS_4k_16by9_3840x2160-25.00fps.json index 89788cd1..7e1a8eee 100644 --- a/Sony/Sony_a7III_Canon FD 28mm_XAVCS_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Canon FD 28mm_XAVCS_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ata Utku", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Canon FD 28mm", "camera_setting": "XAVCS", "calib_dimension": { diff --git a/Sony/Sony_a7III_Canon L 16-35mm f.4_@16mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Canon L 16-35mm f.4_@16mm_4k_16by9_3840x2160-25.00fps.json index c132ee6b..61a51206 100644 --- a/Sony/Sony_a7III_Canon L 16-35mm f.4_@16mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Canon L 16-35mm f.4_@16mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "PC_03_Alex", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Canon L 16-35mm f.4", "camera_setting": "@16mm", "calib_dimension": { diff --git a/Sony/Sony_a7III_Cine 21mm IRIX_HLG_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Cine 21mm IRIX_HLG_4k_16by9_3840x2160-25.00fps.json index 180301ca..dc34e083 100644 --- a/Sony/Sony_a7III_Cine 21mm IRIX_HLG_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Cine 21mm IRIX_HLG_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Michal", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Cine 21mm IRIX", "camera_setting": "HLG", "calib_dimension": { diff --git a/Sony/Sony_a7III_FE 1.435 GM_SLog-3_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7III_FE 1.435 GM_SLog-3_1080p_16by9_1920x1080-50.00fps.json index 71f85573..d4f34e3b 100644 --- a/Sony/Sony_a7III_FE 1.435 GM_SLog-3_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7III_FE 1.435 GM_SLog-3_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Kadir MUKTEDİR", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "FE 1.4/35 GM", "camera_setting": "SLog-3", "calib_dimension": { diff --git a/Sony/Sony_a7III_FE 1.835__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7III_FE 1.835__1080p_16by9_1920x1080-50.00fps.json index ebdad55b..89de86bb 100644 --- a/Sony/Sony_a7III_FE 1.835__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7III_FE 1.835__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "michelle", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "FE 1.8/35", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_FE 24-105 mm F4 G OSS_FE P_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7III_FE 24-105 mm F4 G OSS_FE P_1080p_16by9_1920x1080-59.94fps.json index 73b4953f..ceaa5d69 100644 --- a/Sony/Sony_a7III_FE 24-105 mm F4 G OSS_FE P_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7III_FE 24-105 mm F4 G OSS_FE P_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "24mm", "calibrated_by": "José Saúl González de León", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "FE 24-105 mm F4 G OSS", "camera_setting": "FE P", "calib_dimension": { diff --git a/Sony/Sony_a7III_FE 4 24-105 G OSS_35mm_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_FE 4 24-105 G OSS_35mm_4k_16by9_3840x2160-29.97fps.json index 5b3ff126..a455eed4 100644 --- a/Sony/Sony_a7III_FE 4 24-105 G OSS_35mm_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_FE 4 24-105 G OSS_35mm_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "David", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "FE 4 / 24-105 G OSS", "camera_setting": "35mm", "calib_dimension": { diff --git a/Sony/Sony_a7III_FE 4 25-105 G OOS_11000_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_FE 4 25-105 G OOS_11000_4k_16by9_3840x2160-25.00fps.json index a81638c2..93ca3436 100644 --- a/Sony/Sony_a7III_FE 4 25-105 G OOS_11000_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_FE 4 25-105 G OOS_11000_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "24mm IBIS OFF", "calibrated_by": "RobR", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "FE 4/ 25-105 G OOS", "camera_setting": "1/1000", "calib_dimension": { diff --git a/Sony/Sony_a7III_FE 412-24 G_12mm Auto ISO XAVC S HD_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7III_FE 412-24 G_12mm Auto ISO XAVC S HD_1080p_16by9_1920x1080-59.94fps.json index ddd67da2..b7e69cc2 100644 --- a/Sony/Sony_a7III_FE 412-24 G_12mm Auto ISO XAVC S HD_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7III_FE 412-24 G_12mm Auto ISO XAVC S HD_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "HP Z4 G4", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "FE 4/12-24 G", "camera_setting": "12mm Auto ISO XAVC S HD", "calib_dimension": { diff --git a/Sony/Sony_a7III_FE 424-105 G OSS__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7III_FE 424-105 G OSS__1080p_16by9_1920x1080-50.00fps.json index 488aa17d..974a40de 100644 --- a/Sony/Sony_a7III_FE 424-105 G OSS__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7III_FE 424-105 G OSS__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "陈宇涵", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "FE 4/24-105 G OSS", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_FE 50mm 1.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_FE 50mm 1.8__4k_16by9_3840x2160-25.00fps.json index e946f5f4..094e45aa 100644 --- a/Sony/Sony_a7III_FE 50mm 1.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_FE 50mm 1.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Aamir Khan", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "FE 50mm 1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_FE4 24-105 G OSS__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7III_FE4 24-105 G OSS__1080p_16by9_1920x1080-59.94fps.json index f4cb7708..2f2418c9 100644 --- a/Sony/Sony_a7III_FE4 24-105 G OSS__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7III_FE4 24-105 G OSS__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Nuno Rafael Nobre", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "FE4 /24-105 G OSS", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_GM 16-35_35mm_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_GM 16-35_35mm_4k_16by9_3840x2160-29.97fps.json index 545338e9..753271dc 100644 --- a/Sony/Sony_a7III_GM 16-35_35mm_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_GM 16-35_35mm_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "35mm", "calibrated_by": "Nicholas Scalabrino", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "GM 16-35", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_GM 16-35mm 2.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_GM 16-35mm 2.8__4k_16by9_3840x2160-25.00fps.json index bbcbd23b..4bef4b2a 100644 --- a/Sony/Sony_a7III_GM 16-35mm 2.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_GM 16-35mm 2.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "tiago.guano", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "GM 16-35mm 2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_GMaster FE 2.824-70_100M_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_GMaster FE 2.824-70_100M_4k_16by9_3840x2160-25.00fps.json index ac4e4853..eec99490 100644 --- a/Sony/Sony_a7III_GMaster FE 2.824-70_100M_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_GMaster FE 2.824-70_100M_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "24mm", "calibrated_by": "attimo.h265", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "GMaster FE 2.8/24-70", "camera_setting": "100M", "calib_dimension": { diff --git a/Sony/Sony_a7III_Helios 44-6__4k_16by9_3840x2160-25.00fps - Berno - 2.json b/Sony/Sony_a7III_Helios 44-6__4k_16by9_3840x2160-25.00fps - Berno - 2.json index 02949b97..ad8ebabd 100644 --- a/Sony/Sony_a7III_Helios 44-6__4k_16by9_3840x2160-25.00fps - Berno - 2.json +++ b/Sony/Sony_a7III_Helios 44-6__4k_16by9_3840x2160-25.00fps - Berno - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Berno", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Helios 44-6", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Laowa 15mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Laowa 15mm__4k_16by9_3840x2160-25.00fps.json index f6029830..dcab944c 100644 --- a/Sony/Sony_a7III_Laowa 15mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Laowa 15mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Babang Deshommes", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Laowa 15mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Laowa_12mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Laowa_12mm_4k_16by9_3840x2160-25.00fps.json index db2abd48..194cdf20 100644 --- a/Sony/Sony_a7III_Laowa_12mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Laowa_12mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "12mm", "calibrated_by": "Guillaume", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Laowa", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Pergear 10mm f2.8_For FF, not APSC_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7III_Pergear 10mm f2.8_For FF, not APSC_4k_16by9_3840x2160-23.98fps.json index 804d1d83..73d4fcde 100644 --- a/Sony/Sony_a7III_Pergear 10mm f2.8_For FF, not APSC_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7III_Pergear 10mm f2.8_For FF, not APSC_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "For FF, not APSC", "calibrated_by": "Taylor", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Pergear 10mm f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_ROKINON 14 MM__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7III_ROKINON 14 MM__4k_16by9_3840x2160-23.98fps.json index 8360f073..ae18ecda 100644 --- a/Sony/Sony_a7III_ROKINON 14 MM__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7III_ROKINON 14 MM__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Erasmo Sierra", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "ROKINON 14 MM", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Rokinion-12mm-APSC__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Rokinion-12mm-APSC__4k_16by9_3840x2160-25.00fps.json index 050836f2..96f31413 100644 --- a/Sony/Sony_a7III_Rokinion-12mm-APSC__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Rokinion-12mm-APSC__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Peterson Octavius", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Rokinion-12mm-APSC", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Rokinon 12mm_P100_1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a7III_Rokinon 12mm_P100_1080p_16by9_1920x1080-100.00fps.json index b121d156..255e71ef 100644 --- a/Sony/Sony_a7III_Rokinon 12mm_P100_1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a7III_Rokinon 12mm_P100_1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Peterson Octavius", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Rokinon 12mm", "camera_setting": "P100", "calib_dimension": { diff --git a/Sony/Sony_a7III_Rokinon 12mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Rokinon 12mm__4k_16by9_3840x2160-25.00fps.json index 64517e82..db6b4607 100644 --- a/Sony/Sony_a7III_Rokinon 12mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Rokinon 12mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Peterson Octavius", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Rokinon 12mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Rokinon 14mm T3.1_3840x2160_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Rokinon 14mm T3.1_3840x2160_4k_16by9_3840x2160-25.00fps.json index 1d9653b5..3c9ed9cf 100644 --- a/Sony/Sony_a7III_Rokinon 14mm T3.1_3840x2160_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Rokinon 14mm T3.1_3840x2160_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "3840x2160", "calibrated_by": "AEREA.com.ar", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Rokinon 14mm T3.1", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_SAMYANG 14MM F2.8__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7III_SAMYANG 14MM F2.8__1080p_16by9_1920x1080-59.94fps.json index 224b1144..0df9d9d6 100644 --- a/Sony/Sony_a7III_SAMYANG 14MM F2.8__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7III_SAMYANG 14MM F2.8__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Windows User", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "SAMYANG 14MM F2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_SAMYANG 24mm F2.8 AF - SONY FE__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7III_SAMYANG 24mm F2.8 AF - SONY FE__4k_16by9_3840x2160-23.98fps.json index 4baeacf9..c8727199 100644 --- a/Sony/Sony_a7III_SAMYANG 24mm F2.8 AF - SONY FE__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7III_SAMYANG 24mm F2.8 AF - SONY FE__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Chris Jayden", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "SAMYANG 24mm F2.8 AF - SONY FE", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_SAMYANG 24mm F2.8 AF - SONY FE__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_SAMYANG 24mm F2.8 AF - SONY FE__4k_16by9_3840x2160-29.97fps.json index 8762fccb..95993bb7 100644 --- a/Sony/Sony_a7III_SAMYANG 24mm F2.8 AF - SONY FE__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_SAMYANG 24mm F2.8 AF - SONY FE__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Chris Jayden", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "SAMYANG 24mm F2.8 AF - SONY FE", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_SEL 70-200f4.0 @200mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_SEL 70-200f4.0 @200mm__4k_16by9_3840x2160-29.97fps.json index 5e87441c..a7747dec 100644 --- a/Sony/Sony_a7III_SEL 70-200f4.0 @200mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_SEL 70-200f4.0 @200mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Fabian Mauracher", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "SEL 70-200/f4.0 @200mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_SEL2470Z_FHD_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7III_SEL2470Z_FHD_1080p_16by9_1920x1080-59.94fps.json index 380e54a1..6621699e 100644 --- a/Sony/Sony_a7III_SEL2470Z_FHD_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7III_SEL2470Z_FHD_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "24mm", "calibrated_by": "Soo Khai Yip", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "SEL2470Z", "camera_setting": "FHD", "calib_dimension": { diff --git a/Sony/Sony_a7III_SEL2470Z__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7III_SEL2470Z__1080p_16by9_1920x1080-50.00fps.json index aed561a2..e599a58f 100644 --- a/Sony/Sony_a7III_SEL2470Z__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7III_SEL2470Z__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "SEL2470Z", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_SEL2470Z__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_SEL2470Z__4k_16by9_3840x2160-25.00fps.json index 2b64a5ac..2ccf1b06 100644 --- a/Sony/Sony_a7III_SEL2470Z__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_SEL2470Z__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "SEL2470Z", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_SELP18105G_SHD_1080p_16by9_1920x1080-29.97fps.json b/Sony/Sony_a7III_SELP18105G_SHD_1080p_16by9_1920x1080-29.97fps.json index 10aa72e7..e1a0bb9b 100644 --- a/Sony/Sony_a7III_SELP18105G_SHD_1080p_16by9_1920x1080-29.97fps.json +++ b/Sony/Sony_a7III_SELP18105G_SHD_1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "29mm", "calibrated_by": "EC.captureyourmoments", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "SELP18105G", "camera_setting": "SHD", "calib_dimension": { diff --git a/Sony/Sony_a7III_SHIMA 35mm F1.4__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_SHIMA 35mm F1.4__4k_16by9_3840x2160-25.00fps.json index a1a8c7c1..7e091ecf 100644 --- a/Sony/Sony_a7III_SHIMA 35mm F1.4__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_SHIMA 35mm F1.4__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Paulus", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "SHIMA 35mm F1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_SIGMA 14-24 F2.8_50 50mbps_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7III_SIGMA 14-24 F2.8_50 50mbps_1080p_16by9_1920x1080-50.00fps.json index ff78e718..a6026fbe 100644 --- a/Sony/Sony_a7III_SIGMA 14-24 F2.8_50 50mbps_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7III_SIGMA 14-24 F2.8_50 50mbps_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Lenovo", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "SIGMA 14-24 F2.8", "camera_setting": "50 50mbps", "calib_dimension": { diff --git a/Sony/Sony_a7III_SIGMA 14MM PRIME_XAVC S HD 50 FPS_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7III_SIGMA 14MM PRIME_XAVC S HD 50 FPS_1080p_16by9_1920x1080-59.94fps.json index a3024091..3b9382a8 100644 --- a/Sony/Sony_a7III_SIGMA 14MM PRIME_XAVC S HD 50 FPS_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7III_SIGMA 14MM PRIME_XAVC S HD 50 FPS_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "1/80, ISO1600, F8", "calibrated_by": "Jake P", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "SIGMA 14MM PRIME", "camera_setting": "XAVC S HD 50 FPS", "calib_dimension": { diff --git a/Sony/Sony_a7III_SIGMA 14MM__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7III_SIGMA 14MM__1080p_16by9_1920x1080-59.94fps.json index d054a80d..71546180 100644 --- a/Sony/Sony_a7III_SIGMA 14MM__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7III_SIGMA 14MM__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jake P", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "SIGMA 14MM", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_SIGMA 24-70mm_SLOG-2_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7III_SIGMA 24-70mm_SLOG-2_4k_16by9_3840x2160-23.98fps.json index 1f457a2d..cdfb71ab 100644 --- a/Sony/Sony_a7III_SIGMA 24-70mm_SLOG-2_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7III_SIGMA 24-70mm_SLOG-2_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ananz", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "SIGMA 24-70mm", "camera_setting": "SLOG-2", "calib_dimension": { diff --git a/Sony/Sony_a7III_SIGMA ART 18-35MM 1.8_XAVC, 35mm, Uncropped_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7III_SIGMA ART 18-35MM 1.8_XAVC, 35mm, Uncropped_1080p_16by9_1920x1080-59.94fps.json index 76400109..e1d08cf2 100644 --- a/Sony/Sony_a7III_SIGMA ART 18-35MM 1.8_XAVC, 35mm, Uncropped_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7III_SIGMA ART 18-35MM 1.8_XAVC, 35mm, Uncropped_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "XAVC, 35mm, Uncropped", "calibrated_by": "Jake P", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "SIGMA ART 18-35MM 1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_SONY FE 416-35__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_SONY FE 416-35__4k_16by9_3840x2160-29.97fps.json index dc5aa211..af341e68 100644 --- a/Sony/Sony_a7III_SONY FE 416-35__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_SONY FE 416-35__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "SONY FE 4/16-35", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Samyang 14 F2.8_25fps_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_Samyang 14 F2.8_25fps_4k_16by9_3840x2160-29.97fps.json index 0dcf4852..873e925b 100644 --- a/Sony/Sony_a7III_Samyang 14 F2.8_25fps_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_Samyang 14 F2.8_25fps_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "PejukFilms", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Samyang 14 F2.8", "camera_setting": "25fps", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sigma 16mm 1.4 DC_XAVC HD 50M_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7III_Sigma 16mm 1.4 DC_XAVC HD 50M_1080p_16by9_1920x1080-59.94fps.json index c89ec45e..504554de 100644 --- a/Sony/Sony_a7III_Sigma 16mm 1.4 DC_XAVC HD 50M_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7III_Sigma 16mm 1.4 DC_XAVC HD 50M_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Cu4tro", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sigma 16mm 1.4 DC", "camera_setting": "XAVC HD 50M", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sigma 24-70_24mm_1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a7III_Sigma 24-70_24mm_1080p_16by9_1920x1080-100.00fps.json index fd34b532..e9fe7d30 100644 --- a/Sony/Sony_a7III_Sigma 24-70_24mm_1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a7III_Sigma 24-70_24mm_1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "24mm", "calibrated_by": "Markus Rundereim Haukaas", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sigma 24-70", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sigma 24-70__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_Sigma 24-70__4k_16by9_3840x2160-29.97fps.json index 0002cb94..be130d8b 100644 --- a/Sony/Sony_a7III_Sigma 24-70__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_Sigma 24-70__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sigma 24-70", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sigma 24-70mm f2.8 DG DN_50mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Sigma 24-70mm f2.8 DG DN_50mm_4k_16by9_3840x2160-25.00fps.json index 1ee58e6d..4152b39a 100644 --- a/Sony/Sony_a7III_Sigma 24-70mm f2.8 DG DN_50mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Sigma 24-70mm f2.8 DG DN_50mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sigma 24-70mm f2.8 DG DN", "camera_setting": "50mm", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sigma 24-70mm f2.8_24mm_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_Sigma 24-70mm f2.8_24mm_4k_16by9_3840x2160-29.97fps.json index 258177e9..2d5c2cee 100644 --- a/Sony/Sony_a7III_Sigma 24-70mm f2.8_24mm_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_Sigma 24-70mm f2.8_24mm_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "24mm", "calibrated_by": "Justin Chow", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sigma 24-70mm f/2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sigma 24-70mm_Slog3_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_Sigma 24-70mm_Slog3_4k_16by9_3840x2160-29.97fps.json index 42bf44e2..e775541c 100644 --- a/Sony/Sony_a7III_Sigma 24-70mm_Slog3_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_Sigma 24-70mm_Slog3_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "50mm", "calibrated_by": "DNJK", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sigma 24-70mm", "camera_setting": "Slog3", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sigma 24-70mm__1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a7III_Sigma 24-70mm__1080p_16by9_1920x1080-100.00fps.json index 7f24ad13..10be37b1 100644 --- a/Sony/Sony_a7III_Sigma 24-70mm__1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a7III_Sigma 24-70mm__1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Iulian Cristian", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sigma 24-70mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sigma 28-70 mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Sigma 28-70 mm__4k_16by9_3840x2160-25.00fps.json index aba1cc89..26e3695f 100644 --- a/Sony/Sony_a7III_Sigma 28-70 mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Sigma 28-70 mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "REC.By Manet", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sigma 28-70 mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sigma 35 mm 1.4 ART DN__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7III_Sigma 35 mm 1.4 ART DN__1080p_16by9_1920x1080-50.00fps.json index 010b43fe..e1d2f559 100644 --- a/Sony/Sony_a7III_Sigma 35 mm 1.4 ART DN__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7III_Sigma 35 mm 1.4 ART DN__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ANTON", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sigma 35 mm 1.4 ART DN", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sigma 35mm 1.4 DG Art__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7III_Sigma 35mm 1.4 DG Art__1080p_16by9_1920x1080-59.94fps.json index 2440a33b..c3a66335 100644 --- a/Sony/Sony_a7III_Sigma 35mm 1.4 DG Art__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7III_Sigma 35mm 1.4 DG Art__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "SETDA", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sigma 35mm 1.4 DG Art", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sigma 35mm 1_1.4 DG__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7III_Sigma 35mm 1_1.4 DG__4k_16by9_3840x2160-23.98fps.json index 873de01d..ad235bec 100644 --- a/Sony/Sony_a7III_Sigma 35mm 1_1.4 DG__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7III_Sigma 35mm 1_1.4 DG__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Benno Knarr", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sigma 35mm 1:1.4 DG", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sigma 35mm f1.4_XAVC S 100M_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Sigma 35mm f1.4_XAVC S 100M_4k_16by9_3840x2160-25.00fps.json index 01443bd1..888ef44d 100644 --- a/Sony/Sony_a7III_Sigma 35mm f1.4_XAVC S 100M_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Sigma 35mm f1.4_XAVC S 100M_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "f/1.4", "calibrated_by": "Josh Hayward", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sigma 35mm f/1.4", "camera_setting": "XAVC S 100M", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sigma 40mm 1.4_30_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_Sigma 40mm 1.4_30_4k_16by9_3840x2160-29.97fps.json index 99d102bc..d2da54b3 100644 --- a/Sony/Sony_a7III_Sigma 40mm 1.4_30_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_Sigma 40mm 1.4_30_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Nathan Goldsmith", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sigma 40mm 1.4", "camera_setting": "30", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sigma Art 24mm 1.4__1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7III_Sigma Art 24mm 1.4__1080p_16by9_1920x1080-25.00fps.json index 60400f0f..4bafdd96 100644 --- a/Sony/Sony_a7III_Sigma Art 24mm 1.4__1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7III_Sigma Art 24mm 1.4__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Adrian Zalewski", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sigma Art 24mm 1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Snoy 28mm F2__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_Snoy 28mm F2__4k_16by9_3840x2160-29.97fps.json index fc56d7aa..ec6a7e84 100644 --- a/Sony/Sony_a7III_Snoy 28mm F2__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_Snoy 28mm F2__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Landa", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Snoy 28mm F2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sonnar T_ FE 55mm F1.8 ZA__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Sonnar T_ FE 55mm F1.8 ZA__4k_16by9_3840x2160-25.00fps.json index c4d36f23..9b9ee71e 100644 --- a/Sony/Sony_a7III_Sonnar T_ FE 55mm F1.8 ZA__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Sonnar T_ FE 55mm F1.8 ZA__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "liaoliao", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sonnar T* FE 55mm F1.8 ZA", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sony 24-105_S-log 3_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7III_Sony 24-105_S-log 3_1080p_16by9_1920x1080-59.94fps.json index d43cb07a..e37f6e7a 100644 --- a/Sony/Sony_a7III_Sony 24-105_S-log 3_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7III_Sony 24-105_S-log 3_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "24mm", "calibrated_by": "Malicky Boaz", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sony 24-105", "camera_setting": "S-log 3", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sony 24-70_24mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Sony 24-70_24mm_4k_16by9_3840x2160-25.00fps.json index cd51d3f4..1f83a861 100644 --- a/Sony/Sony_a7III_Sony 24-70_24mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Sony 24-70_24mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "24mm", "calibrated_by": "Flavio", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sony 24-70", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sony 28mm F2__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_Sony 28mm F2__4k_16by9_3840x2160-29.97fps.json index db91da63..50cba25b 100644 --- a/Sony/Sony_a7III_Sony 28mm F2__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_Sony 28mm F2__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Landa", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sony 28mm F2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sony 35mm f1.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Sony 35mm f1.8__4k_16by9_3840x2160-25.00fps.json index cde3fdcd..04a83d25 100644 --- a/Sony/Sony_a7III_Sony 35mm f1.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Sony 35mm f1.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Mathy", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sony 35mm f1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sony 50 mm 1.8_HD_1080p_16by9_1920x1080-29.97fps.json b/Sony/Sony_a7III_Sony 50 mm 1.8_HD_1080p_16by9_1920x1080-29.97fps.json index 99f5b44e..49669e2b 100644 --- a/Sony/Sony_a7III_Sony 50 mm 1.8_HD_1080p_16by9_1920x1080-29.97fps.json +++ b/Sony/Sony_a7III_Sony 50 mm 1.8_HD_1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Amjad", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sony 50 mm 1.8", "camera_setting": "HD", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sony 50mm f1.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Sony 50mm f1.8__4k_16by9_3840x2160-25.00fps.json index 54e5b0db..bc4b3079 100644 --- a/Sony/Sony_a7III_Sony 50mm f1.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Sony 50mm f1.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ephnel", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sony 50mm f1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sony 85mm 1.8__1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7III_Sony 85mm 1.8__1080p_16by9_1920x1080-25.00fps.json index d2d0c079..1cd3ac22 100644 --- a/Sony/Sony_a7III_Sony 85mm 1.8__1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7III_Sony 85mm 1.8__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Adrian Zalewski", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sony 85mm 1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sony FE 1.885_1160, F3.5, ISO2000_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7III_Sony FE 1.885_1160, F3.5, ISO2000_1080p_16by9_1920x1080-25.00fps.json index d5e7f291..5f6eacd3 100644 --- a/Sony/Sony_a7III_Sony FE 1.885_1160, F3.5, ISO2000_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7III_Sony FE 1.885_1160, F3.5, ISO2000_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "User", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sony FE 1.8/85", "camera_setting": "1/160, F3.5, ISO2000", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sony FE 2.824 G__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7III_Sony FE 2.824 G__1080p_16by9_1920x1080-59.94fps.json index a49d304c..08f5d860 100644 --- a/Sony/Sony_a7III_Sony FE 2.824 G__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7III_Sony FE 2.824 G__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "HP Z4 G4", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sony FE 2.8/24 G", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sony Prime 35mm f1.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Sony Prime 35mm f1.8__4k_16by9_3840x2160-25.00fps.json index c69d730a..12c2fd38 100644 --- a/Sony/Sony_a7III_Sony Prime 35mm f1.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Sony Prime 35mm f1.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Mathy", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sony Prime 35mm f1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sony SEL 24-240mm 1_3,5-6,3 FE OSS_@24mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Sony SEL 24-240mm 1_3,5-6,3 FE OSS_@24mm_4k_16by9_3840x2160-25.00fps.json index 862fd778..849af4a5 100644 --- a/Sony/Sony_a7III_Sony SEL 24-240mm 1_3,5-6,3 FE OSS_@24mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Sony SEL 24-240mm 1_3,5-6,3 FE OSS_@24mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "@24mm", "calibrated_by": "Cornelius N", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sony SEL 24-240mm 1:3,5-6,3 FE OSS", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sony Sigma 18-105__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Sony Sigma 18-105__4k_16by9_3840x2160-25.00fps.json index 3d0ac92b..88bc5e47 100644 --- a/Sony/Sony_a7III_Sony Sigma 18-105__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Sony Sigma 18-105__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Daniel Hanebring", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sony Sigma 18-105", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Sony Zeizz 424-70_24mm_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_Sony Zeizz 424-70_24mm_4k_16by9_3840x2160-29.97fps.json index e61c5a76..ead591c5 100644 --- a/Sony/Sony_a7III_Sony Zeizz 424-70_24mm_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_Sony Zeizz 424-70_24mm_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "24mm", "calibrated_by": "HezenProject", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Sony Zeizz 4/24-70", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_TAMRON 28-200 F2.8_F2.8 1200_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_TAMRON 28-200 F2.8_F2.8 1200_4k_16by9_3840x2160-25.00fps.json index 342d0a0c..d984c6ab 100644 --- a/Sony/Sony_a7III_TAMRON 28-200 F2.8_F2.8 1200_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_TAMRON 28-200 F2.8_F2.8 1200_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "青云", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "TAMRON 28-200 F2.8", "camera_setting": "F2.8 1/200", "calib_dimension": { diff --git a/Sony/Sony_a7III_TAMRON 28-75 F2.8 Di III VXD G2_3840_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_TAMRON 28-75 F2.8 Di III VXD G2_3840_4k_16by9_3840x2160-29.97fps.json index b0a3b79e..3684b846 100644 --- a/Sony/Sony_a7III_TAMRON 28-75 F2.8 Di III VXD G2_3840_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_TAMRON 28-75 F2.8 Di III VXD G2_3840_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "141", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "TAMRON 28-75 F/2.8 Di III VXD G2", "camera_setting": "3840", "calib_dimension": { diff --git a/Sony/Sony_a7III_TAMRON 28-75 F2.8 Di III VXD G2__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_TAMRON 28-75 F2.8 Di III VXD G2__4k_16by9_3840x2160-25.00fps.json index 9ab5a378..608eb8dc 100644 --- a/Sony/Sony_a7III_TAMRON 28-75 F2.8 Di III VXD G2__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_TAMRON 28-75 F2.8 Di III VXD G2__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "TAMRON 28-75 F/2.8 Di III VXD G2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_TAMRON 28-75__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_TAMRON 28-75__4k_16by9_3840x2160-25.00fps.json index 71940b44..4481f5f3 100644 --- a/Sony/Sony_a7III_TAMRON 28-75__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_TAMRON 28-75__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "SONY", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "TAMRON 28-75", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_TAMRON-28-75mm F2.8__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_TAMRON-28-75mm F2.8__4k_16by9_3840x2160-29.97fps.json index ce2c5d37..f1aa50ae 100644 --- a/Sony/Sony_a7III_TAMRON-28-75mm F2.8__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_TAMRON-28-75mm F2.8__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "EDY", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "TAMRON-28-75mm F/2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_TAMRON28-75II__1080p_16by9_1920x1080-29.97fps.json b/Sony/Sony_a7III_TAMRON28-75II__1080p_16by9_1920x1080-29.97fps.json index 599c6a8c..cfb8d04f 100644 --- a/Sony/Sony_a7III_TAMRON28-75II__1080p_16by9_1920x1080-29.97fps.json +++ b/Sony/Sony_a7III_TAMRON28-75II__1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "YeMeng", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "TAMRON28-75II", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_TAMROW 28-75mm F2.8 Di III VXD G2__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_TAMROW 28-75mm F2.8 Di III VXD G2__4k_16by9_3840x2160-29.97fps.json index d1babaaf..2c7c23d8 100644 --- a/Sony/Sony_a7III_TAMROW 28-75mm F2.8 Di III VXD G2__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_TAMROW 28-75mm F2.8 Di III VXD G2__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "YeMeng", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "TAMROW 28-75mm F/2.8 Di III VXD G2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Tamron 17-28 F2.8 -- 17mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Tamron 17-28 F2.8 -- 17mm__4k_16by9_3840x2160-25.00fps.json index ae1f1436..19b6b86c 100644 --- a/Sony/Sony_a7III_Tamron 17-28 F2.8 -- 17mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Tamron 17-28 F2.8 -- 17mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ray tsui", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Tamron 17-28 F2.8 -- 17mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Tamron 17-28mm f2.8__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_Tamron 17-28mm f2.8__4k_16by9_3840x2160-29.97fps.json index f37d3250..8c06f8fc 100644 --- a/Sony/Sony_a7III_Tamron 17-28mm f2.8__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_Tamron 17-28mm f2.8__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "胡耀民", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Tamron 17-28mm f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Tamron 28 - 75mm F2.8 Di III RXD__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_Tamron 28 - 75mm F2.8 Di III RXD__4k_16by9_3840x2160-29.97fps.json index dccf1038..926b5343 100644 --- a/Sony/Sony_a7III_Tamron 28 - 75mm F2.8 Di III RXD__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_Tamron 28 - 75mm F2.8 Di III RXD__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Kids", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Tamron 28 - 75mm F/2.8 Di III RXD", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Tamron 28-200 @28 Di III RDX__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7III_Tamron 28-200 @28 Di III RDX__1080p_16by9_1920x1080-50.00fps.json index 42fa693b..128abf68 100644 --- a/Sony/Sony_a7III_Tamron 28-200 @28 Di III RDX__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7III_Tamron 28-200 @28 Di III RDX__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "David Hiram Sanchez", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Tamron 28-200 @28 Di III RDX", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Tamron 28-200 @28 Di III RXD__1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7III_Tamron 28-200 @28 Di III RXD__1080p_16by9_1920x1080-25.00fps.json index bb695b90..fd94dc27 100644 --- a/Sony/Sony_a7III_Tamron 28-200 @28 Di III RXD__1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7III_Tamron 28-200 @28 Di III RXD__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "David Hiram Sanchez", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Tamron 28-200 @28 Di III RXD", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Tamron 28-74_50mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Tamron 28-74_50mm_4k_16by9_3840x2160-25.00fps.json index e193c109..03868281 100644 --- a/Sony/Sony_a7III_Tamron 28-74_50mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Tamron 28-74_50mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "50mm", "calibrated_by": "stas", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Tamron 28-74", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Tamron 28-7528_100M_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_Tamron 28-7528_100M_4k_16by9_3840x2160-29.97fps.json index be944818..8162c894 100644 --- a/Sony/Sony_a7III_Tamron 28-7528_100M_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_Tamron 28-7528_100M_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "dingxin", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Tamron 28-75(28端)", "camera_setting": "100M", "calib_dimension": { diff --git a/Sony/Sony_a7III_Tamron 28-7528__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Tamron 28-7528__4k_16by9_3840x2160-25.00fps.json index 4ba8c605..6c380acb 100644 --- a/Sony/Sony_a7III_Tamron 28-7528__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Tamron 28-7528__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "RCK-018", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Tamron 28-75(28)", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Tamron 28-7528mm__1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7III_Tamron 28-7528mm__1080p_16by9_1920x1080-25.00fps.json index 3a67e391..72be0d0f 100644 --- a/Sony/Sony_a7III_Tamron 28-7528mm__1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7III_Tamron 28-7528mm__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "RCK-018", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Tamron 28-75(28mm)", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Tamron 28-7575mm__1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7III_Tamron 28-7575mm__1080p_16by9_1920x1080-25.00fps.json index 658e9c47..279f1027 100644 --- a/Sony/Sony_a7III_Tamron 28-7575mm__1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7III_Tamron 28-7575mm__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "RCK-018", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Tamron 28-75(75mm)", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Tamron 28-75_28_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7III_Tamron 28-75_28_1080p_16by9_1920x1080-59.94fps.json index ef2c017b..5cd44d77 100644 --- a/Sony/Sony_a7III_Tamron 28-75_28_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7III_Tamron 28-75_28_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "28", "calibrated_by": "张子忠", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Tamron 28-75", "camera_setting": "28", "calib_dimension": { diff --git a/Sony/Sony_a7III_Tamron 28-75_28_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_Tamron 28-75_28_4k_16by9_3840x2160-29.97fps.json index a6363e11..3b248320 100644 --- a/Sony/Sony_a7III_Tamron 28-75_28_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_Tamron 28-75_28_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "28端", "calibrated_by": "dingxin", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Tamron 28-75", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Tamron 28-75_35_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7III_Tamron 28-75_35_1080p_16by9_1920x1080-59.94fps.json index 95c13be6..eccca8f0 100644 --- a/Sony/Sony_a7III_Tamron 28-75_35_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7III_Tamron 28-75_35_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "35", "calibrated_by": "张子忠", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Tamron 28-75", "camera_setting": "35", "calib_dimension": { diff --git a/Sony/Sony_a7III_Tamron 28-75_35mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Tamron 28-75_35mm_4k_16by9_3840x2160-25.00fps.json index 102662b2..e862d673 100644 --- a/Sony/Sony_a7III_Tamron 28-75_35mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Tamron 28-75_35mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "35mm", "calibrated_by": "stas", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Tamron 28-75", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Tamron 28-75_50_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7III_Tamron 28-75_50_1080p_16by9_1920x1080-59.94fps.json index ec960e6e..6c47c5b8 100644 --- a/Sony/Sony_a7III_Tamron 28-75_50_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7III_Tamron 28-75_50_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "50", "calibrated_by": "张子忠", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Tamron 28-75", "camera_setting": "50", "calib_dimension": { diff --git a/Sony/Sony_a7III_Tamron 28-75_75_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7III_Tamron 28-75_75_1080p_16by9_1920x1080-59.94fps.json index 0cd0926a..1183b95c 100644 --- a/Sony/Sony_a7III_Tamron 28-75_75_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7III_Tamron 28-75_75_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "75", "calibrated_by": "张子忠", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Tamron 28-75", "camera_setting": "75", "calib_dimension": { diff --git a/Sony/Sony_a7III_Tamron 28-75_Cinestyle_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_Tamron 28-75_Cinestyle_4k_16by9_3840x2160-29.97fps.json index e0c58a48..f3b97a6c 100644 --- a/Sony/Sony_a7III_Tamron 28-75_Cinestyle_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_Tamron 28-75_Cinestyle_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "28mm", "calibrated_by": "Leonardo Minatti", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Tamron 28-75", "camera_setting": "Cinestyle", "calib_dimension": { diff --git a/Sony/Sony_a7III_Tamron 28-75mm F2.8[28mm]__1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a7III_Tamron 28-75mm F2.8[28mm]__1080p_16by9_1920x1080-100.00fps.json index 7ad15593..d1a6f5fb 100644 --- a/Sony/Sony_a7III_Tamron 28-75mm F2.8[28mm]__1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a7III_Tamron 28-75mm F2.8[28mm]__1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "董芮麟", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Tamron 28-75mm F/2.8[28mm]", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Tamron 28-75mm F2.8[50mm]__1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a7III_Tamron 28-75mm F2.8[50mm]__1080p_16by9_1920x1080-100.00fps.json index ce8347df..247b261b 100644 --- a/Sony/Sony_a7III_Tamron 28-75mm F2.8[50mm]__1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a7III_Tamron 28-75mm F2.8[50mm]__1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "董芮麟", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Tamron 28-75mm F/2.8[50mm]", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Tamron DI III RXD_XAVC S_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Tamron DI III RXD_XAVC S_4k_16by9_3840x2160-25.00fps.json index 516852e4..aba89b1f 100644 --- a/Sony/Sony_a7III_Tamron DI III RXD_XAVC S_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Tamron DI III RXD_XAVC S_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "50mm", "calibrated_by": "Declan", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Tamron DI III RXD", "camera_setting": "XAVC S", "calib_dimension": { diff --git a/Sony/Sony_a7III_Tamron28-752.8Di III_28mm_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7III_Tamron28-752.8Di III_28mm_1080p_16by9_1920x1080-59.94fps.json index 4893bf84..44eba6bb 100644 --- a/Sony/Sony_a7III_Tamron28-752.8Di III_28mm_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7III_Tamron28-752.8Di III_28mm_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "28mm", "calibrated_by": "坂本孝一郎", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Tamron28-75/2.8Di III", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Viltrox 20mm 2,8_25_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Viltrox 20mm 2,8_25_4k_16by9_3840x2160-25.00fps.json index f26cde4f..03a8d68e 100644 --- a/Sony/Sony_a7III_Viltrox 20mm 2,8_25_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Viltrox 20mm 2,8_25_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "maki", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Viltrox 20mm 2,8", "camera_setting": "25", "calib_dimension": { diff --git a/Sony/Sony_a7III_Viltrox 20mmf2.8__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7III_Viltrox 20mmf2.8__4k_16by9_3840x2160-23.98fps.json index ea2aeda3..1656bb9c 100644 --- a/Sony/Sony_a7III_Viltrox 20mmf2.8__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7III_Viltrox 20mmf2.8__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Bone", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Viltrox 20mm/f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Vivitar 28mm f2.8_No Ibis_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Vivitar 28mm f2.8_No Ibis_4k_16by9_3840x2160-25.00fps.json index 7e99e21d..c7bf1c7a 100644 --- a/Sony/Sony_a7III_Vivitar 28mm f2.8_No Ibis_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Vivitar 28mm f2.8_No Ibis_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Berno", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Vivitar 28mm f2.8", "camera_setting": "No Ibis", "calib_dimension": { diff --git a/Sony/Sony_a7III_Vivitar 28mm f2.8_shot in slog 2_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Vivitar 28mm f2.8_shot in slog 2_4k_16by9_3840x2160-25.00fps.json index db07e44e..4a039866 100644 --- a/Sony/Sony_a7III_Vivitar 28mm f2.8_shot in slog 2_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Vivitar 28mm f2.8_shot in slog 2_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "shot in slog 2", "calibrated_by": "Berno Smit", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Vivitar 28mm f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_Vivtar 28mm f2.8_No Ibis_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_Vivtar 28mm f2.8_No Ibis_4k_16by9_3840x2160-25.00fps.json index c51a2209..a18497bc 100644 --- a/Sony/Sony_a7III_Vivtar 28mm f2.8_No Ibis_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_Vivtar 28mm f2.8_No Ibis_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "No Ibis", "calibrated_by": "Berno", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "Vivtar 28mm f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_ZEISS FE 1.855mm__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7III_ZEISS FE 1.855mm__1080p_16by9_1920x1080-50.00fps.json index 68a2b615..0629f872 100644 --- a/Sony/Sony_a7III_ZEISS FE 1.855mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7III_ZEISS FE 1.855mm__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "张利", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "ZEISS FE 1.8/55mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_batis25__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7III_batis25__1080p_16by9_1920x1080-59.94fps.json index e5ea8048..b859648f 100644 --- a/Sony/Sony_a7III_batis25__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7III_batis25__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "admin", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "batis25", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_canon 24-70@24mm_f2.8_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_canon 24-70@24mm_f2.8_4k_16by9_3840x2160-29.97fps.json index deb009c6..d125e966 100644 --- a/Sony/Sony_a7III_canon 24-70@24mm_f2.8_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_canon 24-70@24mm_f2.8_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "CMS Media", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "canon 24-70@24mm", "camera_setting": "f2.8", "calib_dimension": { diff --git a/Sony/Sony_a7III_canon EF 50 F1.4__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_canon EF 50 F1.4__4k_16by9_3840x2160-29.97fps.json index 291a8417..0b875622 100644 --- a/Sony/Sony_a7III_canon EF 50 F1.4__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_canon EF 50 F1.4__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Armand Crispo", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "canon EF 50 F1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_fe 1.820 G__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7III_fe 1.820 G__4k_16by9_3840x2160-23.98fps.json index 3708fcfc..077e74f6 100644 --- a/Sony/Sony_a7III_fe 1.820 G__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7III_fe 1.820 G__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Igor Usenko", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "fe 1.8/20 G", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_fe 3.5 -5.6 28-70MM_28mm setting_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7III_fe 3.5 -5.6 28-70MM_28mm setting_4k_16by9_3840x2160-23.98fps.json index 251db69b..566a7ac1 100644 --- a/Sony/Sony_a7III_fe 3.5 -5.6 28-70MM_28mm setting_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7III_fe 3.5 -5.6 28-70MM_28mm setting_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "28mm setting", "calibrated_by": "Jonathan Morton", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "fe 3.5 -5.6 28-70MM", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_fe 424-105 g oss_24mm_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7III_fe 424-105 g oss_24mm_1080p_16by9_1920x1080-50.00fps.json index 0e9befad..6a414177 100644 --- a/Sony/Sony_a7III_fe 424-105 g oss_24mm_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7III_fe 424-105 g oss_24mm_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jenny", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "fe 4/24-105 g oss", "camera_setting": "24mm", "calib_dimension": { diff --git a/Sony/Sony_a7III_g-master_HLG_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7III_g-master_HLG_4k_16by9_3840x2160-23.98fps.json index e4b98f2c..a2aa8a5d 100644 --- a/Sony/Sony_a7III_g-master_HLG_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7III_g-master_HLG_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "24mm", "calibrated_by": "Sukie Moua", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "g-master", "camera_setting": "HLG", "calib_dimension": { diff --git a/Sony/Sony_a7III_kit 28-70__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7III_kit 28-70__4k_16by9_3840x2160-23.98fps.json index bb483823..f4ceb2c9 100644 --- a/Sony/Sony_a7III_kit 28-70__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7III_kit 28-70__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Gabriel Herrera Zavaley", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "kit 28-70", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_kit 3.5-5.6 28-70 28mm_28mm_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7III_kit 3.5-5.6 28-70 28mm_28mm_1080p_16by9_1920x1080-50.00fps.json index 74eb95bc..85dbe6cb 100644 --- a/Sony/Sony_a7III_kit 3.5-5.6 28-70 28mm_28mm_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7III_kit 3.5-5.6 28-70 28mm_28mm_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "50fps", "calibrated_by": "Panos Taxiarchis Magnisalis", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "kit 3.5-5.6 28-70 28mm", "camera_setting": "28mm", "calib_dimension": { diff --git a/Sony/Sony_a7III_kit 3.5-5.628-70_28mm_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7III_kit 3.5-5.628-70_28mm_1080p_16by9_1920x1080-50.00fps.json index 23fa63fb..339551a7 100644 --- a/Sony/Sony_a7III_kit 3.5-5.628-70_28mm_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7III_kit 3.5-5.628-70_28mm_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "28mm", "calibrated_by": "Jenny", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "kit 3.5-5.6/28-70", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_kit 3.5-5.628-70mm_28mm_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7III_kit 3.5-5.628-70mm_28mm_1080p_16by9_1920x1080-50.00fps.json index d914cb8d..290220ad 100644 --- a/Sony/Sony_a7III_kit 3.5-5.628-70mm_28mm_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7III_kit 3.5-5.628-70mm_28mm_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "28mm", "calibrated_by": "ZA-IT-NBC-524", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "kit 3.5-5.6/28-70mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_kit fe 3.5-5.6-28-70mm_28mm_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7III_kit fe 3.5-5.6-28-70mm_28mm_1080p_16by9_1920x1080-50.00fps.json index a2eebfe7..e058b644 100644 --- a/Sony/Sony_a7III_kit fe 3.5-5.6-28-70mm_28mm_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7III_kit fe 3.5-5.6-28-70mm_28mm_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jenny", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "kit fe 3.5-5.6-28-70mm", "camera_setting": "28mm", "calib_dimension": { diff --git a/Sony/Sony_a7III_laowa 9mm f2.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_laowa 9mm f2.8__4k_16by9_3840x2160-25.00fps.json index 1e503b10..326534ec 100644 --- a/Sony/Sony_a7III_laowa 9mm f2.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_laowa 9mm f2.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "RAWW", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "laowa 9mm f/2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_samjang af 351.8FE_f5.0 iso50_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_samjang af 351.8FE_f5.0 iso50_4k_16by9_3840x2160-25.00fps.json index 749da2fe..6a309e12 100644 --- a/Sony/Sony_a7III_samjang af 351.8FE_f5.0 iso50_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_samjang af 351.8FE_f5.0 iso50_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Dani", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "samjang af 35/1.8FE", "camera_setting": "f5.0 iso50", "calib_dimension": { diff --git a/Sony/Sony_a7III_samyang 18 f2.8_XAVC S HD_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7III_samyang 18 f2.8_XAVC S HD_1080p_16by9_1920x1080-50.00fps.json index 38bb53ab..79379cef 100644 --- a/Sony/Sony_a7III_samyang 18 f2.8_XAVC S HD_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7III_samyang 18 f2.8_XAVC S HD_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "sony a7iii", "calibrated_by": "Hatem Saed", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "samyang 18 f2.8", "camera_setting": "XAVC S HD", "calib_dimension": { diff --git a/Sony/Sony_a7III_samyang 35mm 1.4__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7III_samyang 35mm 1.4__1080p_16by9_1920x1080-50.00fps.json index f7b51105..cacf997e 100644 --- a/Sony/Sony_a7III_samyang 35mm 1.4__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7III_samyang 35mm 1.4__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Kamil Siemka", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "samyang 35mm 1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_samyang 45mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7III_samyang 45mm__4k_16by9_3840x2160-29.97fps.json index 55c2955c..7c80d9b8 100644 --- a/Sony/Sony_a7III_samyang 45mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7III_samyang 45mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Samuel Straciak", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "samyang 45mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_samyang__1080p_16by9_1920x1080-119.88fps.json b/Sony/Sony_a7III_samyang__1080p_16by9_1920x1080-119.88fps.json index ac812795..0f18bdbb 100644 --- a/Sony/Sony_a7III_samyang__1080p_16by9_1920x1080-119.88fps.json +++ b/Sony/Sony_a7III_samyang__1080p_16by9_1920x1080-119.88fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Samuel Straciak", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "samyang", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_sigma 14-24mm_3_2_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_sigma 14-24mm_3_2_4k_16by9_3840x2160-25.00fps.json index a238df3e..64d7cd89 100644 --- a/Sony/Sony_a7III_sigma 14-24mm_3_2_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_sigma 14-24mm_3_2_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "User", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "sigma 14-24mm", "camera_setting": "3:2", "calib_dimension": { diff --git a/Sony/Sony_a7III_sigma 24 - 70 mm_24_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7III_sigma 24 - 70 mm_24_4k_16by9_3840x2160-23.98fps.json index 90c5a91e..d579f2e0 100644 --- a/Sony/Sony_a7III_sigma 24 - 70 mm_24_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7III_sigma 24 - 70 mm_24_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "shot 24mm", "calibrated_by": "Filmed By RawhSounds", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "sigma 24 - 70 mm", "camera_setting": "24", "calib_dimension": { diff --git a/Sony/Sony_a7III_sigma 28mm f28__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7III_sigma 28mm f28__1080p_16by9_1920x1080-50.00fps.json index 47f8cde1..3b34f2f8 100644 --- a/Sony/Sony_a7III_sigma 28mm f28__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7III_sigma 28mm f28__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "zuo", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "sigma 28mm f28", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_sigma 35mm_auto_1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a7III_sigma 35mm_auto_1080p_16by9_1920x1080-100.00fps.json index b7c59be9..6eedd59a 100644 --- a/Sony/Sony_a7III_sigma 35mm_auto_1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a7III_sigma 35mm_auto_1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ROG", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "sigma 35mm", "camera_setting": "auto", "calib_dimension": { diff --git a/Sony/Sony_a7III_sigma art 85mm 1.4 dg dn__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7III_sigma art 85mm 1.4 dg dn__1080p_16by9_1920x1080-59.94fps.json index e0bc797b..74e61cdd 100644 --- a/Sony/Sony_a7III_sigma art 85mm 1.4 dg dn__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7III_sigma art 85mm 1.4 dg dn__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "diogo", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "sigma art 85mm 1.4 dg dn", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_sony 28-70mm_s4_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_sony 28-70mm_s4_4k_16by9_3840x2160-25.00fps.json index a0ba7f91..f92f21c8 100644 --- a/Sony/Sony_a7III_sony 28-70mm_s4_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_sony 28-70mm_s4_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "28mm", "calibrated_by": "123", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "sony 28-70mm", "camera_setting": "s4", "calib_dimension": { diff --git a/Sony/Sony_a7III_sony 85mm 1.8_crop mode_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7III_sony 85mm 1.8_crop mode_4k_16by9_3840x2160-25.00fps.json index 5a962387..be38a422 100644 --- a/Sony/Sony_a7III_sony 85mm 1.8_crop mode_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7III_sony 85mm 1.8_crop mode_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Adrian Zalewski", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "sony 85mm 1.8", "camera_setting": "crop mode", "calib_dimension": { diff --git a/Sony/Sony_a7III_sony Gseries 20mm f1.8__1080p_16by9_1920x1080-119.88fps.json b/Sony/Sony_a7III_sony Gseries 20mm f1.8__1080p_16by9_1920x1080-119.88fps.json index aa490098..d43fdf25 100644 --- a/Sony/Sony_a7III_sony Gseries 20mm f1.8__1080p_16by9_1920x1080-119.88fps.json +++ b/Sony/Sony_a7III_sony Gseries 20mm f1.8__1080p_16by9_1920x1080-119.88fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "luca favre", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "sony Gseries 20mm f1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_sony20-70__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7III_sony20-70__1080p_16by9_1920x1080-59.94fps.json index af3bd2e6..da04c73e 100644 --- a/Sony/Sony_a7III_sony20-70__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7III_sony20-70__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "家乐", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "sony20-70", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_tamrom 28 75 mm f2.8__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7III_tamrom 28 75 mm f2.8__1080p_16by9_1920x1080-50.00fps.json index 6794026d..7a404535 100644 --- a/Sony/Sony_a7III_tamrom 28 75 mm f2.8__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7III_tamrom 28 75 mm f2.8__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "user", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "tamrom 28 75 mm f/2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_tamron 17-28_17mm_1080p_16by9_1920x1080-119.88fps.json b/Sony/Sony_a7III_tamron 17-28_17mm_1080p_16by9_1920x1080-119.88fps.json index e86ca2d5..843bc11d 100644 --- a/Sony/Sony_a7III_tamron 17-28_17mm_1080p_16by9_1920x1080-119.88fps.json +++ b/Sony/Sony_a7III_tamron 17-28_17mm_1080p_16by9_1920x1080-119.88fps.json @@ -3,7 +3,7 @@ "note": "17mm", "calibrated_by": "lee eunsang", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "tamron 17-28", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_tamron 35 mm__1080p_16by9_1920x1080-119.88fps.json b/Sony/Sony_a7III_tamron 35 mm__1080p_16by9_1920x1080-119.88fps.json index d08237f0..d9cdc965 100644 --- a/Sony/Sony_a7III_tamron 35 mm__1080p_16by9_1920x1080-119.88fps.json +++ b/Sony/Sony_a7III_tamron 35 mm__1080p_16by9_1920x1080-119.88fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "David Gracia Lopez", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "tamron 35 mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7III_viltrox 20mm__1080p_16by9_1920x1080-23.98fps.json b/Sony/Sony_a7III_viltrox 20mm__1080p_16by9_1920x1080-23.98fps.json index 40698a7d..36583734 100644 --- a/Sony/Sony_a7III_viltrox 20mm__1080p_16by9_1920x1080-23.98fps.json +++ b/Sony/Sony_a7III_viltrox 20mm__1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "kanak thakkar", "camera_brand": "Sony", - "camera_model": "a7III", + "camera_model": "Alpha 7 III", "lens_model": "viltrox 20mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7II_50mm__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7II_50mm__1080p_16by9_1920x1080-50.00fps.json index 1881d3db..f7a15723 100644 --- a/Sony/Sony_a7II_50mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7II_50mm__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "fa", "camera_brand": "Sony", - "camera_model": "a7II", + "camera_model": "Alpha 7 II", "lens_model": "50mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7II_85mm F1.8_AVCHD_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7II_85mm F1.8_AVCHD_1080p_16by9_1920x1080-59.94fps.json index 0e3ab0c3..709d8f5f 100644 --- a/Sony/Sony_a7II_85mm F1.8_AVCHD_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7II_85mm F1.8_AVCHD_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Masnip", "camera_brand": "Sony", - "camera_model": "a7II", + "camera_model": "Alpha 7 II", "lens_model": "85mm F1.8", "camera_setting": "AVCHD", "calib_dimension": { diff --git a/Sony/Sony_a7II_Batis 85__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7II_Batis 85__1080p_16by9_1920x1080-50.00fps.json index 8ef2a8a4..c3b64ec2 100644 --- a/Sony/Sony_a7II_Batis 85__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7II_Batis 85__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Francesco", "camera_brand": "Sony", - "camera_model": "a7II", + "camera_model": "Alpha 7 II", "lens_model": "Batis 85", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7II_FE 3.5-5.6 28-70 OSS_P_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7II_FE 3.5-5.6 28-70 OSS_P_1080p_16by9_1920x1080-59.94fps.json index a0a0fc4f..039280b5 100644 --- a/Sony/Sony_a7II_FE 3.5-5.6 28-70 OSS_P_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7II_FE 3.5-5.6 28-70 OSS_P_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Shubh Pathroliya", "camera_brand": "Sony", - "camera_model": "a7II", + "camera_model": "Alpha 7 II", "lens_model": "FE 3.5-5.6 28-70 OSS", "camera_setting": "P", "calib_dimension": { diff --git a/Sony/Sony_a7II_FE 85mm F1.8_50M_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7II_FE 85mm F1.8_50M_1080p_16by9_1920x1080-59.94fps.json index 3bf5bbdb..3b859c1e 100644 --- a/Sony/Sony_a7II_FE 85mm F1.8_50M_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7II_FE 85mm F1.8_50M_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Masnip", "camera_brand": "Sony", - "camera_model": "a7II", + "camera_model": "Alpha 7 II", "lens_model": "FE 85mm F1.8", "camera_setting": "50M", "calib_dimension": { diff --git a/Sony/Sony_a7II_Pentax 40mm__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7II_Pentax 40mm__1080p_16by9_1920x1080-50.00fps.json index 0be2153e..f6eff099 100644 --- a/Sony/Sony_a7II_Pentax 40mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7II_Pentax 40mm__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7II", + "camera_model": "Alpha 7 II", "lens_model": "Pentax 40mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7II_Sony FE 1.850__720p_4by3_1440x1080-25.00fps.json b/Sony/Sony_a7II_Sony FE 1.850__720p_4by3_1440x1080-25.00fps.json index 5ef569a6..c956dbb7 100644 --- a/Sony/Sony_a7II_Sony FE 1.850__720p_4by3_1440x1080-25.00fps.json +++ b/Sony/Sony_a7II_Sony FE 1.850__720p_4by3_1440x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jase", "camera_brand": "Sony", - "camera_model": "a7II", + "camera_model": "Alpha 7 II", "lens_model": "Sony FE 1.8/50", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7II_Viltrox viltrox 85 F1.8 STM ED IF_P_720p_4by3_1440x1080-25.00fps.json b/Sony/Sony_a7II_Viltrox viltrox 85 F1.8 STM ED IF_P_720p_4by3_1440x1080-25.00fps.json index 31d7af6c..4f34669c 100644 --- a/Sony/Sony_a7II_Viltrox viltrox 85 F1.8 STM ED IF_P_720p_4by3_1440x1080-25.00fps.json +++ b/Sony/Sony_a7II_Viltrox viltrox 85 F1.8 STM ED IF_P_720p_4by3_1440x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "小晓波", "camera_brand": "Sony", - "camera_model": "a7II", + "camera_model": "Alpha 7 II", "lens_model": "Viltrox viltrox 85 F1.8 STM ED IF", "camera_setting": "P", "calib_dimension": { diff --git a/Sony/Sony_a7II_leica R 35 f2__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7II_leica R 35 f2__1080p_16by9_1920x1080-50.00fps.json index 55d390b6..db9c173a 100644 --- a/Sony/Sony_a7II_leica R 35 f2__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7II_leica R 35 f2__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Elmo Sinulingga", "camera_brand": "Sony", - "camera_model": "a7II", + "camera_model": "Alpha 7 II", "lens_model": "leica R 35 f2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7II_sony 50mm__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7II_sony 50mm__1080p_16by9_1920x1080-59.94fps.json index fbbac998..a8b486c6 100644 --- a/Sony/Sony_a7II_sony 50mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7II_sony 50mm__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "VOX", "camera_brand": "Sony", - "camera_model": "a7II", + "camera_model": "Alpha 7 II", "lens_model": "sony 50mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7II_viltrox 20mm 2.8 fe__1080p_16by9_1920x1080-23.98fps.json b/Sony/Sony_a7II_viltrox 20mm 2.8 fe__1080p_16by9_1920x1080-23.98fps.json index 9acee58f..834c7e50 100644 --- a/Sony/Sony_a7II_viltrox 20mm 2.8 fe__1080p_16by9_1920x1080-23.98fps.json +++ b/Sony/Sony_a7II_viltrox 20mm 2.8 fe__1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ASUS", "camera_brand": "Sony", - "camera_model": "a7II", + "camera_model": "Alpha 7 II", "lens_model": "viltrox 20mm 2.8 fe", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_12 - 24mm F2.8 GM__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_12 - 24mm F2.8 GM__4k_16by9_3840x2160-25.00fps.json index 94987772..2e72c9c0 100644 --- a/Sony/Sony_a7IV_12 - 24mm F2.8 GM__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_12 - 24mm F2.8 GM__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Kornel Flint", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "12 - 24mm F2.8 GM", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_13.00mm_ViLTRAX13mmf1.4_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_13.00mm_ViLTRAX13mmf1.4_4k_16by9_3840x2160-50.00fps.json index 8d91d121..e37a9624 100644 --- a/Sony/Sony_a7IV_13.00mm_ViLTRAX13mmf1.4_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_13.00mm_ViLTRAX13mmf1.4_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "ViLTRAX13mmf1.4", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "13.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_13.00mm_VilTrox 13MM F1.4_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7IV_13.00mm_VilTrox 13MM F1.4_1080p_16by9_1920x1080-25.00fps.json index e4cb4e3b..74aee5d3 100644 --- a/Sony/Sony_a7IV_13.00mm_VilTrox 13MM F1.4_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7IV_13.00mm_VilTrox 13MM F1.4_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "VilTrox 13MM F1.4", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "13.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_13.00mm_VilTrox 13MM F1.4_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_13.00mm_VilTrox 13MM F1.4_1080p_16by9_1920x1080-50.00fps.json index 2bd4be27..a716a4e3 100644 --- a/Sony/Sony_a7IV_13.00mm_VilTrox 13MM F1.4_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_13.00mm_VilTrox 13MM F1.4_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "VilTrox 13MM F1.4", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "13.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_14.00 f1.8 GM_Super35_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_14.00 f1.8 GM_Super35_4k_16by9_3840x2160-23.98fps.json index f5a3a54c..fcfcd866 100644 --- a/Sony/Sony_a7IV_14.00 f1.8 GM_Super35_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_14.00 f1.8 GM_Super35_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "John Hummel JR", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "14.00 f1.8 GM", "camera_setting": "Super35", "calib_dimension": { diff --git a/Sony/Sony_a7IV_14.00mm_1424_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_14.00mm_1424_1080p_16by9_1920x1080-50.00fps.json index 208b4928..1c6bc337 100644 --- a/Sony/Sony_a7IV_14.00mm_1424_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_14.00mm_1424_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "适马1424", "calibrated_by": "gucheng", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "14.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_16-35_16_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_16-35_16_1080p_16by9_1920x1080-50.00fps.json index 80d87ea4..333e07d4 100644 --- a/Sony/Sony_a7IV_16-35_16_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_16-35_16_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "16-35", "camera_setting": "16", "calib_dimension": { diff --git a/Sony/Sony_a7IV_16.00mm_HD A7IV Sirui 16mm F1.2_1080p_16by9_1920x1080-23.98fps.json b/Sony/Sony_a7IV_16.00mm_HD A7IV Sirui 16mm F1.2_1080p_16by9_1920x1080-23.98fps.json index d4788357..2f7f169a 100644 --- a/Sony/Sony_a7IV_16.00mm_HD A7IV Sirui 16mm F1.2_1080p_16by9_1920x1080-23.98fps.json +++ b/Sony/Sony_a7IV_16.00mm_HD A7IV Sirui 16mm F1.2_1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "Super 35", "calibrated_by": "Javier Pandales", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "16.00mm", "camera_setting": "HD A7IV Sirui 16mm F/1.2", "calib_dimension": { diff --git a/Sony/Sony_a7IV_16.00mm_Sigma 16-28mm_4k_16by9_3840x2160-25.00fps (2).json b/Sony/Sony_a7IV_16.00mm_Sigma 16-28mm_4k_16by9_3840x2160-25.00fps (2).json index 0f6253d5..cc2ac894 100644 --- a/Sony/Sony_a7IV_16.00mm_Sigma 16-28mm_4k_16by9_3840x2160-25.00fps (2).json +++ b/Sony/Sony_a7IV_16.00mm_Sigma 16-28mm_4k_16by9_3840x2160-25.00fps (2).json @@ -3,7 +3,7 @@ "note": "Sigma 16-28mm", "calibrated_by": "gadas", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "16.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_16.00mm_Sigma 16-28mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_16.00mm_Sigma 16-28mm_4k_16by9_3840x2160-25.00fps.json index 7ef69331..6ec6b557 100644 --- a/Sony/Sony_a7IV_16.00mm_Sigma 16-28mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_16.00mm_Sigma 16-28mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "Sigma 16-28mm", "calibrated_by": "gadas_", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "16.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_17.00mm Tamron AF 17-28mm f2,8 Di III RXD_Slog3_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_17.00mm Tamron AF 17-28mm f2,8 Di III RXD_Slog3_4k_16by9_3840x2160-50.00fps.json index 7c6b8fee..f198be9c 100644 --- a/Sony/Sony_a7IV_17.00mm Tamron AF 17-28mm f2,8 Di III RXD_Slog3_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_17.00mm Tamron AF 17-28mm f2,8 Di III RXD_Slog3_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Juri Wunder", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "17.00mm Tamron AF 17-28mm f/2,8 Di III RXD", "camera_setting": "Slog3", "calib_dimension": { diff --git a/Sony/Sony_a7IV_20.00mm Tamron AF 17-28mm f2,8 Di III RXD_Slog3_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_20.00mm Tamron AF 17-28mm f2,8 Di III RXD_Slog3_4k_16by9_3840x2160-50.00fps.json index 9d4f43cb..c5772d9e 100644 --- a/Sony/Sony_a7IV_20.00mm Tamron AF 17-28mm f2,8 Di III RXD_Slog3_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_20.00mm Tamron AF 17-28mm f2,8 Di III RXD_Slog3_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Juri Wunder", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "20.00mm Tamron AF 17-28mm f/2,8 Di III RXD", "camera_setting": "Slog3", "calib_dimension": { diff --git a/Sony/Sony_a7IV_24-70mm F2.8 DG DN _ Art_24.00mm_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7IV_24-70mm F2.8 DG DN _ Art_24.00mm_4k_16by9_3840x2160-59.94fps.json index a5e6655a..3b3cfb23 100644 --- a/Sony/Sony_a7IV_24-70mm F2.8 DG DN _ Art_24.00mm_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7IV_24-70mm F2.8 DG DN _ Art_24.00mm_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "24.00mm", "calibrated_by": "vojta filipi", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "24-70mm F2.8 DG DN | Art", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_24.00-70mm sigma art_50 fps 2000 iso1325 shutter_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_24.00-70mm sigma art_50 fps 2000 iso1325 shutter_1080p_16by9_1920x1080-50.00fps.json index 7fafb02c..037616d1 100644 --- a/Sony/Sony_a7IV_24.00-70mm sigma art_50 fps 2000 iso1325 shutter_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_24.00-70mm sigma art_50 fps 2000 iso1325 shutter_1080p_16by9_1920x1080-50.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "WAEL", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_24.00mm Tamron AF 17-28mm f2,8 Di III RXD_Slog3_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_24.00mm Tamron AF 17-28mm f2,8 Di III RXD_Slog3_4k_16by9_3840x2160-50.00fps.json index 48b04f09..7bbe97ca 100644 --- a/Sony/Sony_a7IV_24.00mm Tamron AF 17-28mm f2,8 Di III RXD_Slog3_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_24.00mm Tamron AF 17-28mm f2,8 Di III RXD_Slog3_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Juri Wunder", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "24.00mm Tamron AF 17-28mm f/2,8 Di III RXD", "camera_setting": "Slog3", "calib_dimension": { diff --git a/Sony/Sony_a7IV_28-75_XAVCS-I_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7IV_28-75_XAVCS-I_1080p_16by9_1920x1080-25.00fps.json index d0d54c21..7478d5f0 100644 --- a/Sony/Sony_a7IV_28-75_XAVCS-I_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7IV_28-75_XAVCS-I_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "51mm", "calibrated_by": "Montaggio", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "28-75", "camera_setting": "XAVCS-I", "calib_dimension": { diff --git a/Sony/Sony_a7IV_28-75__1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7IV_28-75__1080p_16by9_1920x1080-25.00fps.json index 0bd3f647..e457506d 100644 --- a/Sony/Sony_a7IV_28-75__1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7IV_28-75__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Montaggio", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "28-75", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_28-75mm__1080p_16by9_1920x1080-50.00fps - Jungle J.json b/Sony/Sony_a7IV_28-75mm__1080p_16by9_1920x1080-50.00fps - Jungle J.json index dba4d636..80281432 100644 --- a/Sony/Sony_a7IV_28-75mm__1080p_16by9_1920x1080-50.00fps - Jungle J.json +++ b/Sony/Sony_a7IV_28-75mm__1080p_16by9_1920x1080-50.00fps - Jungle J.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jungle J", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "28-75mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_28-75mm__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_28-75mm__1080p_16by9_1920x1080-50.00fps.json index 3bac2bdc..ca45c941 100644 --- a/Sony/Sony_a7IV_28-75mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_28-75mm__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jungle J", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "28-75mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_28.00-75.00mm__1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a7IV_28.00-75.00mm__1080p_16by9_1920x1080-100.00fps.json index 7542f4d5..328f1cbd 100644 --- a/Sony/Sony_a7IV_28.00-75.00mm__1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a7IV_28.00-75.00mm__1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Sérgio Fernandes", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "28.00-75.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_28.00mm -75mm__1080p_16by9_1920x1080-23.98fps.json b/Sony/Sony_a7IV_28.00mm -75mm__1080p_16by9_1920x1080-23.98fps.json index a516483d..2d56271a 100644 --- a/Sony/Sony_a7IV_28.00mm -75mm__1080p_16by9_1920x1080-23.98fps.json +++ b/Sony/Sony_a7IV_28.00mm -75mm__1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Juan Carlos Alberto Cabas Arismendy", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "28.00mm -75mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_28.00mm Tamron AF 17-28mm f2,8 Di III RXD_Slog3_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_28.00mm Tamron AF 17-28mm f2,8 Di III RXD_Slog3_4k_16by9_3840x2160-50.00fps.json index 53e257a7..31eb8306 100644 --- a/Sony/Sony_a7IV_28.00mm Tamron AF 17-28mm f2,8 Di III RXD_Slog3_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_28.00mm Tamron AF 17-28mm f2,8 Di III RXD_Slog3_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Juri Wunder", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "28.00mm Tamron AF 17-28mm f/2,8 Di III RXD", "camera_setting": "Slog3", "calib_dimension": { diff --git a/Sony/Sony_a7IV_28.00mm-70mm_28mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_28.00mm-70mm_28mm_4k_16by9_3840x2160-25.00fps.json index 90040467..50fe1364 100644 --- a/Sony/Sony_a7IV_28.00mm-70mm_28mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_28.00mm-70mm_28mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "陈坤", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "28.00mm-70mm", "camera_setting": "28mm", "calib_dimension": { diff --git a/Sony/Sony_a7IV_28.00mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7IV_28.00mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json index beedc07e..c2c0b8a9 100644 --- a/Sony/Sony_a7IV_28.00mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7IV_28.00mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "Sigma 28-70 F2.8", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "28.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_28.00mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_28.00mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json index dd3f9cd6..177e3c2a 100644 --- a/Sony/Sony_a7IV_28.00mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_28.00mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "Sigma 28-70 F2.8", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "28.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_28.00mm_Sigma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_28.00mm_Sigma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json index 438e6985..7bb62b54 100644 --- a/Sony/Sony_a7IV_28.00mm_Sigma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_28.00mm_Sigma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "Sigma 28-70 F2.8", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "28.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_28.00mm_Sigma 28-70mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_28.00mm_Sigma 28-70mm_4k_16by9_3840x2160-25.00fps.json index 848687e0..1789504f 100644 --- a/Sony/Sony_a7IV_28.00mm_Sigma 28-70mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_28.00mm_Sigma 28-70mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "Sigma 28-70mm", "calibrated_by": "gadas", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "28.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_28.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_28.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-23.98fps.json index a0a1ef8d..92bbe1e8 100644 --- a/Sony/Sony_a7IV_28.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_28.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-23.98fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Jony_Xv", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "TAMRON 28-75mm G2", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_28.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_28.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-25.00fps.json index e8b9578b..bd702466 100644 --- a/Sony/Sony_a7IV_28.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_28.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-25.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Jony_Xv", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "TAMRON 28-75mm G2", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_28.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-29.97fps (2).json b/Sony/Sony_a7IV_28.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-29.97fps (2).json index bc2cb1df..95dcd081 100644 --- a/Sony/Sony_a7IV_28.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-29.97fps (2).json +++ b/Sony/Sony_a7IV_28.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-29.97fps (2).json @@ -7,7 +7,7 @@ "calibrated_by": "Jony_Xv", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "TAMRON 28-75mm G2", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_28.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_28.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-50.00fps.json index fc7b987c..ad5cefe7 100644 --- a/Sony/Sony_a7IV_28.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_28.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-50.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Jony_Xv", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "TAMRON 28-75mm G2", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_28.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7IV_28.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-59.94fps.json index e87c84d9..f2ab540a 100644 --- a/Sony/Sony_a7IV_28.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7IV_28.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Jony_Xv", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "TAMRON 28-75mm G2", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_28.00mm_TAMRON_28-75mm_G2_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_28.00mm_TAMRON_28-75mm_G2_4k_16by9_3840x2160-23.98fps.json index cf3898e1..5b23fdb7 100644 --- a/Sony/Sony_a7IV_28.00mm_TAMRON_28-75mm_G2_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_28.00mm_TAMRON_28-75mm_G2_4k_16by9_3840x2160-23.98fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Jony_Xv", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_28.00mm_TAMRON_28-75mm_G2_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_28.00mm_TAMRON_28-75mm_G2_4k_16by9_3840x2160-29.97fps.json index 8d28bb1e..1f8970af 100644 --- a/Sony/Sony_a7IV_28.00mm_TAMRON_28-75mm_G2_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_28.00mm_TAMRON_28-75mm_G2_4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Jony_Xv", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_28.00mm_TAMRON_28-75mm_G2_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7IV_28.00mm_TAMRON_28-75mm_G2_4k_16by9_3840x2160-59.94fps.json index 207ece74..a26462c0 100644 --- a/Sony/Sony_a7IV_28.00mm_TAMRON_28-75mm_G2_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7IV_28.00mm_TAMRON_28-75mm_G2_4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Jony_Xv", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_28.00mm_Tamron 28-200_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7IV_28.00mm_Tamron 28-200_1080p_16by9_1920x1080-59.94fps.json index 7ec437e2..a5e142cd 100644 --- a/Sony/Sony_a7IV_28.00mm_Tamron 28-200_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7IV_28.00mm_Tamron 28-200_1080p_16by9_1920x1080-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "mulin", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "Tamron 28-200", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_28.00mm_Tamron_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7IV_28.00mm_Tamron_1080p_16by9_1920x1080-25.00fps.json index 2d3ab3cd..10334567 100644 --- a/Sony/Sony_a7IV_28.00mm_Tamron_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7IV_28.00mm_Tamron_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Guan AH", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "28.00mm", "camera_setting": "Tamron", "calib_dimension": { diff --git a/Sony/Sony_a7IV_28.00mm_tamron 28-75mm g2_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_28.00mm_tamron 28-75mm g2_4k_16by9_3840x2160-29.97fps.json index 37b06fb9..5473b37d 100644 --- a/Sony/Sony_a7IV_28.00mm_tamron 28-75mm g2_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_28.00mm_tamron 28-75mm g2_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "tamron 28-75mm g2", "calibrated_by": "許哲彰", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "28.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_28.90mm__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_28.90mm__1080p_16by9_1920x1080-50.00fps.json index 36a0a6c8..c5f1dcce 100644 --- a/Sony/Sony_a7IV_28.90mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_28.90mm__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "28.90mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_28mm with 1,5x Crop_60 with 28mm Lens_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7IV_28mm with 1,5x Crop_60 with 28mm Lens_4k_16by9_3840x2160-59.94fps.json index 0e415406..ba0ea164 100644 --- a/Sony/Sony_a7IV_28mm with 1,5x Crop_60 with 28mm Lens_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7IV_28mm with 1,5x Crop_60 with 28mm Lens_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "Automatic 1,5x Crop", "calibrated_by": "Nils Schreiner", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "28mm with 1,5x Crop", "camera_setting": "60 with 28mm Lens", "calib_dimension": { diff --git a/Sony/Sony_a7IV_34.80mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_34.80mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json index fb2be028..46058f09 100644 --- a/Sony/Sony_a7IV_34.80mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_34.80mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "Sigma 28-70 F2.8", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "34.80mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_34.80mm_Sigma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_34.80mm_Sigma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json index 2f71d1bf..a6c225b8 100644 --- a/Sony/Sony_a7IV_34.80mm_Sigma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_34.80mm_Sigma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "Sigma 28-70 F2.8", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "34.80mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_35.00mm Tamron 28-75mm f2,8 Di III VXD G2_Slog3_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_35.00mm Tamron 28-75mm f2,8 Di III VXD G2_Slog3_4k_16by9_3840x2160-50.00fps.json index 842fed4b..5859511a 100644 --- a/Sony/Sony_a7IV_35.00mm Tamron 28-75mm f2,8 Di III VXD G2_Slog3_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_35.00mm Tamron 28-75mm f2,8 Di III VXD G2_Slog3_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Juri Wunder", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "35.00mm Tamron 28-75mm f/2,8 Di III VXD G2", "camera_setting": "Slog3", "calib_dimension": { diff --git a/Sony/Sony_a7IV_35.00mm_1100_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_35.00mm_1100_4k_16by9_3840x2160-25.00fps.json index 66d6325e..e18253a3 100644 --- a/Sony/Sony_a7IV_35.00mm_1100_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_35.00mm_1100_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "Breating Comp.", "calibrated_by": "Ben Reiss", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "35.00mm", "camera_setting": "1/100", "calib_dimension": { diff --git a/Sony/Sony_a7IV_35.00mm_24 frames_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_35.00mm_24 frames_4k_16by9_3840x2160-23.98fps.json index f7451e8e..1021b957 100644 --- a/Sony/Sony_a7IV_35.00mm_24 frames_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_35.00mm_24 frames_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Fanuel Rodas", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "35.00mm", "camera_setting": "24 frames", "calib_dimension": { diff --git a/Sony/Sony_a7IV_35.00mm_35 MM 1.4 GM; ACT STAB ON_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7IV_35.00mm_35 MM 1.4 GM; ACT STAB ON_1080p_16by9_1920x1080-25.00fps.json index 1a176db8..49a046a3 100644 --- a/Sony/Sony_a7IV_35.00mm_35 MM 1.4 GM; ACT STAB ON_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7IV_35.00mm_35 MM 1.4 GM; ACT STAB ON_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "S-LOG3, 1080p 50Mb", "calibrated_by": "Roman Elizarenko", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "35.00mm", "camera_setting": "35 MM 1.4 GM; ACT STAB ON", "calib_dimension": { diff --git a/Sony/Sony_a7IV_35.00mm_422_10bit_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7IV_35.00mm_422_10bit_4k_16by9_3840x2160-59.94fps.json index 39b0b813..598d7492 100644 --- a/Sony/Sony_a7IV_35.00mm_422_10bit_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7IV_35.00mm_422_10bit_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "s35", "calibrated_by": "Micoan Design", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "35.00mm", "camera_setting": "422:10bit", "calib_dimension": { diff --git a/Sony/Sony_a7IV_35.00mm_Canon EF 35 1.4 L with 7Artisan EF-SE Adapter_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_35.00mm_Canon EF 35 1.4 L with 7Artisan EF-SE Adapter_4k_16by9_3840x2160-29.97fps.json index 6ade67e2..0600e6ce 100644 --- a/Sony/Sony_a7IV_35.00mm_Canon EF 35 1.4 L with 7Artisan EF-SE Adapter_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_35.00mm_Canon EF 35 1.4 L with 7Artisan EF-SE Adapter_4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Kaos", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_35.00mm_Crop Frame_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7IV_35.00mm_Crop Frame_1080p_16by9_1920x1080-59.94fps.json index d0b59b97..50784e34 100644 --- a/Sony/Sony_a7IV_35.00mm_Crop Frame_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7IV_35.00mm_Crop Frame_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Óscar Betancourt", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "35.00mm", "camera_setting": "Crop Frame", "calib_dimension": { diff --git a/Sony/Sony_a7IV_35.00mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7IV_35.00mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json index c83bd105..038c3881 100644 --- a/Sony/Sony_a7IV_35.00mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7IV_35.00mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "Sigma 28-70 F2.8", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "35.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_35.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_35.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-29.97fps.json index 94b8d75f..9fbe9ac3 100644 --- a/Sony/Sony_a7IV_35.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_35.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Jony_Xv", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "TAMRON 28-75mm G2", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_40.50mm_Sigma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_40.50mm_Sigma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json index 082be52a..f4d731f9 100644 --- a/Sony/Sony_a7IV_40.50mm_Sigma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_40.50mm_Sigma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "Sigma 28-70 F2.8", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "40.50mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_41.90mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7IV_41.90mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json index 6c2decc5..f57a6d97 100644 --- a/Sony/Sony_a7IV_41.90mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7IV_41.90mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "Sigma 28-70 F2.8", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "41.90mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_42.30mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_42.30mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json index bddebf5e..c83e3664 100644 --- a/Sony/Sony_a7IV_42.30mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_42.30mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "Sigma 28-70 F2.8", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "42.30mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_44M-6_58mm_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_44M-6_58mm_4k_16by9_3840x2160-23.98fps.json index 2d73576f..e709f50d 100644 --- a/Sony/Sony_a7IV_44M-6_58mm_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_44M-6_58mm_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "58mm", "calibrated_by": "Kaos", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "44M-6", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_49.90mm_Sigma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_49.90mm_Sigma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json index 0dc622eb..96d3fa17 100644 --- a/Sony/Sony_a7IV_49.90mm_Sigma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_49.90mm_Sigma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "Sigma 28-70 F2.8", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "49.90mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_50.00mm Tamron 28-75mm f2,8 Di III VXD G2_Slog3_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_50.00mm Tamron 28-75mm f2,8 Di III VXD G2_Slog3_4k_16by9_3840x2160-50.00fps.json index 9da5861d..b9ef4011 100644 --- a/Sony/Sony_a7IV_50.00mm Tamron 28-75mm f2,8 Di III VXD G2_Slog3_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_50.00mm Tamron 28-75mm f2,8 Di III VXD G2_Slog3_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Juri Wunder", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "50.00mm Tamron 28-75mm f/2,8 Di III VXD G2", "camera_setting": "Slog3", "calib_dimension": { diff --git a/Sony/Sony_a7IV_50.20mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7IV_50.20mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json index 51e24587..f3dc1daf 100644 --- a/Sony/Sony_a7IV_50.20mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7IV_50.20mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "Sigma 28-70 F2.8", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "50.20mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_50.20mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_50.20mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json index fad1a11f..f75fde7b 100644 --- a/Sony/Sony_a7IV_50.20mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_50.20mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "Sigma 28-70 F2.8", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "50.20mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_58.80mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7IV_58.80mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json index b96e1fe5..ecc294f5 100644 --- a/Sony/Sony_a7IV_58.80mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7IV_58.80mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "Sigma 28-70 F2.8", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "58.80mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_58.80mm_Sigma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_58.80mm_Sigma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json index 002d02ea..1ebd1e49 100644 --- a/Sony/Sony_a7IV_58.80mm_Sigma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_58.80mm_Sigma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "Sigma 28-70 F2.8", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "58.80mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_59.20mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_59.20mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json index 580d19c3..9d2608b2 100644 --- a/Sony/Sony_a7IV_59.20mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_59.20mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "Sigma 28-70 F2.8", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "59.20mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_70.00mm_0_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7IV_70.00mm_0_4k_16by9_3840x2160-59.94fps.json index f058d7fd..b786b89d 100644 --- a/Sony/Sony_a7IV_70.00mm_0_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7IV_70.00mm_0_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "admin", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "70.00mm", "camera_setting": "0", "calib_dimension": { diff --git a/Sony/Sony_a7IV_70.00mm_70 no crop_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_70.00mm_70 no crop_4k_16by9_3840x2160-23.98fps.json index 92d2c2e6..76c87908 100644 --- a/Sony/Sony_a7IV_70.00mm_70 no crop_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_70.00mm_70 no crop_4k_16by9_3840x2160-23.98fps.json @@ -7,7 +7,7 @@ "calibrated_by": "MattWorks", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "70 no crop", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_70.00mm_IBIS OFF_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_70.00mm_IBIS OFF_4k_16by9_3840x2160-50.00fps.json index ae69a610..9aa074f9 100644 --- a/Sony/Sony_a7IV_70.00mm_IBIS OFF_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_70.00mm_IBIS OFF_4k_16by9_3840x2160-50.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Mateusz", "calibrator_version": "1.5.2", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "IBIS OFF", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_70.00mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7IV_70.00mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json index afe65a3d..6756479d 100644 --- a/Sony/Sony_a7IV_70.00mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7IV_70.00mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "Sigma 28-70 F2.8", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "70.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_70.00mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_70.00mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json index 21d115ad..cc741342 100644 --- a/Sony/Sony_a7IV_70.00mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_70.00mm_Sigma 28-70 F2.8_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "Sigma 28-70 F2.8", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "70.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_70.00mm_Sigma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_70.00mm_Sigma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json index 72d1e35a..55e87422 100644 --- a/Sony/Sony_a7IV_70.00mm_Sigma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_70.00mm_Sigma 28-70 F2.8_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "Sigma 28-70 F2.8", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "70.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_70.00mm_crop_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7IV_70.00mm_crop_4k_16by9_3840x2160-59.94fps.json index 5abd95da..54c077f3 100644 --- a/Sony/Sony_a7IV_70.00mm_crop_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7IV_70.00mm_crop_4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "MattWorks", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "crop", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_75.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_75.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-23.98fps.json index 09907626..9ce53cbe 100644 --- a/Sony/Sony_a7IV_75.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_75.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "23.976", "calibrated_by": "Jony_Xv", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "75.00mm", "camera_setting": "TAMRON 28-75mm G2", "calib_dimension": { diff --git a/Sony/Sony_a7IV_75.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_75.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-29.97fps.json index 0bea992d..206bfcbd 100644 --- a/Sony/Sony_a7IV_75.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_75.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Jony_Xv", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "TAMRON 28-75mm G2", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_75.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-59.94fps - Jony_Xv - 2.json b/Sony/Sony_a7IV_75.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-59.94fps - Jony_Xv - 2.json index d1251587..04fcca4e 100644 --- a/Sony/Sony_a7IV_75.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-59.94fps - Jony_Xv - 2.json +++ b/Sony/Sony_a7IV_75.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-59.94fps - Jony_Xv - 2.json @@ -7,7 +7,7 @@ "calibrated_by": "Jony_Xv", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "TAMRON 28-75mm G2", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_75.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7IV_75.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-59.94fps.json index 57f3d8a6..a3de157b 100644 --- a/Sony/Sony_a7IV_75.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7IV_75.00mm_TAMRON 28-75mm G2_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "59.94", "calibrated_by": "Jony_Xv", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "75.00mm", "camera_setting": "TAMRON 28-75mm G2", "calib_dimension": { diff --git a/Sony/Sony_a7IV_7ARTISANS 35MM F1.4 II__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_7ARTISANS 35MM F1.4 II__4k_16by9_3840x2160-23.98fps.json index 611f3e88..6554f733 100644 --- a/Sony/Sony_a7IV_7ARTISANS 35MM F1.4 II__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_7ARTISANS 35MM F1.4 II__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Bijoy Thangaraj", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "7ARTISANS 35MM F/1.4 II", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_7Artisans 10mm fisheyes__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_7Artisans 10mm fisheyes__4k_16by9_3840x2160-25.00fps.json index aaff456a..2c169358 100644 --- a/Sony/Sony_a7IV_7Artisans 10mm fisheyes__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_7Artisans 10mm fisheyes__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Agne", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "7Artisans 10mm fisheyes", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_7Artisans 50mm F0.95__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_7Artisans 50mm F0.95__4k_16by9_3840x2160-29.97fps.json index bb0ccaf5..8b55b8bd 100644 --- a/Sony/Sony_a7IV_7Artisans 50mm F0.95__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_7Artisans 50mm F0.95__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "user", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "7Artisans 50mm F0.95", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_7Artisans 7.5mm_Super 35mm crop_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_7Artisans 7.5mm_Super 35mm crop_4k_16by9_3840x2160-29.97fps.json index adc3b1a2..4ae17af3 100644 --- a/Sony/Sony_a7IV_7Artisans 7.5mm_Super 35mm crop_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_7Artisans 7.5mm_Super 35mm crop_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Alexprofpv", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "7Artisans 7.5mm", "camera_setting": "Super 35mm crop", "calib_dimension": { diff --git a/Sony/Sony_a7IV_7artisans 10mm f2.8 APS-C__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7IV_7artisans 10mm f2.8 APS-C__4k_16by9_3840x2160-59.94fps.json index c42d96d0..b30805d9 100644 --- a/Sony/Sony_a7IV_7artisans 10mm f2.8 APS-C__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7IV_7artisans 10mm f2.8 APS-C__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "戴亚荣", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "7artisans 10mm f2.8 APS-C", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_7artisans 10mm f2.8__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_7artisans 10mm f2.8__4k_16by9_3840x2160-29.97fps.json index bdbfb5c8..c2bd3a0b 100644 --- a/Sony/Sony_a7IV_7artisans 10mm f2.8__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_7artisans 10mm f2.8__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "戴亚荣", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "7artisans 10mm f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_7artisans 10mm2.8__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_7artisans 10mm2.8__4k_16by9_3840x2160-50.00fps.json index 9519e23b..88ad324f 100644 --- a/Sony/Sony_a7IV_7artisans 10mm2.8__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_7artisans 10mm2.8__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "帧格", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "7artisans 10mm2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_85.00mm_Sigma 85MM F1.4_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7IV_85.00mm_Sigma 85MM F1.4_1080p_16by9_1920x1080-25.00fps.json index af416008..507b174c 100644 --- a/Sony/Sony_a7IV_85.00mm_Sigma 85MM F1.4_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7IV_85.00mm_Sigma 85MM F1.4_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "Sigma 85MM F1.4", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "85.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_85.00mm_Sigma 85MM F1.4_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_85.00mm_Sigma 85MM F1.4_1080p_16by9_1920x1080-50.00fps.json index 95e0799b..ebdde33a 100644 --- a/Sony/Sony_a7IV_85.00mm_Sigma 85MM F1.4_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_85.00mm_Sigma 85MM F1.4_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "Sigma 85MM F1.4", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "85.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_AstrHori50mmF2.0__1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7IV_AstrHori50mmF2.0__1080p_16by9_1920x1080-25.00fps.json index addd3f71..d8f921f1 100644 --- a/Sony/Sony_a7IV_AstrHori50mmF2.0__1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7IV_AstrHori50mmF2.0__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ghoust", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "AstrHori50mmF2.0", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Auto.Rokkor- PF 581.4__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_Auto.Rokkor- PF 581.4__4k_16by9_3840x2160-25.00fps.json index 58ba1684..43393dd5 100644 --- a/Sony/Sony_a7IV_Auto.Rokkor- PF 581.4__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_Auto.Rokkor- PF 581.4__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "吴腾飞", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "美能达Auto.Rokkor- PF 58/1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_CANON FL 35 2.5_24100S_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7IV_CANON FL 35 2.5_24100S_1080p_16by9_1920x1080-59.94fps.json index dad5cbf0..0a286566 100644 --- a/Sony/Sony_a7IV_CANON FL 35 2.5_24100S_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7IV_CANON FL 35 2.5_24100S_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "BIMO", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "CANON FL 35 2.5", "camera_setting": "24/100S/", "calib_dimension": { diff --git a/Sony/Sony_a7IV_CHINON 28mm_APSC_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7IV_CHINON 28mm_APSC_4k_16by9_3840x2160-59.94fps.json index 37b5ebc4..3285b76b 100644 --- a/Sony/Sony_a7IV_CHINON 28mm_APSC_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7IV_CHINON 28mm_APSC_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "WINMEDIACENTER", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "CHINON 28mm", "camera_setting": "APSC", "calib_dimension": { diff --git a/Sony/Sony_a7IV_CHINON 28mm_FF_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_CHINON 28mm_FF_4k_16by9_3840x2160-23.98fps.json index 0d7d49fd..ff4afec0 100644 --- a/Sony/Sony_a7IV_CHINON 28mm_FF_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_CHINON 28mm_FF_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "WINMEDIACENTER", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "CHINON 28mm", "camera_setting": "FF", "calib_dimension": { diff --git a/Sony/Sony_a7IV_CHINON 35mm_APSC_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7IV_CHINON 35mm_APSC_4k_16by9_3840x2160-59.94fps.json index 1c61c28a..6fb57acf 100644 --- a/Sony/Sony_a7IV_CHINON 35mm_APSC_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7IV_CHINON 35mm_APSC_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "WINMEDIACENTER", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "CHINON 35mm", "camera_setting": "APSC", "calib_dimension": { diff --git a/Sony/Sony_a7IV_CHINON 35mm_FF_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_CHINON 35mm_FF_4k_16by9_3840x2160-23.98fps.json index 4768dee4..8ed30ea1 100644 --- a/Sony/Sony_a7IV_CHINON 35mm_FF_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_CHINON 35mm_FF_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "WINMEDIACENTER", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "CHINON 35mm", "camera_setting": "FF", "calib_dimension": { diff --git a/Sony/Sony_a7IV_CHINON 50mm_APSC_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7IV_CHINON 50mm_APSC_4k_16by9_3840x2160-59.94fps.json index ff0136ba..ba4cd929 100644 --- a/Sony/Sony_a7IV_CHINON 50mm_APSC_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7IV_CHINON 50mm_APSC_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "WINMEDIACENTER", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "CHINON 50mm", "camera_setting": "APSC", "calib_dimension": { diff --git a/Sony/Sony_a7IV_CHINON 50mm_FF_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_CHINON 50mm_FF_4k_16by9_3840x2160-23.98fps.json index ccb2b059..d213c677 100644 --- a/Sony/Sony_a7IV_CHINON 50mm_FF_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_CHINON 50mm_FF_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "WINMEDIACENTER", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "CHINON 50mm", "camera_setting": "FF", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Canon 100mm_FF_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Canon 100mm_FF_4k_16by9_3840x2160-23.98fps.json index 31b29bd2..5e653ccf 100644 --- a/Sony/Sony_a7IV_Canon 100mm_FF_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Canon 100mm_FF_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "WINMEDIACENTER", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Canon 100mm", "camera_setting": "FF", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Canon 10mm_APSC_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Canon 10mm_APSC_4k_16by9_3840x2160-23.98fps.json index 0fc235ec..bb72ea56 100644 --- a/Sony/Sony_a7IV_Canon 10mm_APSC_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Canon 10mm_APSC_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "WINMEDIACENTER", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Canon 10mm", "camera_setting": "APSC", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Canon 50mm_APSC_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7IV_Canon 50mm_APSC_4k_16by9_3840x2160-59.94fps.json index 727af38d..cdea98c9 100644 --- a/Sony/Sony_a7IV_Canon 50mm_APSC_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7IV_Canon 50mm_APSC_4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "WINMEDIACENTER", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "APSC", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Canon EF 24 1.4 L II_Metabones EF to E Mk III_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Canon EF 24 1.4 L II_Metabones EF to E Mk III_4k_16by9_3840x2160-29.97fps.json index ea882da0..e8eba882 100644 --- a/Sony/Sony_a7IV_Canon EF 24 1.4 L II_Metabones EF to E Mk III_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Canon EF 24 1.4 L II_Metabones EF to E Mk III_4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Kaos", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_E 3.5-5.6PZ 16-50 OSS SELP1650_APS-C_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_E 3.5-5.6PZ 16-50 OSS SELP1650_APS-C_4k_16by9_3840x2160-29.97fps.json index c97c5a12..ea0dd429 100644 --- a/Sony/Sony_a7IV_E 3.5-5.6PZ 16-50 OSS SELP1650_APS-C_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_E 3.5-5.6PZ 16-50 OSS SELP1650_APS-C_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "APS-C", "calibrated_by": "Kei Kato", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "E 3.5-5.6/PZ 16-50 OSS SELP1650", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_FE PZ 16-35mm F4 G_16mm_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_FE PZ 16-35mm F4 G_16mm_4k_16by9_3840x2160-29.97fps.json index 6645b299..816520bc 100644 --- a/Sony/Sony_a7IV_FE PZ 16-35mm F4 G_16mm_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_FE PZ 16-35mm F4 G_16mm_4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "CincyWorldTraveler", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "16mm", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_FE Sony 4 24-105 G OSS__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_FE Sony 4 24-105 G OSS__4k_16by9_3840x2160-25.00fps.json index 58242134..8f8549c0 100644 --- a/Sony/Sony_a7IV_FE Sony 4 24-105 G OSS__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_FE Sony 4 24-105 G OSS__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Carsten", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "FE Sony 4/ 24-105 G OSS", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_FE424-105MM__480p_9by16_1080x1920-30.00fps.json b/Sony/Sony_a7IV_FE424-105MM__480p_9by16_1080x1920-30.00fps.json index 106b4214..5cf3e204 100644 --- a/Sony/Sony_a7IV_FE424-105MM__480p_9by16_1080x1920-30.00fps.json +++ b/Sony/Sony_a7IV_FE424-105MM__480p_9by16_1080x1920-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "FE4/24-105MM", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Helios 44-3__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_Helios 44-3__1080p_16by9_1920x1080-50.00fps.json index cec66864..b5e6bb06 100644 --- a/Sony/Sony_a7IV_Helios 44-3__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_Helios 44-3__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Igor Iudnikov", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Helios 44-3", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Helios 44M-6_58mm_4k_16by9_3840x2160-23.98fps - Kaos.json b/Sony/Sony_a7IV_Helios 44M-6_58mm_4k_16by9_3840x2160-23.98fps - Kaos.json index 564c26a2..29299bd6 100644 --- a/Sony/Sony_a7IV_Helios 44M-6_58mm_4k_16by9_3840x2160-23.98fps - Kaos.json +++ b/Sony/Sony_a7IV_Helios 44M-6_58mm_4k_16by9_3840x2160-23.98fps - Kaos.json @@ -3,7 +3,7 @@ "note": "58mm", "calibrated_by": "Kaos", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Helios 44M-6", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Helios 44M-6_58mm_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Helios 44M-6_58mm_4k_16by9_3840x2160-23.98fps.json index ae5cc530..7586d363 100644 --- a/Sony/Sony_a7IV_Helios 44M-6_58mm_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Helios 44M-6_58mm_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "58mm", "calibrated_by": "Kaos", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Helios 44M-6", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Helios44-2_SS Off_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_Helios44-2_SS Off_1080p_16by9_1920x1080-50.00fps.json index 5edff1bf..721f70ee 100644 --- a/Sony/Sony_a7IV_Helios44-2_SS Off_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_Helios44-2_SS Off_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eagle", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Helios44-2", "camera_setting": "SS Off", "calib_dimension": { diff --git a/Sony/Sony_a7IV_IRIX Cine 30mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_IRIX Cine 30mm__4k_16by9_3840x2160-25.00fps.json index e676f218..01f89779 100644 --- a/Sony/Sony_a7IV_IRIX Cine 30mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_IRIX Cine 30mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rafal Sztygowski", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "IRIX Cine 30mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Irix 45mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Irix 45mm__4k_16by9_3840x2160-23.98fps.json index 06720679..030aae35 100644 --- a/Sony/Sony_a7IV_Irix 45mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Irix 45mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ADLEN CHERIF", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Irix 45mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Irix cine 45mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Irix cine 45mm__4k_16by9_3840x2160-23.98fps.json index 76761efe..d28e435a 100644 --- a/Sony/Sony_a7IV_Irix cine 45mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Irix cine 45mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ADLEN CHERIF", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Irix cine 45mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Laowa 12mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_Laowa 12mm__4k_16by9_3840x2160-25.00fps.json index 399a742c..a96c5acd 100644 --- a/Sony/Sony_a7IV_Laowa 12mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_Laowa 12mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "HHgzs", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Laowa 12mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Laowa 15mm F4__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Laowa 15mm F4__4k_16by9_3840x2160-23.98fps.json index 3b004fd2..ccf48128 100644 --- a/Sony/Sony_a7IV_Laowa 15mm F4__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Laowa 15mm F4__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "刘洋", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Laowa 15mm F4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Laowa 1mm_30FPV60_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Laowa 1mm_30FPV60_4k_16by9_3840x2160-29.97fps.json index e3e4e69b..05df283b 100644 --- a/Sony/Sony_a7IV_Laowa 1mm_30FPV60_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Laowa 1mm_30FPV60_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ralf Steiger", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Laowa 1mm", "camera_setting": "30FPV/60", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Laowa 35mm F0.95_Full Frame_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Laowa 35mm F0.95_Full Frame_4k_16by9_3840x2160-29.97fps.json index 3dfe549c..c455986b 100644 --- a/Sony/Sony_a7IV_Laowa 35mm F0.95_Full Frame_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Laowa 35mm F0.95_Full Frame_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "Full Frame", "calibrated_by": "user", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Laowa 35mm F0.95", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Laowa 35mm f0.95__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Laowa 35mm f0.95__4k_16by9_3840x2160-23.98fps.json index aaf06e70..0cee9b64 100644 --- a/Sony/Sony_a7IV_Laowa 35mm f0.95__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Laowa 35mm f0.95__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Digital Outllook LLC", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Laowa 35mm f0.95", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Laowa 9mm f5,6__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_Laowa 9mm f5,6__4k_16by9_3840x2160-25.00fps.json index e31ede08..8a34c73d 100644 --- a/Sony/Sony_a7IV_Laowa 9mm f5,6__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_Laowa 9mm f5,6__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jarek", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Laowa 9mm f5,6", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Laowa 9mm f5.6__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_Laowa 9mm f5.6__4k_16by9_3840x2160-50.00fps.json index 7d03a24d..62752e35 100644 --- a/Sony/Sony_a7IV_Laowa 9mm f5.6__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_Laowa 9mm f5.6__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jarek", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Laowa 9mm f5.6", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Laowa 9mm_XAVC S_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Laowa 9mm_XAVC S_4k_16by9_3840x2160-23.98fps.json index 2e42c73e..bb0139be 100644 --- a/Sony/Sony_a7IV_Laowa 9mm_XAVC S_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Laowa 9mm_XAVC S_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Isidoros Chatzakis", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Laowa 9mm", "camera_setting": "XAVC S", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Laowa_11_4.5_100Frames_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_Laowa_11_4.5_100Frames_4k_16by9_3840x2160-50.00fps.json index 237ec017..d4ba62c0 100644 --- a/Sony/Sony_a7IV_Laowa_11_4.5_100Frames_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_Laowa_11_4.5_100Frames_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ralf Steiger", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Laowa_11_4.5", "camera_setting": "100Frames", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Laowa_11_no_Crop_Shutter400_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_Laowa_11_no_Crop_Shutter400_4k_16by9_3840x2160-25.00fps.json index 41c6416d..3296014e 100644 --- a/Sony/Sony_a7IV_Laowa_11_no_Crop_Shutter400_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_Laowa_11_no_Crop_Shutter400_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ralf Steiger", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Laowa_11_no_Crop", "camera_setting": "Shutter400", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Minolta 50mm f2_23.976_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Minolta 50mm f2_23.976_4k_16by9_3840x2160-23.98fps.json index 2c35cf1d..06e575c8 100644 --- a/Sony/Sony_a7IV_Minolta 50mm f2_23.976_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Minolta 50mm f2_23.976_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Lehan Vander", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Minolta 50mm f2", "camera_setting": "23.976", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Minolta_35mm_XAVC HS_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_Minolta_35mm_XAVC HS_4k_16by9_3840x2160-50.00fps.json index 01a3e170..2b4a8e16 100644 --- a/Sony/Sony_a7IV_Minolta_35mm_XAVC HS_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_Minolta_35mm_XAVC HS_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "S-35_Crop", "calibrated_by": "Ulrich Plank", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Minolta_35mm", "camera_setting": "XAVC HS", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Nikon 35mm 2.8_PP off - stab off_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_Nikon 35mm 2.8_PP off - stab off_4k_16by9_3840x2160-25.00fps.json index f94b0bb9..8ee2329a 100644 --- a/Sony/Sony_a7IV_Nikon 35mm 2.8_PP off - stab off_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_Nikon 35mm 2.8_PP off - stab off_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Nicolai Hansen", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Nikon 35mm 2.8", "camera_setting": "PP off - stab off", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Pentax 28mm F2.8_XAVC S_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_Pentax 28mm F2.8_XAVC S_4k_16by9_3840x2160-25.00fps.json index d1031fd3..29d19411 100644 --- a/Sony/Sony_a7IV_Pentax 28mm F2.8_XAVC S_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_Pentax 28mm F2.8_XAVC S_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "无增稳模式", "calibrated_by": "枫歌", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Pentax 28mm F2.8", "camera_setting": "XAVC S", "calib_dimension": { diff --git a/Sony/Sony_a7IV_RockStar 12mm F2.0__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_RockStar 12mm F2.0__4k_16by9_3840x2160-23.98fps.json index 2e80062a..bc726d65 100644 --- a/Sony/Sony_a7IV_RockStar 12mm F2.0__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_RockStar 12mm F2.0__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "刘洋", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "RockStar 12mm F2.0", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Rokinon CAF35 T1.9_35mm_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Rokinon CAF35 T1.9_35mm_4k_16by9_3840x2160-29.97fps.json index 58be1bf0..0c413865 100644 --- a/Sony/Sony_a7IV_Rokinon CAF35 T1.9_35mm_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Rokinon CAF35 T1.9_35mm_4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Kaos", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_SAMYANG 14mm_APSC_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7IV_SAMYANG 14mm_APSC_4k_16by9_3840x2160-59.94fps.json index 32c0e049..08480358 100644 --- a/Sony/Sony_a7IV_SAMYANG 14mm_APSC_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7IV_SAMYANG 14mm_APSC_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "WINMEDIACENTER", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "SAMYANG 14mm", "camera_setting": "APSC", "calib_dimension": { diff --git a/Sony/Sony_a7IV_SAMYANG 14mm_FF_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_SAMYANG 14mm_FF_4k_16by9_3840x2160-29.97fps.json index f4a9bdff..69eb67e4 100644 --- a/Sony/Sony_a7IV_SAMYANG 14mm_FF_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_SAMYANG 14mm_FF_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "WINMEDIACENTER", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "SAMYANG 14mm", "camera_setting": "FF", "calib_dimension": { diff --git a/Sony/Sony_a7IV_SAMYANG 24mm_APS-C_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7IV_SAMYANG 24mm_APS-C_4k_16by9_3840x2160-59.94fps.json index 354937a6..6772774f 100644 --- a/Sony/Sony_a7IV_SAMYANG 24mm_APS-C_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7IV_SAMYANG 24mm_APS-C_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "WINMEDIACENTER", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "SAMYANG 24mm", "camera_setting": "APS-C", "calib_dimension": { diff --git a/Sony/Sony_a7IV_SAMYANG 24mm_APSC_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7IV_SAMYANG 24mm_APSC_4k_16by9_3840x2160-59.94fps.json index 5b80537d..d7aee432 100644 --- a/Sony/Sony_a7IV_SAMYANG 24mm_APSC_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7IV_SAMYANG 24mm_APSC_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "WINMEDIACENTER", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "SAMYANG 24mm", "camera_setting": "APSC", "calib_dimension": { diff --git a/Sony/Sony_a7IV_SAMYANG 24mm_FF_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_SAMYANG 24mm_FF_4k_16by9_3840x2160-23.98fps.json index 5785efc6..4186c8ee 100644 --- a/Sony/Sony_a7IV_SAMYANG 24mm_FF_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_SAMYANG 24mm_FF_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "WINMEDIACENTER", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "SAMYANG 24mm", "camera_setting": "FF", "calib_dimension": { diff --git a/Sony/Sony_a7IV_SAMYANG 35.00mmF2.8_P -30_1080p_16by9_1920x1080-29.97fps.json b/Sony/Sony_a7IV_SAMYANG 35.00mmF2.8_P -30_1080p_16by9_1920x1080-29.97fps.json index e8e848c7..b9ccf7ce 100644 --- a/Sony/Sony_a7IV_SAMYANG 35.00mmF2.8_P -30_1080p_16by9_1920x1080-29.97fps.json +++ b/Sony/Sony_a7IV_SAMYANG 35.00mmF2.8_P -30_1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Alex", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "SAMYANG 35.00mmF2.8", "camera_setting": "P -30", "calib_dimension": { diff --git a/Sony/Sony_a7IV_SAMYANG 35mm_FF_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_SAMYANG 35mm_FF_4k_16by9_3840x2160-23.98fps.json index ff2449fa..180e07b0 100644 --- a/Sony/Sony_a7IV_SAMYANG 35mm_FF_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_SAMYANG 35mm_FF_4k_16by9_3840x2160-23.98fps.json @@ -7,7 +7,7 @@ "calibrated_by": "WINMEDIACENTER", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "FF", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_SAMYANG 75.00mm F1.8__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_SAMYANG 75.00mm F1.8__1080p_16by9_1920x1080-50.00fps.json index 5c6790a9..eeb7ce43 100644 --- a/Sony/Sony_a7IV_SAMYANG 75.00mm F1.8__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_SAMYANG 75.00mm F1.8__1080p_16by9_1920x1080-50.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "gaty", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_SAMYANG 85mm_FF_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_SAMYANG 85mm_FF_4k_16by9_3840x2160-23.98fps.json index 6dca61bd..2d9cc8ae 100644 --- a/Sony/Sony_a7IV_SAMYANG 85mm_FF_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_SAMYANG 85mm_FF_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "WINMEDIACENTER", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "SAMYANG 85mm", "camera_setting": "FF", "calib_dimension": { diff --git a/Sony/Sony_a7IV_SAMYANG 8mm_APSC_4k_16by9_3840x2160-23.98fps - WINMEDIACENTER - 2.json b/Sony/Sony_a7IV_SAMYANG 8mm_APSC_4k_16by9_3840x2160-23.98fps - WINMEDIACENTER - 2.json index 66a7bbc6..3f4da898 100644 --- a/Sony/Sony_a7IV_SAMYANG 8mm_APSC_4k_16by9_3840x2160-23.98fps - WINMEDIACENTER - 2.json +++ b/Sony/Sony_a7IV_SAMYANG 8mm_APSC_4k_16by9_3840x2160-23.98fps - WINMEDIACENTER - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "WINMEDIACENTER", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "SAMYANG 8mm", "camera_setting": "APSC", "calib_dimension": { diff --git a/Sony/Sony_a7IV_SAMYANG 8mm_APSC_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_SAMYANG 8mm_APSC_4k_16by9_3840x2160-23.98fps.json index b637530f..c058c709 100644 --- a/Sony/Sony_a7IV_SAMYANG 8mm_APSC_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_SAMYANG 8mm_APSC_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "WINMEDIACENTER", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "SAMYANG 8mm", "camera_setting": "APSC", "calib_dimension": { diff --git a/Sony/Sony_a7IV_SAMYANG AF 50mm F1,4 II FE fr Sony E__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_SAMYANG AF 50mm F1,4 II FE fr Sony E__4k_16by9_3840x2160-29.97fps.json index 5d00c812..06bee930 100644 --- a/Sony/Sony_a7IV_SAMYANG AF 50mm F1,4 II FE fr Sony E__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_SAMYANG AF 50mm F1,4 II FE fr Sony E__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Lennert Köhn", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "SAMYANG AF 50mm F1,4 II FE für Sony E", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_SELP1635G_SteadyShot Std_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_SELP1635G_SteadyShot Std_4k_16by9_3840x2160-29.97fps.json index a94fbe97..e2c240f2 100644 --- a/Sony/Sony_a7IV_SELP1635G_SteadyShot Std_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_SELP1635G_SteadyShot Std_4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "PXT-12", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_SELP1635G_SteadyShot Std_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7IV_SELP1635G_SteadyShot Std_4k_16by9_3840x2160-59.94fps.json index 57d5164b..119b18da 100644 --- a/Sony/Sony_a7IV_SELP1635G_SteadyShot Std_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7IV_SELP1635G_SteadyShot Std_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "SteadyShot Std", "calibrated_by": "PXT-12", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "SELP1635G", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_SIGMA 16-28mm@42mm__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_SIGMA 16-28mm@42mm__4k_16by9_3840x2160-50.00fps.json index 84ed8d31..ed324735 100644 --- a/Sony/Sony_a7IV_SIGMA 16-28mm@42mm__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_SIGMA 16-28mm@42mm__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "华齐天", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "SIGMA 16-28mm@42mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_SIGMA 2470mm f2.8__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_SIGMA 2470mm f2.8__4k_16by9_3840x2160-29.97fps.json index bddef8b4..18c85a74 100644 --- a/Sony/Sony_a7IV_SIGMA 2470mm f2.8__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_SIGMA 2470mm f2.8__4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "boluo", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_SIGMA16-28@24mm__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_SIGMA16-28@24mm__4k_16by9_3840x2160-50.00fps.json index 2191c5ae..d7bdc0bb 100644 --- a/Sony/Sony_a7IV_SIGMA16-28@24mm__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_SIGMA16-28@24mm__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "华齐天", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "SIGMA16-28@24mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_SIGMA2470_24.00mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_SIGMA2470_24.00mm__4k_16by9_3840x2160-29.97fps.json index 1a2b6f45..944e918c 100644 --- a/Sony/Sony_a7IV_SIGMA2470_24.00mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_SIGMA2470_24.00mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Dove", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "SIGMA2470:24.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_SIGMA40.00mmF1.4__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_SIGMA40.00mmF1.4__1080p_16by9_1920x1080-50.00fps.json index 1b33e38c..1bfe517e 100644 --- a/Sony/Sony_a7IV_SIGMA40.00mmF1.4__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_SIGMA40.00mmF1.4__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "超哥", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "SIGMA40.00mmF1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_SLR Magic 35mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_SLR Magic 35mm__4k_16by9_3840x2160-23.98fps.json index 9ef416d3..16c6a386 100644 --- a/Sony/Sony_a7IV_SLR Magic 35mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_SLR Magic 35mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Boomer Cowan", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "SLR Magic 35mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_SLR Magic Micro Prime_30mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_SLR Magic Micro Prime_30mm_4k_16by9_3840x2160-25.00fps.json index 533d37bd..17728926 100644 --- a/Sony/Sony_a7IV_SLR Magic Micro Prime_30mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_SLR Magic Micro Prime_30mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "30mm", "calibrated_by": "andre betzien", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "SLR Magic Micro Prime", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_SLR Magic MicroPrime CINE 35mm T1.3_XAVC S_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_SLR Magic MicroPrime CINE 35mm T1.3_XAVC S_4k_16by9_3840x2160-29.97fps.json index defadcb9..5e7c0636 100644 --- a/Sony/Sony_a7IV_SLR Magic MicroPrime CINE 35mm T1.3_XAVC S_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_SLR Magic MicroPrime CINE 35mm T1.3_XAVC S_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Simon Heinz", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "SLR Magic MicroPrime CINE 35mm T1.3", "camera_setting": "XAVC S", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Samyang 12_Active_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_Samyang 12_Active_4k_16by9_3840x2160-50.00fps.json index c3d9bb97..13b3ca97 100644 --- a/Sony/Sony_a7IV_Samyang 12_Active_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_Samyang 12_Active_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ralf Steiger", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Samyang 12", "camera_setting": "Active", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Samyang 12mm F2.0__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_Samyang 12mm F2.0__4k_16by9_3840x2160-50.00fps.json index 9a79e8be..f5a4ece7 100644 --- a/Sony/Sony_a7IV_Samyang 12mm F2.0__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_Samyang 12mm F2.0__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Pav Kung", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Samyang 12mm F2.0", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Samyang 14mm F2.8 EF manual lens__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_Samyang 14mm F2.8 EF manual lens__4k_16by9_3840x2160-25.00fps.json index 8eaea532..168d9ded 100644 --- a/Sony/Sony_a7IV_Samyang 14mm F2.8 EF manual lens__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_Samyang 14mm F2.8 EF manual lens__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Greg", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Samyang 14mm F2.8 EF manual lens", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Samyang 14mm_Crop,_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7IV_Samyang 14mm_Crop,_4k_16by9_3840x2160-59.94fps.json index fe4466cb..476900c5 100644 --- a/Sony/Sony_a7IV_Samyang 14mm_Crop,_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7IV_Samyang 14mm_Crop,_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "Viltrox Speedbooster 0.71", "calibrated_by": "", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Samyang 14mm", "camera_setting": "Crop,", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Samyang 24.-70 mm f2.8_24 mm_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Samyang 24.-70 mm f2.8_24 mm_4k_16by9_3840x2160-23.98fps.json index cc38dcef..eee451e4 100644 --- a/Sony/Sony_a7IV_Samyang 24.-70 mm f2.8_24 mm_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Samyang 24.-70 mm f2.8_24 mm_4k_16by9_3840x2160-23.98fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Abhinav Raina", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Samyang 24.00mm f2.8_29,97fps_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Samyang 24.00mm f2.8_29,97fps_4k_16by9_3840x2160-29.97fps.json index a2ce6b7e..6414a4b6 100644 --- a/Sony/Sony_a7IV_Samyang 24.00mm f2.8_29,97fps_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Samyang 24.00mm f2.8_29,97fps_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "TheBalzer", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Samyang 24.00mm f2.8", "camera_setting": "29,97fps", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Samyang 35-150_SLOG3_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Samyang 35-150_SLOG3_4k_16by9_3840x2160-23.98fps.json index 88ac99c7..5c4a0053 100644 --- a/Sony/Sony_a7IV_Samyang 35-150_SLOG3_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Samyang 35-150_SLOG3_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "150mm", "calibrated_by": "Ro Diaz", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Samyang 35-150", "camera_setting": "SLOG3", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Samyang 35.00mm f1.4__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_Samyang 35.00mm f1.4__4k_16by9_3840x2160-25.00fps.json index c1fa4dfa..273112e5 100644 --- a/Sony/Sony_a7IV_Samyang 35.00mm f1.4__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_Samyang 35.00mm f1.4__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Andrea Corallo", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Samyang 35.00mm f1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Samyang 35mm 1.8_Samyang 35mm 1.8 FE_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Samyang 35mm 1.8_Samyang 35mm 1.8 FE_4k_16by9_3840x2160-29.97fps.json index 6b11df6f..c254202f 100644 --- a/Sony/Sony_a7IV_Samyang 35mm 1.8_Samyang 35mm 1.8 FE_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Samyang 35mm 1.8_Samyang 35mm 1.8 FE_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "Samyang 35mm 1.8 FE", "calibrated_by": "Wojciech Płachetka", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Samyang 35mm 1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Samyang 45.00mm F1.8_APS-C Mode_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Samyang 45.00mm F1.8_APS-C Mode_4k_16by9_3840x2160-29.97fps.json index ea187dd5..61ceda8c 100644 --- a/Sony/Sony_a7IV_Samyang 45.00mm F1.8_APS-C Mode_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Samyang 45.00mm F1.8_APS-C Mode_4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "TheBalzer", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "APS-C Mode", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Samyang 45.00mm F1.8__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Samyang 45.00mm F1.8__4k_16by9_3840x2160-29.97fps.json index 465f88fd..3c7539ca 100644 --- a/Sony/Sony_a7IV_Samyang 45.00mm F1.8__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Samyang 45.00mm F1.8__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "TheBalzer", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Samyang 45.00mm F1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Samyang 45.00mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Samyang 45.00mm__4k_16by9_3840x2160-29.97fps.json index c5f3a124..354ffcfc 100644 --- a/Sony/Sony_a7IV_Samyang 45.00mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Samyang 45.00mm__4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "TheBalzer", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Samyang 75.00mm f1.8__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Samyang 75.00mm f1.8__4k_16by9_3840x2160-29.97fps.json index b4397dec..1922ba0d 100644 --- a/Sony/Sony_a7IV_Samyang 75.00mm f1.8__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Samyang 75.00mm f1.8__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "TheBalzer", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Samyang 75.00mm f1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Samyang 85mm T1.5__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_Samyang 85mm T1.5__1080p_16by9_1920x1080-50.00fps.json index cc879e61..a73366fe 100644 --- a/Sony/Sony_a7IV_Samyang 85mm T1.5__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_Samyang 85mm T1.5__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Olwetu Tonga", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Samyang 85mm T1.5", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Samyang AF 12mm F2.0__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_Samyang AF 12mm F2.0__4k_16by9_3840x2160-50.00fps.json index 9514a685..cad3ee82 100644 --- a/Sony/Sony_a7IV_Samyang AF 12mm F2.0__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_Samyang AF 12mm F2.0__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Pav Kung", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Samyang AF 12mm F2.0", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Samyang_12__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_Samyang_12__4k_16by9_3840x2160-50.00fps.json index 3275f34b..110eb59c 100644 --- a/Sony/Sony_a7IV_Samyang_12__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_Samyang_12__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ralf Steiger", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Samyang_12", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sigma 14-24 @ 14_29,96 FPS_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Sigma 14-24 @ 14_29,96 FPS_4k_16by9_3840x2160-29.97fps.json index b8fbd994..3712f4e3 100644 --- a/Sony/Sony_a7IV_Sigma 14-24 @ 14_29,96 FPS_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Sigma 14-24 @ 14_29,96 FPS_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "No Stabilization", "calibrated_by": "TheBalzer", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sigma 14-24 @ 14", "camera_setting": "29,96 FPS", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sigma 14-24 @14_29,96 fps_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Sigma 14-24 @14_29,96 fps_4k_16by9_3840x2160-29.97fps.json index e9712d1f..94a0f314 100644 --- a/Sony/Sony_a7IV_Sigma 14-24 @14_29,96 fps_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Sigma 14-24 @14_29,96 fps_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "IBIS", "calibrated_by": "TheBalzer", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sigma 14-24 @14", "camera_setting": "29,96 fps", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sigma 14-24 @24_29,97_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Sigma 14-24 @24_29,97_4k_16by9_3840x2160-29.97fps.json index aa94d17c..19c1389f 100644 --- a/Sony/Sony_a7IV_Sigma 14-24 @24_29,97_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Sigma 14-24 @24_29,97_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "No IBIS", "calibrated_by": "TheBalzer", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sigma 14-24 @24", "camera_setting": "29,97", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sigma 14-24.00mm f2.8 @24mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Sigma 14-24.00mm f2.8 @24mm__4k_16by9_3840x2160-29.97fps.json index 7582c5bc..323e6416 100644 --- a/Sony/Sony_a7IV_Sigma 14-24.00mm f2.8 @24mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Sigma 14-24.00mm f2.8 @24mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "TheBalzer", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sigma 14-24.00mm f2.8 @24mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sigma 14-24mm f2.8 @24mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Sigma 14-24mm f2.8 @24mm__4k_16by9_3840x2160-29.97fps.json index 6134817a..61ae4dd4 100644 --- a/Sony/Sony_a7IV_Sigma 14-24mm f2.8 @24mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Sigma 14-24mm f2.8 @24mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "TheBalzer", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sigma 14-24mm f2.8 @24mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sigma 16-28 F2.8_16mm_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Sigma 16-28 F2.8_16mm_4k_16by9_3840x2160-29.97fps.json index f52ef9c9..91ad5786 100644 --- a/Sony/Sony_a7IV_Sigma 16-28 F2.8_16mm_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Sigma 16-28 F2.8_16mm_4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Kaos", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Sigma 16-28 F2.8_18mm_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Sigma 16-28 F2.8_18mm_4k_16by9_3840x2160-29.97fps.json index e4a944a5..02ec82a4 100644 --- a/Sony/Sony_a7IV_Sigma 16-28 F2.8_18mm_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Sigma 16-28 F2.8_18mm_4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Kaos", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Sigma 16-28 F2.8_20mm_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Sigma 16-28 F2.8_20mm_4k_16by9_3840x2160-29.97fps.json index aca407e7..98caa30b 100644 --- a/Sony/Sony_a7IV_Sigma 16-28 F2.8_20mm_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Sigma 16-28 F2.8_20mm_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "20mm", "calibrated_by": "Kaos", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sigma 16-28 F2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sigma 16-28 F2_8_22mm_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Sigma 16-28 F2_8_22mm_4k_16by9_3840x2160-29.97fps.json index 4ec4bed0..d5b5099c 100644 --- a/Sony/Sony_a7IV_Sigma 16-28 F2_8_22mm_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Sigma 16-28 F2_8_22mm_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "22mm", "calibrated_by": "Kaos", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sigma 16-28 F2_8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sigma 16-28 F2_8_24mm_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Sigma 16-28 F2_8_24mm_4k_16by9_3840x2160-29.97fps.json index d7b72e43..9fe1c7e8 100644 --- a/Sony/Sony_a7IV_Sigma 16-28 F2_8_24mm_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Sigma 16-28 F2_8_24mm_4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Kaos", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Sigma 16-28mm f2.8_22mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_Sigma 16-28mm f2.8_22mm_4k_16by9_3840x2160-25.00fps.json index 11241785..31cd717a 100644 --- a/Sony/Sony_a7IV_Sigma 16-28mm f2.8_22mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_Sigma 16-28mm f2.8_22mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "22mm", "calibrated_by": "gadas", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sigma 16-28mm f/2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sigma 16-28mm f2.8_28mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_Sigma 16-28mm f2.8_28mm_4k_16by9_3840x2160-25.00fps.json index 489d8c7b..b8a5a3dd 100644 --- a/Sony/Sony_a7IV_Sigma 16-28mm f2.8_28mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_Sigma 16-28mm f2.8_28mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "28mm", "calibrated_by": "gadas", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sigma 16-28mm f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sigma 16.00mm_slog3_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Sigma 16.00mm_slog3_4k_16by9_3840x2160-23.98fps.json index 51140974..a245879b 100644 --- a/Sony/Sony_a7IV_Sigma 16.00mm_slog3_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Sigma 16.00mm_slog3_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "1.5 crop 24mm", "calibrated_by": "The Kreator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sigma 16.00mm", "camera_setting": "slog3", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sigma 16_28 F2_8_28mm_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Sigma 16_28 F2_8_28mm_4k_16by9_3840x2160-29.97fps.json index 14f5cc30..bf93e40f 100644 --- a/Sony/Sony_a7IV_Sigma 16_28 F2_8_28mm_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Sigma 16_28 F2_8_28mm_4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Kaos", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Sigma 24-70 @24_Super35 mode_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Sigma 24-70 @24_Super35 mode_4k_16by9_3840x2160-23.98fps.json index fbf18c69..85ee83f3 100644 --- a/Sony/Sony_a7IV_Sigma 24-70 @24_Super35 mode_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Sigma 24-70 @24_Super35 mode_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "John Hummel JR", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sigma 24-70 @24", "camera_setting": "Super35 mode", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sigma 24-70 DG DN at 24.00mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Sigma 24-70 DG DN at 24.00mm__4k_16by9_3840x2160-23.98fps.json index ec9fff67..1453ef6e 100644 --- a/Sony/Sony_a7IV_Sigma 24-70 DG DN at 24.00mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Sigma 24-70 DG DN at 24.00mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Bijoy Thangaraj", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sigma 24-70 DG DN at 24.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sigma 24-70 DG-DN Art_Vertical_4k_16by9_3840x2160-59.94fps - Fabio Scarparo - 2.json b/Sony/Sony_a7IV_Sigma 24-70 DG-DN Art_Vertical_4k_16by9_3840x2160-59.94fps - Fabio Scarparo - 2.json index 395444d9..e61664d1 100644 --- a/Sony/Sony_a7IV_Sigma 24-70 DG-DN Art_Vertical_4k_16by9_3840x2160-59.94fps - Fabio Scarparo - 2.json +++ b/Sony/Sony_a7IV_Sigma 24-70 DG-DN Art_Vertical_4k_16by9_3840x2160-59.94fps - Fabio Scarparo - 2.json @@ -3,7 +3,7 @@ "note": "35 mm", "calibrated_by": "Fabio Scarparo", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sigma 24-70 DG-DN Art", "camera_setting": "Vertical", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sigma 24-70 DG-DN Art_Vertical_4k_16by9_3840x2160-59.94fps - Fabio Scarparo - 3.json b/Sony/Sony_a7IV_Sigma 24-70 DG-DN Art_Vertical_4k_16by9_3840x2160-59.94fps - Fabio Scarparo - 3.json index f5dc6f1c..7d8e48ac 100644 --- a/Sony/Sony_a7IV_Sigma 24-70 DG-DN Art_Vertical_4k_16by9_3840x2160-59.94fps - Fabio Scarparo - 3.json +++ b/Sony/Sony_a7IV_Sigma 24-70 DG-DN Art_Vertical_4k_16by9_3840x2160-59.94fps - Fabio Scarparo - 3.json @@ -3,7 +3,7 @@ "note": "35mm", "calibrated_by": "Fabio Scarparo", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sigma 24-70 DG-DN Art", "camera_setting": "Vertical", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sigma 24-70 DG-DN Art_Vertical_4k_16by9_3840x2160-59.94fps - Fabio Scarparo - 4.json b/Sony/Sony_a7IV_Sigma 24-70 DG-DN Art_Vertical_4k_16by9_3840x2160-59.94fps - Fabio Scarparo - 4.json index 7a166351..72ed1552 100644 --- a/Sony/Sony_a7IV_Sigma 24-70 DG-DN Art_Vertical_4k_16by9_3840x2160-59.94fps - Fabio Scarparo - 4.json +++ b/Sony/Sony_a7IV_Sigma 24-70 DG-DN Art_Vertical_4k_16by9_3840x2160-59.94fps - Fabio Scarparo - 4.json @@ -7,7 +7,7 @@ "calibrated_by": "Fabio Scarparo", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "Vertical", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Sigma 24-70 DG-DN Art_Vertical_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7IV_Sigma 24-70 DG-DN Art_Vertical_4k_16by9_3840x2160-59.94fps.json index a8a647ee..e61f5161 100644 --- a/Sony/Sony_a7IV_Sigma 24-70 DG-DN Art_Vertical_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7IV_Sigma 24-70 DG-DN Art_Vertical_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "50mm", "calibrated_by": "Fabio Scarparo", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sigma 24-70 DG-DN Art", "camera_setting": "Vertical", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sigma 24-70mm 2.8 DG DN ART__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_Sigma 24-70mm 2.8 DG DN ART__4k_16by9_3840x2160-25.00fps.json index c3aeb0e4..3ccee3a5 100644 --- a/Sony/Sony_a7IV_Sigma 24-70mm 2.8 DG DN ART__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_Sigma 24-70mm 2.8 DG DN ART__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Alexandre Vieira", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sigma 24-70mm 2.8 DG DN ART", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sigma 24-70mm DG DN__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_Sigma 24-70mm DG DN__4k_16by9_3840x2160-25.00fps.json index c76e1798..b90b861d 100644 --- a/Sony/Sony_a7IV_Sigma 24-70mm DG DN__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_Sigma 24-70mm DG DN__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Mzlov", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sigma 24-70mm DG DN", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sigma 24-70mm f2.8 DG DN__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Sigma 24-70mm f2.8 DG DN__4k_16by9_3840x2160-23.98fps.json index 3e997a19..c24b5505 100644 --- a/Sony/Sony_a7IV_Sigma 24-70mm f2.8 DG DN__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Sigma 24-70mm f2.8 DG DN__4k_16by9_3840x2160-23.98fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Dustin Lawson", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Sigma 24-70mm_24mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_Sigma 24-70mm_24mm_4k_16by9_3840x2160-25.00fps.json index c9a77e44..0c33738b 100644 --- a/Sony/Sony_a7IV_Sigma 24-70mm_24mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_Sigma 24-70mm_24mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "24mm", "calibrated_by": "Enes Özgün", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sigma 24-70mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sigma 28-70 (only for 28mm)__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7IV_Sigma 28-70 (only for 28mm)__4k_16by9_3840x2160-59.94fps.json index dce435c5..1e8b00c8 100644 --- a/Sony/Sony_a7IV_Sigma 28-70 (only for 28mm)__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7IV_Sigma 28-70 (only for 28mm)__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Natsumi", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sigma 28-70 (only for 28mm)", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sigma 28-70mm_-25_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_Sigma 28-70mm_-25_4k_16by9_3840x2160-25.00fps.json index a4cac9e4..de92762d 100644 --- a/Sony/Sony_a7IV_Sigma 28-70mm_-25_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_Sigma 28-70mm_-25_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "28mm", "calibrated_by": "TianFeng", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sigma 28-70mm", "camera_setting": "-25", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sigma 28-70mm_28mm_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7IV_Sigma 28-70mm_28mm_1080p_16by9_1920x1080-25.00fps.json index 3f383939..bfc98fc1 100644 --- a/Sony/Sony_a7IV_Sigma 28-70mm_28mm_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7IV_Sigma 28-70mm_28mm_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "28mm", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sigma 28-70mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sigma 35.00mm__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7IV_Sigma 35.00mm__1080p_16by9_1920x1080-59.94fps.json index 765cd256..c7ebebe0 100644 --- a/Sony/Sony_a7IV_Sigma 35.00mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7IV_Sigma 35.00mm__1080p_16by9_1920x1080-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Lucas Gorman", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Sigma 35mm f1.4__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Sigma 35mm f1.4__4k_16by9_3840x2160-23.98fps.json index eee6588c..10b9bc93 100644 --- a/Sony/Sony_a7IV_Sigma 35mm f1.4__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Sigma 35mm f1.4__4k_16by9_3840x2160-23.98fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Lehan Vander", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Sigma 85.00mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Sigma 85.00mm__4k_16by9_3840x2160-29.97fps.json index 52d22047..1f096d6a 100644 --- a/Sony/Sony_a7IV_Sigma 85.00mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Sigma 85.00mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Non Monsieur", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sigma 85.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sigma art 18-35 (35.00mm)__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_Sigma art 18-35 (35.00mm)__4k_16by9_3840x2160-25.00fps.json index 67496eb6..1f398762 100644 --- a/Sony/Sony_a7IV_Sigma art 18-35 (35.00mm)__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_Sigma art 18-35 (35.00mm)__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Lucas Morel", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sigma art 18-35 (35.00mm)", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sigma art 18-35mm F1.8 (18.00mm)__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_Sigma art 18-35mm F1.8 (18.00mm)__4k_16by9_3840x2160-25.00fps.json index ba7f95d3..8a3d4fa7 100644 --- a/Sony/Sony_a7IV_Sigma art 18-35mm F1.8 (18.00mm)__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_Sigma art 18-35mm F1.8 (18.00mm)__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Lucas Morel", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sigma art 18-35mm F1.8 (18.00mm)", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sigma1424.00mm__1080p_16by9_1920x1080-59.94fps - mulin.json b/Sony/Sony_a7IV_Sigma1424.00mm__1080p_16by9_1920x1080-59.94fps - mulin.json index a3c08efc..ced959db 100644 --- a/Sony/Sony_a7IV_Sigma1424.00mm__1080p_16by9_1920x1080-59.94fps - mulin.json +++ b/Sony/Sony_a7IV_Sigma1424.00mm__1080p_16by9_1920x1080-59.94fps - mulin.json @@ -7,7 +7,7 @@ "calibrated_by": "mulin", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Sigma1424.00mm__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7IV_Sigma1424.00mm__1080p_16by9_1920x1080-59.94fps.json index 56e727ac..52bd8e68 100644 --- a/Sony/Sony_a7IV_Sigma1424.00mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7IV_Sigma1424.00mm__1080p_16by9_1920x1080-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "mulin", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Sigma24-70@35.00mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Sigma24-70@35.00mm__4k_16by9_3840x2160-29.97fps.json index d4b2dc6d..8d6cfe82 100644 --- a/Sony/Sony_a7IV_Sigma24-70@35.00mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Sigma24-70@35.00mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Uranus Jiao", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sigma24-70@35.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sony 16-35mm G_full-frame_4k_16by9_3840x2160-23.98fps - cyf - 2.json b/Sony/Sony_a7IV_Sony 16-35mm G_full-frame_4k_16by9_3840x2160-23.98fps - cyf - 2.json index adc225d7..5b485322 100644 --- a/Sony/Sony_a7IV_Sony 16-35mm G_full-frame_4k_16by9_3840x2160-23.98fps - cyf - 2.json +++ b/Sony/Sony_a7IV_Sony 16-35mm G_full-frame_4k_16by9_3840x2160-23.98fps - cyf - 2.json @@ -3,7 +3,7 @@ "note": "16mm", "calibrated_by": "cyf", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sony 16-35mm G", "camera_setting": "full-frame", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sony 16-35mm G_full-frame_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Sony 16-35mm G_full-frame_4k_16by9_3840x2160-23.98fps.json index 9480c15b..135ac1c2 100644 --- a/Sony/Sony_a7IV_Sony 16-35mm G_full-frame_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Sony 16-35mm G_full-frame_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "24mm", "calibrated_by": "cyf", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sony 16-35mm G", "camera_setting": "full-frame", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sony 16-50mm_S-Log 3 35mm mode_1080p_16by9_1920x1080-29.97fps.json b/Sony/Sony_a7IV_Sony 16-50mm_S-Log 3 35mm mode_1080p_16by9_1920x1080-29.97fps.json index 33801ae7..e0143ddb 100644 --- a/Sony/Sony_a7IV_Sony 16-50mm_S-Log 3 35mm mode_1080p_16by9_1920x1080-29.97fps.json +++ b/Sony/Sony_a7IV_Sony 16-50mm_S-Log 3 35mm mode_1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "16mm crop eqv.24mm", "calibrated_by": "Kamil Nikodem", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sony 16-50mm", "camera_setting": "S-Log 3 35mm mode", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sony ESLP 18mm 3.5-6.318-200__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_Sony ESLP 18mm 3.5-6.318-200__4k_16by9_3840x2160-50.00fps.json index 8196549c..75411621 100644 --- a/Sony/Sony_a7IV_Sony ESLP 18mm 3.5-6.318-200__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_Sony ESLP 18mm 3.5-6.318-200__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Alexandr Kuznetsov", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sony ESLP 18mm 3.5-6.3/18-200", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sony FE 35 mm F1.4 GM_Super35 Mode_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7IV_Sony FE 35 mm F1.4 GM_Super35 Mode_4k_16by9_3840x2160-59.94fps.json index 32699a64..41664642 100644 --- a/Sony/Sony_a7IV_Sony FE 35 mm F1.4 GM_Super35 Mode_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7IV_Sony FE 35 mm F1.4 GM_Super35 Mode_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "Super35 Mode", "calibrated_by": "Carsten Senkfeil", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Sony FE 35 mm F1.4 GM", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Sony FE35 SEL35F18F 35.00mm_F1.8 ISO800 160_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Sony FE35 SEL35F18F 35.00mm_F1.8 ISO800 160_4k_16by9_3840x2160-29.97fps.json index d5b161ea..175f47bd 100644 --- a/Sony/Sony_a7IV_Sony FE35 SEL35F18F 35.00mm_F1.8 ISO800 160_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Sony FE35 SEL35F18F 35.00mm_F1.8 ISO800 160_4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Thodoris Tsakalos", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "F1.8 ISO800 1/60", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Super Takumar 35mm F2_XACV S_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_Super Takumar 35mm F2_XACV S_4k_16by9_3840x2160-25.00fps.json index 2069e513..6aae982f 100644 --- a/Sony/Sony_a7IV_Super Takumar 35mm F2_XACV S_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_Super Takumar 35mm F2_XACV S_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Shrey Gupta", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Super Takumar 35mm F2", "camera_setting": "XACV S", "calib_dimension": { diff --git a/Sony/Sony_a7IV_TAMRON 20-40 F2.8 20.00mm__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7IV_TAMRON 20-40 F2.8 20.00mm__1080p_16by9_1920x1080-59.94fps.json index 064ec4ea..76c47ce9 100644 --- a/Sony/Sony_a7IV_TAMRON 20-40 F2.8 20.00mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7IV_TAMRON 20-40 F2.8 20.00mm__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "WS", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "TAMRON 20-40 F2.8 20.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_TAMRON 20-40mm F2.8 20.00mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_TAMRON 20-40mm F2.8 20.00mm__4k_16by9_3840x2160-29.97fps.json index 319e6901..83b33969 100644 --- a/Sony/Sony_a7IV_TAMRON 20-40mm F2.8 20.00mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_TAMRON 20-40mm F2.8 20.00mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "WS", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "TAMRON 20-40mm F2.8 20.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_TAMRON 200.00mm__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_TAMRON 200.00mm__4k_16by9_3840x2160-50.00fps.json index 40e7d733..931f258d 100644 --- a/Sony/Sony_a7IV_TAMRON 200.00mm__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_TAMRON 200.00mm__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "TAMRON 200.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_TAMRON 28-75.00mm_75mm_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_TAMRON 28-75.00mm_75mm_1080p_16by9_1920x1080-50.00fps.json index 748af278..5a71851e 100644 --- a/Sony/Sony_a7IV_TAMRON 28-75.00mm_75mm_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_TAMRON 28-75.00mm_75mm_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Mehmet Düz", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "TAMRON 28-75.00mm", "camera_setting": "75mm", "calib_dimension": { diff --git a/Sony/Sony_a7IV_TAMRON E 17-28 f2.8__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7IV_TAMRON E 17-28 f2.8__1080p_16by9_1920x1080-59.94fps.json index db70cc8b..195b94fc 100644 --- a/Sony/Sony_a7IV_TAMRON E 17-28 f2.8__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7IV_TAMRON E 17-28 f2.8__1080p_16by9_1920x1080-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "煲仔飯", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_TAMRON E 35-150 f2-2.8__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7IV_TAMRON E 35-150 f2-2.8__1080p_16by9_1920x1080-59.94fps.json index 8dd21080..710756d1 100644 --- a/Sony/Sony_a7IV_TAMRON E 35-150 f2-2.8__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7IV_TAMRON E 35-150 f2-2.8__1080p_16by9_1920x1080-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "煲仔飯", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_TAMRON FE 28-75mm_28mm_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7IV_TAMRON FE 28-75mm_28mm_1080p_16by9_1920x1080-25.00fps.json index d8305971..5a1fe4f4 100644 --- a/Sony/Sony_a7IV_TAMRON FE 28-75mm_28mm_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7IV_TAMRON FE 28-75mm_28mm_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "28mm", "calibrated_by": "Mehmet Düz", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "TAMRON FE 28-75mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_TAMRON20-40mm F2.8 40.00mm__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7IV_TAMRON20-40mm F2.8 40.00mm__1080p_16by9_1920x1080-59.94fps.json index a0b94d2d..77b57940 100644 --- a/Sony/Sony_a7IV_TAMRON20-40mm F2.8 40.00mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7IV_TAMRON20-40mm F2.8 40.00mm__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "WS", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "TAMRON20-40mm F2.8 40.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_TAMRON2875G2 @ 51.00mm__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_TAMRON2875G2 @ 51.00mm__1080p_16by9_1920x1080-50.00fps.json index 2519771f..ad44ccef 100644 --- a/Sony/Sony_a7IV_TAMRON2875G2 @ 51.00mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_TAMRON2875G2 @ 51.00mm__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "平落咖啡", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "TAMRON2875G2 @ 51.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_TOMRON28-75A6350mm__1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7IV_TOMRON28-75A6350mm__1080p_16by9_1920x1080-25.00fps.json index e39347b5..f84e62bd 100644 --- a/Sony/Sony_a7IV_TOMRON28-75A6350mm__1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7IV_TOMRON28-75A6350mm__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "TOMRON28-75A6350mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_TOMRON28-75A6375mm__1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7IV_TOMRON28-75A6375mm__1080p_16by9_1920x1080-25.00fps.json index ce6d7b8e..5a207c6f 100644 --- a/Sony/Sony_a7IV_TOMRON28-75A6375mm__1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7IV_TOMRON28-75A6375mm__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "TOMRON28-75A6375mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_TTArtisan 50mm f0.95_Full Frame_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_TTArtisan 50mm f0.95_Full Frame_4k_16by9_3840x2160-25.00fps.json index 113351f0..e8e78098 100644 --- a/Sony/Sony_a7IV_TTArtisan 50mm f0.95_Full Frame_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_TTArtisan 50mm f0.95_Full Frame_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "GordonYee", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "TTArtisan 50mm f0.95", "camera_setting": "Full Frame", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 17-28 @17.00mm_Active_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Tamron 17-28 @17.00mm_Active_4k_16by9_3840x2160-23.98fps.json index a6792e78..16968a09 100644 --- a/Sony/Sony_a7IV_Tamron 17-28 @17.00mm_Active_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Tamron 17-28 @17.00mm_Active_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Walker Johnson", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 17-28 @17.00mm", "camera_setting": "Active", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 17-28 @17.00mm_S-Log 3 10bit 4_2_2_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Tamron 17-28 @17.00mm_S-Log 3 10bit 4_2_2_4k_16by9_3840x2160-29.97fps.json index 73f3d0d2..20a250c2 100644 --- a/Sony/Sony_a7IV_Tamron 17-28 @17.00mm_S-Log 3 10bit 4_2_2_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Tamron 17-28 @17.00mm_S-Log 3 10bit 4_2_2_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Wendelin Gauger", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 17-28 @17.00mm", "camera_setting": "S-Log 3 10bit 4:2:2", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 17-28 mm f2.8_222m 4_2_2 10 bit_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7IV_Tamron 17-28 mm f2.8_222m 4_2_2 10 bit_1080p_16by9_1920x1080-59.94fps.json index 8067c397..022e448e 100644 --- a/Sony/Sony_a7IV_Tamron 17-28 mm f2.8_222m 4_2_2 10 bit_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7IV_Tamron 17-28 mm f2.8_222m 4_2_2 10 bit_1080p_16by9_1920x1080-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Hogar", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "222m 4:2:2 10 bit", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Tamron 17-28__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7IV_Tamron 17-28__1080p_16by9_1920x1080-59.94fps.json index fe4b552f..54b40272 100644 --- a/Sony/Sony_a7IV_Tamron 17-28__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7IV_Tamron 17-28__1080p_16by9_1920x1080-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "良仔", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Tamron 17-28mm F2.8 @ 17mm_Super 35_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7IV_Tamron 17-28mm F2.8 @ 17mm_Super 35_4k_16by9_3840x2160-59.94fps.json index 912376c5..b70ccbd3 100644 --- a/Sony/Sony_a7IV_Tamron 17-28mm F2.8 @ 17mm_Super 35_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7IV_Tamron 17-28mm F2.8 @ 17mm_Super 35_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Javier Pandales", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 17-28mm F2.8 @ 17mm", "camera_setting": "Super 35", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 20-40mm @20mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_Tamron 20-40mm @20mm__4k_16by9_3840x2160-25.00fps.json index 12179777..94716147 100644 --- a/Sony/Sony_a7IV_Tamron 20-40mm @20mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_Tamron 20-40mm @20mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Tim Belchamber", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 20-40mm @20mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 20-40mm F2.8_Full Frame_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_Tamron 20-40mm F2.8_Full Frame_4k_16by9_3840x2160-25.00fps.json index e99c8294..4c8add3c 100644 --- a/Sony/Sony_a7IV_Tamron 20-40mm F2.8_Full Frame_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_Tamron 20-40mm F2.8_Full Frame_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "Tested at each marked interval on lens: 20, 24, 28, 35, 40) 1/200 shutter", "calibrated_by": "Tim Belchamber", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 20-40mm F2.8", "camera_setting": "Full Frame", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 20mm 2.8_20mm_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7IV_Tamron 20mm 2.8_20mm_4k_16by9_3840x2160-59.94fps.json index 98141270..31ea0adc 100644 --- a/Sony/Sony_a7IV_Tamron 20mm 2.8_20mm_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7IV_Tamron 20mm 2.8_20mm_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "20mm", "calibrated_by": "Martin Ammon", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 20mm 2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 28-200_28mm_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Tamron 28-200_28mm_4k_16by9_3840x2160-29.97fps.json index dfec753f..faf59699 100644 --- a/Sony/Sony_a7IV_Tamron 28-200_28mm_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Tamron 28-200_28mm_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "28mm", "calibrated_by": "Ryan Sparkes", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 28-200", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 28-200mm_28mm_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7IV_Tamron 28-200mm_28mm_4k_16by9_3840x2160-59.94fps.json index 7681c0f5..61e33a01 100644 --- a/Sony/Sony_a7IV_Tamron 28-200mm_28mm_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7IV_Tamron 28-200mm_28mm_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "28mm", "calibrated_by": "Martin Ammon", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 28-200mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 28-75 50.00mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Tamron 28-75 50.00mm__4k_16by9_3840x2160-23.98fps.json index 849d803b..01cac98c 100644 --- a/Sony/Sony_a7IV_Tamron 28-75 50.00mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Tamron 28-75 50.00mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Simeon Schmidt", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 28-75 50.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 28-75 @ 28.00mm_APSC_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Tamron 28-75 @ 28.00mm_APSC_4k_16by9_3840x2160-23.98fps.json index 540f0053..6bec1a76 100644 --- a/Sony/Sony_a7IV_Tamron 28-75 @ 28.00mm_APSC_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Tamron 28-75 @ 28.00mm_APSC_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "APSC", "calibrated_by": "Golden", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 28-75 @ 28.00mm", "camera_setting": "APSC", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 28-75 G2 @28.00mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Tamron 28-75 G2 @28.00mm__4k_16by9_3840x2160-23.98fps.json index b5c44219..c18eb407 100644 --- a/Sony/Sony_a7IV_Tamron 28-75 G2 @28.00mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Tamron 28-75 G2 @28.00mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "god", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 28-75 G2 @28.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 28-75 f2.8 Di III RXD_75mm_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_Tamron 28-75 f2.8 Di III RXD_75mm_1080p_16by9_1920x1080-50.00fps.json index cd63b402..5b0096d3 100644 --- a/Sony/Sony_a7IV_Tamron 28-75 f2.8 Di III RXD_75mm_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_Tamron 28-75 f2.8 Di III RXD_75mm_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "samuele dessi", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 28-75 f2.8 Di III RXD", "camera_setting": "75mm", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 28-75 f2.8 G2_28mm f4_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_Tamron 28-75 f2.8 G2_28mm f4_1080p_16by9_1920x1080-50.00fps.json index 762ce592..6db5017b 100644 --- a/Sony/Sony_a7IV_Tamron 28-75 f2.8 G2_28mm f4_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_Tamron 28-75 f2.8 G2_28mm f4_1080p_16by9_1920x1080-50.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Igor Iudnikov", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "28mm f/4", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Tamron 28-75 f2.8 G2_35mm f4_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_Tamron 28-75 f2.8 G2_35mm f4_1080p_16by9_1920x1080-50.00fps.json index 8c2041fd..67f08ac0 100644 --- a/Sony/Sony_a7IV_Tamron 28-75 f2.8 G2_35mm f4_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_Tamron 28-75 f2.8 G2_35mm f4_1080p_16by9_1920x1080-50.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Igor Iudnikov", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "35mm f/4", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Tamron 28-75 f2.8 G2_50mm f4_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_Tamron 28-75 f2.8 G2_50mm f4_1080p_16by9_1920x1080-50.00fps.json index e140a8ff..4740af86 100644 --- a/Sony/Sony_a7IV_Tamron 28-75 f2.8 G2_50mm f4_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_Tamron 28-75 f2.8 G2_50mm f4_1080p_16by9_1920x1080-50.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Igor Iudnikov", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "50mm f/4", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Tamron 28-75 f2.8 G2_75mm f4_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_Tamron 28-75 f2.8 G2_75mm f4_1080p_16by9_1920x1080-50.00fps.json index c5d1fb6c..420f7ddf 100644 --- a/Sony/Sony_a7IV_Tamron 28-75 f2.8 G2_75mm f4_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_Tamron 28-75 f2.8 G2_75mm f4_1080p_16by9_1920x1080-50.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Igor Iudnikov", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "75mm f/4", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Tamron 28-75 f2.8 G2_@(28mm)_1080p_16by9_1920x1080-23.98fps.json b/Sony/Sony_a7IV_Tamron 28-75 f2.8 G2_@(28mm)_1080p_16by9_1920x1080-23.98fps.json index da1a7027..d019f59a 100644 --- a/Sony/Sony_a7IV_Tamron 28-75 f2.8 G2_@(28mm)_1080p_16by9_1920x1080-23.98fps.json +++ b/Sony/Sony_a7IV_Tamron 28-75 f2.8 G2_@(28mm)_1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "@(28mm)", "calibrated_by": "Ahmad Faiz", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 28-75 f2.8 G2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 28-75 f2.8 ff28.00mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_Tamron 28-75 f2.8 ff28.00mm__4k_16by9_3840x2160-25.00fps.json index 1dd78457..92b55aa9 100644 --- a/Sony/Sony_a7IV_Tamron 28-75 f2.8 ff28.00mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_Tamron 28-75 f2.8 ff28.00mm__4k_16by9_3840x2160-25.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "User", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Tamron 28-75-28.00mm_A7M4_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_Tamron 28-75-28.00mm_A7M4_1080p_16by9_1920x1080-50.00fps.json index 15511072..75f9b9dd 100644 --- a/Sony/Sony_a7IV_Tamron 28-75-28.00mm_A7M4_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_Tamron 28-75-28.00mm_A7M4_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "KITAJIMA", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 28-75-28.00mm", "camera_setting": "A7M4", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 28-75_60fps_1080p_16by9_1920x1080-23.98fps.json b/Sony/Sony_a7IV_Tamron 28-75_60fps_1080p_16by9_1920x1080-23.98fps.json index d73c8f4d..9c6d04e5 100644 --- a/Sony/Sony_a7IV_Tamron 28-75_60fps_1080p_16by9_1920x1080-23.98fps.json +++ b/Sony/Sony_a7IV_Tamron 28-75_60fps_1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "@28mm", "calibrated_by": "Paul Méndez", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 28-75", "camera_setting": "60fps", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 28-75_A7IV 1250 f7.1_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_Tamron 28-75_A7IV 1250 f7.1_4k_16by9_3840x2160-25.00fps.json index 99314945..4c17ca9e 100644 --- a/Sony/Sony_a7IV_Tamron 28-75_A7IV 1250 f7.1_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_Tamron 28-75_A7IV 1250 f7.1_4k_16by9_3840x2160-25.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "PC", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "A7IV 1/250 f7.1", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Tamron 28-75mm F2.8 @28.00mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Tamron 28-75mm F2.8 @28.00mm__4k_16by9_3840x2160-29.97fps.json index 47ad456a..6c131b4b 100644 --- a/Sony/Sony_a7IV_Tamron 28-75mm F2.8 @28.00mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Tamron 28-75mm F2.8 @28.00mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "TheBalzer", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 28-75mm F2.8 @28.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 28-75mm F2.8_25fps 4.2.2 10bit_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Tamron 28-75mm F2.8_25fps 4.2.2 10bit_4k_16by9_3840x2160-23.98fps.json index 7ed2f6ba..0b1c07a1 100644 --- a/Sony/Sony_a7IV_Tamron 28-75mm F2.8_25fps 4.2.2 10bit_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Tamron 28-75mm F2.8_25fps 4.2.2 10bit_4k_16by9_3840x2160-23.98fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Tolga Sarikose", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "25fps 4.2.2 10bit", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Tamron 28-75mm F2.8_APS-C_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_Tamron 28-75mm F2.8_APS-C_4k_16by9_3840x2160-50.00fps.json index 0c53f814..1206b711 100644 --- a/Sony/Sony_a7IV_Tamron 28-75mm F2.8_APS-C_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_Tamron 28-75mm F2.8_APS-C_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "28mm", "calibrated_by": "Tomáš Drozd", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 28-75mm F2.8", "camera_setting": "APS-C", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 28-75mm G1 23.976fps @28.00mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Tamron 28-75mm G1 23.976fps @28.00mm__4k_16by9_3840x2160-23.98fps.json index c9e3606e..91adc692 100644 --- a/Sony/Sony_a7IV_Tamron 28-75mm G1 23.976fps @28.00mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Tamron 28-75mm G1 23.976fps @28.00mm__4k_16by9_3840x2160-23.98fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Niko Chaidas", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Tamron 28-75mm G1 75.00mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Tamron 28-75mm G1 75.00mm__4k_16by9_3840x2160-23.98fps.json index a1b1b9ad..5a8b82bc 100644 --- a/Sony/Sony_a7IV_Tamron 28-75mm G1 75.00mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Tamron 28-75mm G1 75.00mm__4k_16by9_3840x2160-23.98fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Niko Chaidas", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Tamron 28-75mm f2.8 @50.00mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Tamron 28-75mm f2.8 @50.00mm__4k_16by9_3840x2160-29.97fps.json index 2f124a58..15867761 100644 --- a/Sony/Sony_a7IV_Tamron 28-75mm f2.8 @50.00mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Tamron 28-75mm f2.8 @50.00mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "TheBalzer", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 28-75mm f2.8 @50.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 28-75mm f2.8 @75.00mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Tamron 28-75mm f2.8 @75.00mm__4k_16by9_3840x2160-29.97fps.json index feed40b8..43abce6e 100644 --- a/Sony/Sony_a7IV_Tamron 28-75mm f2.8 @75.00mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Tamron 28-75mm f2.8 @75.00mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "TheBalzer", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 28-75mm f2.8 @75.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 28-75mm f2.8 Di III VXD G2_28mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_Tamron 28-75mm f2.8 Di III VXD G2_28mm_4k_16by9_3840x2160-25.00fps.json index 8a6c086e..bbeaa431 100644 --- a/Sony/Sony_a7IV_Tamron 28-75mm f2.8 Di III VXD G2_28mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_Tamron 28-75mm f2.8 Di III VXD G2_28mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "28mm", "calibrated_by": "sven k.", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 28-75mm f/2.8 Di III VXD G2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 28-75mm f2.8 G2_@(28mm) SS On_1080p_16by9_1920x1080-23.98fps.json b/Sony/Sony_a7IV_Tamron 28-75mm f2.8 G2_@(28mm) SS On_1080p_16by9_1920x1080-23.98fps.json index 39b9b2c5..9ab3f22c 100644 --- a/Sony/Sony_a7IV_Tamron 28-75mm f2.8 G2_@(28mm) SS On_1080p_16by9_1920x1080-23.98fps.json +++ b/Sony/Sony_a7IV_Tamron 28-75mm f2.8 G2_@(28mm) SS On_1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "@(28mm) SS On", "calibrated_by": "Ahmad Faiz", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 28-75mm f2.8 G2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 28-75mm f2.8 g2_28mm_1080p_16by9_1920x1080-23.98fps.json b/Sony/Sony_a7IV_Tamron 28-75mm f2.8 g2_28mm_1080p_16by9_1920x1080-23.98fps.json index 81e080c2..7f0f8c01 100644 --- a/Sony/Sony_a7IV_Tamron 28-75mm f2.8 g2_28mm_1080p_16by9_1920x1080-23.98fps.json +++ b/Sony/Sony_a7IV_Tamron 28-75mm f2.8 g2_28mm_1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "28mm", "calibrated_by": "Ahmad Faiz", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 28-75mm f/2.8 g2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 28.00mm__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7IV_Tamron 28.00mm__1080p_16by9_1920x1080-59.94fps.json index e0e8789e..d4160e3b 100644 --- a/Sony/Sony_a7IV_Tamron 28.00mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7IV_Tamron 28.00mm__1080p_16by9_1920x1080-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "mulin", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Tamron 35-150 f2-2.8 50mm__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_Tamron 35-150 f2-2.8 50mm__1080p_16by9_1920x1080-50.00fps.json index cd0189c7..b9d50d30 100644 --- a/Sony/Sony_a7IV_Tamron 35-150 f2-2.8 50mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_Tamron 35-150 f2-2.8 50mm__1080p_16by9_1920x1080-50.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Igor Iudnikov", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Tamron 35-150 f2-2.8 85.00mm__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_Tamron 35-150 f2-2.8 85.00mm__1080p_16by9_1920x1080-50.00fps.json index 84fc76e8..94ba015e 100644 --- a/Sony/Sony_a7IV_Tamron 35-150 f2-2.8 85.00mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_Tamron 35-150 f2-2.8 85.00mm__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Igor Iudnikov", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 35-150 f/2-2.8 85.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 35-150__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7IV_Tamron 35-150__1080p_16by9_1920x1080-59.94fps.json index 2c55ebb8..6df88416 100644 --- a/Sony/Sony_a7IV_Tamron 35-150__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7IV_Tamron 35-150__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "党宏斌", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 35-150", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 35-150mm f2-2.8 Di III VXD 35.00mm_50p (APS-C)_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_Tamron 35-150mm f2-2.8 Di III VXD 35.00mm_50p (APS-C)_4k_16by9_3840x2160-25.00fps.json index bcafa750..7f724e7f 100644 --- a/Sony/Sony_a7IV_Tamron 35-150mm f2-2.8 Di III VXD 35.00mm_50p (APS-C)_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_Tamron 35-150mm f2-2.8 Di III VXD 35.00mm_50p (APS-C)_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Igor Iudnikov", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 35-150mm f/2-2.8 Di III VXD 35.00mm", "camera_setting": "50p (APS-C)", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 50-400mm F4.5-6.3 VC VXD (A067) 200mm_4k 60_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7IV_Tamron 50-400mm F4.5-6.3 VC VXD (A067) 200mm_4k 60_4k_16by9_3840x2160-59.94fps.json index b23299ef..fa6664f7 100644 --- a/Sony/Sony_a7IV_Tamron 50-400mm F4.5-6.3 VC VXD (A067) 200mm_4k 60_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7IV_Tamron 50-400mm F4.5-6.3 VC VXD (A067) 200mm_4k 60_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "4k 60", "calibrated_by": "Roger Wu", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 50-400mm F4.5-6.3 VC VXD (A067) 200mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 50-400mm F4.5-6.3 VC VXD (A067) 400.00mm_60_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7IV_Tamron 50-400mm F4.5-6.3 VC VXD (A067) 400.00mm_60_4k_16by9_3840x2160-59.94fps.json index e34cb3c8..8a8bdb63 100644 --- a/Sony/Sony_a7IV_Tamron 50-400mm F4.5-6.3 VC VXD (A067) 400.00mm_60_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7IV_Tamron 50-400mm F4.5-6.3 VC VXD (A067) 400.00mm_60_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Roger Wu", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 50-400mm F4.5-6.3 VC VXD (A067) 400.00mm", "camera_setting": "60", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 50-400mm f4.5-6.3_50mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_Tamron 50-400mm f4.5-6.3_50mm_4k_16by9_3840x2160-25.00fps.json index 675fc4b1..c219862e 100644 --- a/Sony/Sony_a7IV_Tamron 50-400mm f4.5-6.3_50mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_Tamron 50-400mm f4.5-6.3_50mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "50mm", "calibrated_by": "jarek m", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 50-400mm f4.5-6.3", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 50-400mm f4.5-6.3_50mm_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_Tamron 50-400mm f4.5-6.3_50mm_4k_16by9_3840x2160-50.00fps.json index be63b223..8544ef5e 100644 --- a/Sony/Sony_a7IV_Tamron 50-400mm f4.5-6.3_50mm_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_Tamron 50-400mm f4.5-6.3_50mm_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "50mm", "calibrated_by": "jarek m", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 50-400mm f4.5-6.3", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron 70-300 (300mm)__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Tamron 70-300 (300mm)__4k_16by9_3840x2160-23.98fps.json index 065aec5a..20151430 100644 --- a/Sony/Sony_a7IV_Tamron 70-300 (300mm)__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Tamron 70-300 (300mm)__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "杜以恒", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron 70-300 (300mm)", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Tamron_17-28mm_F2.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_Tamron_17-28mm_F2.8__4k_16by9_3840x2160-25.00fps.json index 0f0bafab..f49b8387 100644 --- a/Sony/Sony_a7IV_Tamron_17-28mm_F2.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_Tamron_17-28mm_F2.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Andriej Szypiłow", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Tamron_17-28mm_F2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Venus Optics Laowa 10.00mm F2.8__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Venus Optics Laowa 10.00mm F2.8__4k_16by9_3840x2160-23.98fps.json index 58fd4aa4..9d931824 100644 --- a/Sony/Sony_a7IV_Venus Optics Laowa 10.00mm F2.8__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Venus Optics Laowa 10.00mm F2.8__4k_16by9_3840x2160-23.98fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Andrew", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Venus Optics Laowa 10.00mm__4k_16by9_3840x2160-59.94fps - Sirron - 2.json b/Sony/Sony_a7IV_Venus Optics Laowa 10.00mm__4k_16by9_3840x2160-59.94fps - Sirron - 2.json index c225c69f..112f0838 100644 --- a/Sony/Sony_a7IV_Venus Optics Laowa 10.00mm__4k_16by9_3840x2160-59.94fps - Sirron - 2.json +++ b/Sony/Sony_a7IV_Venus Optics Laowa 10.00mm__4k_16by9_3840x2160-59.94fps - Sirron - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Sirron", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Venus Optics Laowa 10.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Venus Optics laowa 10.00mm__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7IV_Venus Optics laowa 10.00mm__4k_16by9_3840x2160-59.94fps.json index 02053fc6..0c75f851 100644 --- a/Sony/Sony_a7IV_Venus Optics laowa 10.00mm__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7IV_Venus Optics laowa 10.00mm__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Sirron", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Venus Optics laowa 10.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Viltrox 20.00mm f2.8__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_Viltrox 20.00mm f2.8__1080p_16by9_1920x1080-50.00fps.json index 9594008c..f9974be1 100644 --- a/Sony/Sony_a7IV_Viltrox 20.00mm f2.8__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_Viltrox 20.00mm f2.8__1080p_16by9_1920x1080-50.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "戴亚荣", "calibrator_version": "1.5.2", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_Vivitar 28mm f2__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Vivitar 28mm f2__4k_16by9_3840x2160-23.98fps.json index 0039eba1..2d61fd52 100644 --- a/Sony/Sony_a7IV_Vivitar 28mm f2__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Vivitar 28mm f2__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Lehan Vander", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Vivitar 28mm f2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Voigtlander_10.00mm_30p_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Voigtlander_10.00mm_30p_4k_16by9_3840x2160-29.97fps.json index 2a8c6a0a..82845c00 100644 --- a/Sony/Sony_a7IV_Voigtlander_10.00mm_30p_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Voigtlander_10.00mm_30p_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "30p", "calibrated_by": "Tetsuji Yoshida", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Voigtlander_10.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_YONGNUO1.8 @ 50.00mm__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7IV_YONGNUO1.8 @ 50.00mm__4k_16by9_3840x2160-50.00fps.json index c8b750a0..61274811 100644 --- a/Sony/Sony_a7IV_YONGNUO1.8 @ 50.00mm__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7IV_YONGNUO1.8 @ 50.00mm__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Luoyun Fan", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "YONGNUO1.8 @ 50.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Zeiss 24-70mm_4K_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Zeiss 24-70mm_4K_4k_16by9_3840x2160-23.98fps.json index 6d16a467..f0476922 100644 --- a/Sony/Sony_a7IV_Zeiss 24-70mm_4K_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Zeiss 24-70mm_4K_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "4K", "calibrated_by": "Oscar Reyes", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Zeiss 24-70mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Zeiss 55.00mm_29.975_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Zeiss 55.00mm_29.975_4k_16by9_3840x2160-29.97fps.json index 0e818afb..c4cf1c02 100644 --- a/Sony/Sony_a7IV_Zeiss 55.00mm_29.975_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Zeiss 55.00mm_29.975_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "29.975", "calibrated_by": "Thodoris Tsakalos", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Zeiss 55.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Zeiss 55.00mm_30fps_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Zeiss 55.00mm_30fps_4k_16by9_3840x2160-29.97fps.json index 68d5cc2b..07e55553 100644 --- a/Sony/Sony_a7IV_Zeiss 55.00mm_30fps_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Zeiss 55.00mm_30fps_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "30fps", "calibrated_by": "Thodoris Tsakalos", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Zeiss 55.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Zeiss 55.00mm_F7.1 11000 @ 3200iso_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_Zeiss 55.00mm_F7.1 11000 @ 3200iso_4k_16by9_3840x2160-25.00fps.json index 67e5151a..df58faef 100644 --- a/Sony/Sony_a7IV_Zeiss 55.00mm_F7.1 11000 @ 3200iso_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_Zeiss 55.00mm_F7.1 11000 @ 3200iso_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Cadoret Studios", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Zeiss 55.00mm", "camera_setting": "F7.1 1/1000 @ 3200iso", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Zeiss Batis 135mm F2.8_APS-C Mode_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Zeiss Batis 135mm F2.8_APS-C Mode_4k_16by9_3840x2160-29.97fps.json index 937539f5..f0e311c4 100644 --- a/Sony/Sony_a7IV_Zeiss Batis 135mm F2.8_APS-C Mode_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Zeiss Batis 135mm F2.8_APS-C Mode_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "TheBalzer", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Zeiss Batis 135mm F2.8", "camera_setting": "APS-C Mode", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Zeiss Batis 18.00mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_Zeiss Batis 18.00mm__4k_16by9_3840x2160-29.97fps.json index 23b615fa..06ada714 100644 --- a/Sony/Sony_a7IV_Zeiss Batis 18.00mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_Zeiss Batis 18.00mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Thodoris Tsakalos", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Zeiss Batis 18.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_Zeiss Praktikar 50mm_s log 2_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_Zeiss Praktikar 50mm_s log 2_4k_16by9_3840x2160-23.98fps.json index 92b78dc4..f01d6ef3 100644 --- a/Sony/Sony_a7IV_Zeiss Praktikar 50mm_s log 2_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_Zeiss Praktikar 50mm_s log 2_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Simeon Schmidt", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "Zeiss Praktikar 50mm", "camera_setting": "s log 2", "calib_dimension": { diff --git a/Sony/Sony_a7IV_irix 45mm cine__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_irix 45mm cine__4k_16by9_3840x2160-23.98fps.json index 3f84a0a4..d9c5fdf7 100644 --- a/Sony/Sony_a7IV_irix 45mm cine__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_irix 45mm cine__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ADLEN CHERIF", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "irix 45mm cine", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_laowa 12mm_1100s_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7IV_laowa 12mm_1100s_1080p_16by9_1920x1080-25.00fps.json index ebb271c6..5f997782 100644 --- a/Sony/Sony_a7IV_laowa 12mm_1100s_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7IV_laowa 12mm_1100s_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "田福强", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "laowa 12mm", "camera_setting": "1/100s", "calib_dimension": { diff --git a/Sony/Sony_a7IV_pz1635f4-16.00mm__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7IV_pz1635f4-16.00mm__1080p_16by9_1920x1080-50.00fps.json index 1add4604..a0f2e59b 100644 --- a/Sony/Sony_a7IV_pz1635f4-16.00mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7IV_pz1635f4-16.00mm__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "pz1635f4-16.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_samyang35.00mmf2.8_-_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_samyang35.00mmf2.8_-_4k_16by9_3840x2160-29.97fps.json index 13018d5f..8f8f65dc 100644 --- a/Sony/Sony_a7IV_samyang35.00mmf2.8_-_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_samyang35.00mmf2.8_-_4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Alex", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "-", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_sigma 28-70 28.00mm_25_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_sigma 28-70 28.00mm_25_4k_16by9_3840x2160-25.00fps.json index 287b93af..e7fb3c92 100644 --- a/Sony/Sony_a7IV_sigma 28-70 28.00mm_25_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_sigma 28-70 28.00mm_25_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "谷源元", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "sigma 28-70 28.00mm", "camera_setting": "25", "calib_dimension": { diff --git a/Sony/Sony_a7IV_sigma 28-70 f2.8__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7IV_sigma 28-70 f2.8__1080p_16by9_1920x1080-59.94fps.json index 18e677ed..ae17dfb4 100644 --- a/Sony/Sony_a7IV_sigma 28-70 f2.8__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7IV_sigma 28-70 f2.8__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "党宏斌", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "sigma 28-70 f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_sirui 35mm saturn t2.9_a7iv saturn 35mm_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7IV_sirui 35mm saturn t2.9_a7iv saturn 35mm_4k_16by9_3840x2160-23.98fps.json index c5ca4090..d465a6e0 100644 --- a/Sony/Sony_a7IV_sirui 35mm saturn t2.9_a7iv saturn 35mm_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7IV_sirui 35mm saturn t2.9_a7iv saturn 35mm_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "PONLOG-ARTWS", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "sirui 35mm saturn t2.9", "camera_setting": "a7iv saturn 35mm", "calib_dimension": { diff --git a/Sony/Sony_a7IV_tamron 28-75mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_tamron 28-75mm__4k_16by9_3840x2160-25.00fps.json index 458f48d7..b7481f88 100644 --- a/Sony/Sony_a7IV_tamron 28-75mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_tamron 28-75mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "weitao mai", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "tamron 28-75mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_vvd__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_vvd__4k_16by9_3840x2160-25.00fps.json index 1a705607..d8c20ea4 100644 --- a/Sony/Sony_a7IV_vvd__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_vvd__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "EasonZ", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "vvd", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7IV_yongnuo50.00mm_-_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7IV_yongnuo50.00mm_-_4k_16by9_3840x2160-29.97fps.json index 1bdd8d3f..df99e9d2 100644 --- a/Sony/Sony_a7IV_yongnuo50.00mm_-_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7IV_yongnuo50.00mm_-_4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Alex", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "camera_setting": "-", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7IV_zeiss 16-35mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7IV_zeiss 16-35mm__4k_16by9_3840x2160-25.00fps.json index 7eb63294..b8922823 100644 --- a/Sony/Sony_a7IV_zeiss 16-35mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7IV_zeiss 16-35mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "王辉", "camera_brand": "Sony", - "camera_model": "a7IV", + "camera_model": "Alpha 7 IV", "lens_model": "zeiss 16-35mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7RIII_-20mmT1.9__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7RIII_-20mmT1.9__4k_16by9_3840x2160-29.97fps.json index 72633b36..fee1da79 100644 --- a/Sony/Sony_a7RIII_-20mmT1.9__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7RIII_-20mmT1.9__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "WJMSQ", "camera_brand": "Sony", - "camera_model": "a7RIII", + "camera_model": "Alpha 7R III", "lens_model": "森养-20mmT1.9", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7RIII_16-35 F2.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7RIII_16-35 F2.8__4k_16by9_3840x2160-25.00fps.json index 12e4a750..f9af3572 100644 --- a/Sony/Sony_a7RIII_16-35 F2.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7RIII_16-35 F2.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7RIII", + "camera_model": "Alpha 7R III", "lens_model": "16-35 F2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7RIII_16-35mm F2.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7RIII_16-35mm F2.8__4k_16by9_3840x2160-25.00fps.json index c93a9783..6247b70e 100644 --- a/Sony/Sony_a7RIII_16-35mm F2.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7RIII_16-35mm F2.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7RIII", + "camera_model": "Alpha 7R III", "lens_model": "16-35mm F2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7RIII_20mm T1.9__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7RIII_20mm T1.9__1080p_16by9_1920x1080-50.00fps.json index 345df38e..46f29fdf 100644 --- a/Sony/Sony_a7RIII_20mm T1.9__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7RIII_20mm T1.9__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7RIII", + "camera_model": "Alpha 7R III", "lens_model": "森养20mm T1.9", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7RIII_28-200_30_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7RIII_28-200_30_4k_16by9_3840x2160-25.00fps.json index f9820a67..372d6536 100644 --- a/Sony/Sony_a7RIII_28-200_30_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7RIII_28-200_30_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "15398", "camera_brand": "Sony", - "camera_model": "a7RIII", + "camera_model": "Alpha 7R III", "lens_model": "28-200", "camera_setting": "30", "calib_dimension": { diff --git a/Sony/Sony_a7RIII_28-200__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7RIII_28-200__4k_16by9_3840x2160-25.00fps.json index 4af4cfdb..ba04f925 100644 --- a/Sony/Sony_a7RIII_28-200__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7RIII_28-200__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "15398", "camera_brand": "Sony", - "camera_model": "a7RIII", + "camera_model": "Alpha 7R III", "lens_model": "28-200", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7RIII_35150__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7RIII_35150__4k_16by9_3840x2160-29.97fps.json index cc605c0c..e8ca10c7 100644 --- a/Sony/Sony_a7RIII_35150__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7RIII_35150__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "shaolong zhang", "camera_brand": "Sony", - "camera_model": "a7RIII", + "camera_model": "Alpha 7R III", "lens_model": "35150", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7RIII_55-300NIKON_SONYA7RIII_1080p_16by9_1920x1080-23.98fps.json b/Sony/Sony_a7RIII_55-300NIKON_SONYA7RIII_1080p_16by9_1920x1080-23.98fps.json index 50972a81..2a90022a 100644 --- a/Sony/Sony_a7RIII_55-300NIKON_SONYA7RIII_1080p_16by9_1920x1080-23.98fps.json +++ b/Sony/Sony_a7RIII_55-300NIKON_SONYA7RIII_1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "55mm", "calibrated_by": "Jonathan Espindola", "camera_brand": "Sony", - "camera_model": "a7RIII", + "camera_model": "Alpha 7R III", "lens_model": "55-300NIKON", "camera_setting": "SONYA7RIII", "calib_dimension": { diff --git a/Sony/Sony_a7RIII_FE 24-70mm F4__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7RIII_FE 24-70mm F4__4k_16by9_3840x2160-25.00fps.json index 33a03e99..8881e050 100644 --- a/Sony/Sony_a7RIII_FE 24-70mm F4__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7RIII_FE 24-70mm F4__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7RIII", + "camera_model": "Alpha 7R III", "lens_model": "FE 24-70mm F4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7RIII_FE 424-105 G OSS__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7RIII_FE 424-105 G OSS__4k_16by9_3840x2160-23.98fps.json index 7de261db..7757f09f 100644 --- a/Sony/Sony_a7RIII_FE 424-105 G OSS__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7RIII_FE 424-105 G OSS__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Rodrigo Villegas", "camera_brand": "Sony", - "camera_model": "a7RIII", + "camera_model": "Alpha 7R III", "lens_model": "FE 4/24-105 G OSS", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7RIII_FE424-70__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7RIII_FE424-70__4k_16by9_3840x2160-25.00fps.json index 48f01a34..90310d0e 100644 --- a/Sony/Sony_a7RIII_FE424-70__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7RIII_FE424-70__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7RIII", + "camera_model": "Alpha 7R III", "lens_model": "FE4、24-70", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7RIII_PLANAR 50MM_SONYA7RIII_1080p_16by9_1920x1080-23.98fps.json b/Sony/Sony_a7RIII_PLANAR 50MM_SONYA7RIII_1080p_16by9_1920x1080-23.98fps.json index fe27e700..b133664f 100644 --- a/Sony/Sony_a7RIII_PLANAR 50MM_SONYA7RIII_1080p_16by9_1920x1080-23.98fps.json +++ b/Sony/Sony_a7RIII_PLANAR 50MM_SONYA7RIII_1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "50mm", "calibrated_by": "Jonathan Espindola", "camera_brand": "Sony", - "camera_model": "a7RIII", + "camera_model": "Alpha 7R III", "lens_model": "PLANAR 50MM", "camera_setting": "SONYA7RIII", "calib_dimension": { diff --git a/Sony/Sony_a7RIII_Pentax 16-85_manual_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7RIII_Pentax 16-85_manual_1080p_16by9_1920x1080-59.94fps.json index 4fe1994a..6013d805 100644 --- a/Sony/Sony_a7RIII_Pentax 16-85_manual_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7RIII_Pentax 16-85_manual_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "16mm", "calibrated_by": "Jonathan Espindola", "camera_brand": "Sony", - "camera_model": "a7RIII", + "camera_model": "Alpha 7R III", "lens_model": "Pentax 16-85", "camera_setting": "manual", "calib_dimension": { diff --git a/Sony/Sony_a7RIII_SEL3514GM__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7RIII_SEL3514GM__4k_16by9_3840x2160-23.98fps.json index 198d784a..497ef99a 100644 --- a/Sony/Sony_a7RIII_SEL3514GM__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7RIII_SEL3514GM__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "User", "camera_brand": "Sony", - "camera_model": "a7RIII", + "camera_model": "Alpha 7R III", "lens_model": "SEL3514GM", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7RIII_Sigma-247-__1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a7RIII_Sigma-247-__1080p_16by9_1920x1080-100.00fps.json index b1c9d78b..45b76f0d 100644 --- a/Sony/Sony_a7RIII_Sigma-247-__1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a7RIII_Sigma-247-__1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7RIII", + "camera_model": "Alpha 7R III", "lens_model": "Sigma-247-", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7RIII_Sony 14mm__1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7RIII_Sony 14mm__1080p_16by9_1920x1080-25.00fps.json index 6517ed27..a9d63ef9 100644 --- a/Sony/Sony_a7RIII_Sony 14mm__1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7RIII_Sony 14mm__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ankur Thepade", "camera_brand": "Sony", - "camera_model": "a7RIII", + "camera_model": "Alpha 7R III", "lens_model": "Sony 14mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7RIII_Tamron 17-28_100m_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7RIII_Tamron 17-28_100m_4k_16by9_3840x2160-29.97fps.json index aee7e491..a44778f9 100644 --- a/Sony/Sony_a7RIII_Tamron 17-28_100m_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7RIII_Tamron 17-28_100m_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "刘迪", "camera_brand": "Sony", - "camera_model": "a7RIII", + "camera_model": "Alpha 7R III", "lens_model": "Tamron 17-28", "camera_setting": "100m", "calib_dimension": { diff --git a/Sony/Sony_a7RIII__FULL_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7RIII__FULL_1080p_16by9_1920x1080-50.00fps.json index 825bbdc1..9d4ce334 100644 --- a/Sony/Sony_a7RIII__FULL_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7RIII__FULL_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "FULL", "calibrated_by": "Mingyang Su", "camera_brand": "Sony", - "camera_model": "a7RIII", + "camera_model": "Alpha 7R III", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7RII_24-70_24_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7RII_24-70_24_4k_16by9_3840x2160-25.00fps.json index 73a0a417..3d719a3a 100644 --- a/Sony/Sony_a7RII_24-70_24_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7RII_24-70_24_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "宋坤宇", "camera_brand": "Sony", - "camera_model": "a7RII", + "camera_model": "Alpha 7R II", "lens_model": "24-70", "camera_setting": "24", "calib_dimension": { diff --git a/Sony/Sony_a7RII_35-2.8_m_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7RII_35-2.8_m_1080p_16by9_1920x1080-50.00fps.json index e26fd72d..936ce518 100644 --- a/Sony/Sony_a7RII_35-2.8_m_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7RII_35-2.8_m_1080p_16by9_1920x1080-50.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "OLDYE", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7RII", + "camera_model": "Alpha 7R II", "camera_setting": "m", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7RII_50F2_50M_720p_16by9_1280x720-100.00fps - 3.json b/Sony/Sony_a7RII_50F2_50M_720p_16by9_1280x720-100.00fps - 3.json index 0e015abe..b4030023 100644 --- a/Sony/Sony_a7RII_50F2_50M_720p_16by9_1280x720-100.00fps - 3.json +++ b/Sony/Sony_a7RII_50F2_50M_720p_16by9_1280x720-100.00fps - 3.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "亚里士缺德", "camera_brand": "Sony", - "camera_model": "a7RII", + "camera_model": "Alpha 7R II", "lens_model": "岩石星50F2", "camera_setting": "50M", "calib_dimension": { diff --git a/Sony/Sony_a7RII_50MMF1.8__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7RII_50MMF1.8__4k_16by9_3840x2160-29.97fps.json index 4fd7c187..22897579 100644 --- a/Sony/Sony_a7RII_50MMF1.8__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7RII_50MMF1.8__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "吴博文", "camera_brand": "Sony", - "camera_model": "a7RII", + "camera_model": "Alpha 7R II", "lens_model": "50MMF1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7RII_50MMF2_50M_720p_16by9_1280x720-100.00fps.json b/Sony/Sony_a7RII_50MMF2_50M_720p_16by9_1280x720-100.00fps.json index f6aca4ab..14f779ab 100644 --- a/Sony/Sony_a7RII_50MMF2_50M_720p_16by9_1280x720-100.00fps.json +++ b/Sony/Sony_a7RII_50MMF2_50M_720p_16by9_1280x720-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "亚里士缺德", "camera_brand": "Sony", - "camera_model": "a7RII", + "camera_model": "Alpha 7R II", "lens_model": "岩石星50MMF2", "camera_setting": "50M", "calib_dimension": { diff --git a/Sony/Sony_a7RII_50MMF2__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7RII_50MMF2__1080p_16by9_1920x1080-50.00fps.json index ebc7ce6d..a90ac0b6 100644 --- a/Sony/Sony_a7RII_50MMF2__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7RII_50MMF2__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "亚里士缺德", "camera_brand": "Sony", - "camera_model": "a7RII", + "camera_model": "Alpha 7R II", "lens_model": "岩石星50MMF2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7RII_50f2_50m_720p_16by9_1280x720-100.00fps.json b/Sony/Sony_a7RII_50f2_50m_720p_16by9_1280x720-100.00fps.json index da1cf75e..099f3e19 100644 --- a/Sony/Sony_a7RII_50f2_50m_720p_16by9_1280x720-100.00fps.json +++ b/Sony/Sony_a7RII_50f2_50m_720p_16by9_1280x720-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "亚里士缺德", "camera_brand": "Sony", - "camera_model": "a7RII", + "camera_model": "Alpha 7R II", "lens_model": "50f2", "camera_setting": "50m", "calib_dimension": { diff --git a/Sony/Sony_a7RII_MEIKE 85 1.8__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7RII_MEIKE 85 1.8__1080p_16by9_1920x1080-50.00fps.json index 2897395a..8b719b53 100644 --- a/Sony/Sony_a7RII_MEIKE 85 1.8__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7RII_MEIKE 85 1.8__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "popper-L", "camera_brand": "Sony", - "camera_model": "a7RII", + "camera_model": "Alpha 7R II", "lens_model": "MEIKE 85 1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7RII_Samyang FE AF 35mm F2.8__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7RII_Samyang FE AF 35mm F2.8__4k_16by9_3840x2160-25.00fps.json index 8f0234db..28e4cb3d 100644 --- a/Sony/Sony_a7RII_Samyang FE AF 35mm F2.8__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7RII_Samyang FE AF 35mm F2.8__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Adrian W", "camera_brand": "Sony", - "camera_model": "a7RII", + "camera_model": "Alpha 7R II", "lens_model": "Samyang FE AF 35mm F2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7RII_Sigma 24-70mm F2.8 DG DN Art for Sony E Lens__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7RII_Sigma 24-70mm F2.8 DG DN Art for Sony E Lens__4k_16by9_3840x2160-23.98fps.json index 81658574..2eee8462 100644 --- a/Sony/Sony_a7RII_Sigma 24-70mm F2.8 DG DN Art for Sony E Lens__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7RII_Sigma 24-70mm F2.8 DG DN Art for Sony E Lens__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Hetty White", "camera_brand": "Sony", - "camera_model": "a7RII", + "camera_model": "Alpha 7R II", "lens_model": "Sigma 24-70mm F2.8 DG DN Art for Sony E Lens", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7RII_Tamron 28-200 F2.8-5.6 Di III RXD_28mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7RII_Tamron 28-200 F2.8-5.6 Di III RXD_28mm_4k_16by9_3840x2160-25.00fps.json index 0198ed86..487f02ec 100644 --- a/Sony/Sony_a7RII_Tamron 28-200 F2.8-5.6 Di III RXD_28mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7RII_Tamron 28-200 F2.8-5.6 Di III RXD_28mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "28mm焦距", "calibrated_by": "moqianmei", "camera_brand": "Sony", - "camera_model": "a7RII", + "camera_model": "Alpha 7R II", "lens_model": "Tamron 28-200 F/2.8-5.6 Di III RXD", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7RIV_Temron 24 2.8 Di III OSD Tamron _16 9_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7RIV_Temron 24 2.8 Di III OSD Tamron _16 9_4k_16by9_3840x2160-25.00fps.json index 52284b10..cac492c7 100644 --- a/Sony/Sony_a7RIV_Temron 24 2.8 Di III OSD Tamron _16 9_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7RIV_Temron 24 2.8 Di III OSD Tamron _16 9_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "WIN10", "camera_brand": "Sony", - "camera_model": "a7RIV", + "camera_model": "Alpha 7R IV", "lens_model": "Temron 24 2.8 Di III OSD Tamron ", "camera_setting": "16 9", "calib_dimension": { diff --git a/Sony/Sony_a7RV_BATIS 225_XAVC S_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7RV_BATIS 225_XAVC S_4k_16by9_3840x2160-29.97fps.json index aad7c176..ccfc30f7 100644 --- a/Sony/Sony_a7RV_BATIS 225_XAVC S_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7RV_BATIS 225_XAVC S_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "25mm", "calibrated_by": "WerewolfXiu", "camera_brand": "Sony", - "camera_model": "a7RV", + "camera_model": "Alpha 7R V", "lens_model": "BATIS 2/25", "camera_setting": "XAVC S", "calib_dimension": { diff --git a/Sony/Sony_a7RV_Carl Zeiss Distagon 18mm F3.5 ZF with Metabones Speedbooster Ultra_XAVC HS , , 4_2_2, 200Mbit_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7RV_Carl Zeiss Distagon 18mm F3.5 ZF with Metabones Speedbooster Ultra_XAVC HS , , 4_2_2, 200Mbit_4k_16by9_3840x2160-50.00fps.json index b8826e17..85a2f40e 100644 --- a/Sony/Sony_a7RV_Carl Zeiss Distagon 18mm F3.5 ZF with Metabones Speedbooster Ultra_XAVC HS , , 4_2_2, 200Mbit_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7RV_Carl Zeiss Distagon 18mm F3.5 ZF with Metabones Speedbooster Ultra_XAVC HS , , 4_2_2, 200Mbit_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Dion Michael Chan", "camera_brand": "Sony", - "camera_model": "a7RV", + "camera_model": "Alpha 7R V", "lens_model": "Carl Zeiss Distagon 18mm F3.5 ZF with Metabones Speedbooster Ultra", "camera_setting": "XAVC HS , , 4:2:2, 200Mbit", "calib_dimension": { diff --git a/Sony/Sony_a7RV_SIGMA16.00mm_300_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7RV_SIGMA16.00mm_300_4k_16by9_3840x2160-50.00fps.json index a8188862..c479e88e 100644 --- a/Sony/Sony_a7RV_SIGMA16.00mm_300_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7RV_SIGMA16.00mm_300_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "BI LU", "camera_brand": "Sony", - "camera_model": "a7RV", + "camera_model": "Alpha 7R V", "lens_model": "SIGMA16.00mm", "camera_setting": "快门300", "calib_dimension": { diff --git a/Sony/Sony_a7RV_SONY 50mm F1.4__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7RV_SONY 50mm F1.4__1080p_16by9_1920x1080-59.94fps.json index 5856182e..eb977c61 100644 --- a/Sony/Sony_a7RV_SONY 50mm F1.4__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7RV_SONY 50mm F1.4__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Yuya", "camera_brand": "Sony", - "camera_model": "a7RV", + "camera_model": "Alpha 7R V", "lens_model": "SONY 50mm F1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7RV_Tamron 20-40mm F2.8 @ 20mm_XAVC HS , , 4_2_2, 200Mbit_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7RV_Tamron 20-40mm F2.8 @ 20mm_XAVC HS , , 4_2_2, 200Mbit_4k_16by9_3840x2160-50.00fps.json index 32494e5a..7c2f71a1 100644 --- a/Sony/Sony_a7RV_Tamron 20-40mm F2.8 @ 20mm_XAVC HS , , 4_2_2, 200Mbit_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7RV_Tamron 20-40mm F2.8 @ 20mm_XAVC HS , , 4_2_2, 200Mbit_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Dion Michael Chan", "camera_brand": "Sony", - "camera_model": "a7RV", + "camera_model": "Alpha 7R V", "lens_model": "Tamron 20-40mm F2.8 @ 20mm", "camera_setting": "XAVC HS , , 4:2:2, 200Mbit", "calib_dimension": { diff --git a/Sony/Sony_a7RV_seagull50mm__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7RV_seagull50mm__4k_16by9_3840x2160-50.00fps.json index c94f8585..e4214f97 100644 --- a/Sony/Sony_a7RV_seagull50mm__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7RV_seagull50mm__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "dks", "camera_brand": "Sony", - "camera_model": "a7RV", + "camera_model": "Alpha 7R V", "lens_model": "seagull50mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7R_50_50_720p_4by3_1440x1080-25.00fps.json b/Sony/Sony_a7R_50_50_720p_4by3_1440x1080-25.00fps.json index f78ea161..e1697c8c 100644 --- a/Sony/Sony_a7R_50_50_720p_4by3_1440x1080-25.00fps.json +++ b/Sony/Sony_a7R_50_50_720p_4by3_1440x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "百里棠青", "camera_brand": "Sony", - "camera_model": "a7R", + "camera_model": "Alpha 7R", "lens_model": "50", "camera_setting": "50", "calib_dimension": { diff --git a/Sony/Sony_a7SIII_105.00mm__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7SIII_105.00mm__1080p_16by9_1920x1080-59.94fps.json index 5ddb42e3..66fa1863 100644 --- a/Sony/Sony_a7SIII_105.00mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7SIII_105.00mm__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "UREKA", "camera_brand": "Sony", - "camera_model": "a7SIII", + "camera_model": "Alpha 7S III", "lens_model": "105.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7SIII_24- 105mm 68.00mm__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7SIII_24- 105mm 68.00mm__1080p_16by9_1920x1080-59.94fps.json index c83a258e..4f80602a 100644 --- a/Sony/Sony_a7SIII_24- 105mm 68.00mm__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7SIII_24- 105mm 68.00mm__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "UREKA", "camera_brand": "Sony", - "camera_model": "a7SIII", + "camera_model": "Alpha 7S III", "lens_model": "24- 105mm 68.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7SIII_Helios 44-2__C4k_1.90by1_4096x2160-24.00fps.json b/Sony/Sony_a7SIII_Helios 44-2__C4k_1.90by1_4096x2160-24.00fps.json index 30e5a7c2..5a100ddc 100644 --- a/Sony/Sony_a7SIII_Helios 44-2__C4k_1.90by1_4096x2160-24.00fps.json +++ b/Sony/Sony_a7SIII_Helios 44-2__C4k_1.90by1_4096x2160-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Zac Hallgarten", "camera_brand": "Sony", - "camera_model": "a7SIII", + "camera_model": "Alpha 7S III", "lens_model": "Helios 44-2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7SIII_Leica Elmarit-R 24mm f2.8 v2__C4k_1.90by1_4096x2160-25.00fps.json b/Sony/Sony_a7SIII_Leica Elmarit-R 24mm f2.8 v2__C4k_1.90by1_4096x2160-25.00fps.json index 6063af58..0b8657a3 100644 --- a/Sony/Sony_a7SIII_Leica Elmarit-R 24mm f2.8 v2__C4k_1.90by1_4096x2160-25.00fps.json +++ b/Sony/Sony_a7SIII_Leica Elmarit-R 24mm f2.8 v2__C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "DucDigital", "camera_brand": "Sony", - "camera_model": "a7SIII", + "camera_model": "Alpha 7S III", "lens_model": "Leica Elmarit-R 24mm f/2.8 v2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7SIII_Leica Summicron-R 50mm f2 v2__C4k_1.90by1_4096x2160-25.00fps.json b/Sony/Sony_a7SIII_Leica Summicron-R 50mm f2 v2__C4k_1.90by1_4096x2160-25.00fps.json index e3d2891b..47921070 100644 --- a/Sony/Sony_a7SIII_Leica Summicron-R 50mm f2 v2__C4k_1.90by1_4096x2160-25.00fps.json +++ b/Sony/Sony_a7SIII_Leica Summicron-R 50mm f2 v2__C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "DucDigital & Through The Glass Paris", "camera_brand": "Sony", - "camera_model": "a7SIII", + "camera_model": "Alpha 7S III", "lens_model": "Leica Summicron-R 50mm f/2 v2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7SIII_Leica Summicron-R 90mm f2 v2__C4k_1.90by1_4096x2160-25.00fps.json b/Sony/Sony_a7SIII_Leica Summicron-R 90mm f2 v2__C4k_1.90by1_4096x2160-25.00fps.json index fb3ec9de..525a3aa1 100644 --- a/Sony/Sony_a7SIII_Leica Summicron-R 90mm f2 v2__C4k_1.90by1_4096x2160-25.00fps.json +++ b/Sony/Sony_a7SIII_Leica Summicron-R 90mm f2 v2__C4k_1.90by1_4096x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "DucDigital & Through The Glass Paris", "camera_brand": "Sony", - "camera_model": "a7SIII", + "camera_model": "Alpha 7S III", "lens_model": "Leica Summicron-R 90mm f/2 v2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7SIII_Micro-Nikkor 55mm F2.8__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7SIII_Micro-Nikkor 55mm F2.8__4k_16by9_3840x2160-50.00fps.json index ed61d185..e2ee7083 100644 --- a/Sony/Sony_a7SIII_Micro-Nikkor 55mm F2.8__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7SIII_Micro-Nikkor 55mm F2.8__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Arnold.Huang", "camera_brand": "Sony", - "camera_model": "a7SIII", + "camera_model": "Alpha 7S III", "lens_model": "Micro-Nikkor 55mm F2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7SIII_Mini-Nikkor 55mm F2.8__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7SIII_Mini-Nikkor 55mm F2.8__4k_16by9_3840x2160-50.00fps.json index 55f685c0..30676a71 100644 --- a/Sony/Sony_a7SIII_Mini-Nikkor 55mm F2.8__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7SIII_Mini-Nikkor 55mm F2.8__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Arnold.Huang", "camera_brand": "Sony", - "camera_model": "a7SIII", + "camera_model": "Alpha 7S III", "lens_model": "Mini-Nikkor 55mm F2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7SIII_Nero1.5xKonica57f1.4__5k_8by3_5760x2160-59.94fps.json b/Sony/Sony_a7SIII_Nero1.5xKonica57f1.4__5k_8by3_5760x2160-59.94fps.json index f03efd07..387a71ff 100644 --- a/Sony/Sony_a7SIII_Nero1.5xKonica57f1.4__5k_8by3_5760x2160-59.94fps.json +++ b/Sony/Sony_a7SIII_Nero1.5xKonica57f1.4__5k_8by3_5760x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Zuofu Wang", "camera_brand": "Sony", - "camera_model": "a7SIII", + "camera_model": "Alpha 7S III", "lens_model": "Nero1.5xKonica57f1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7SIII_Nikkor 35mm f1.4_1100th XAVC S_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7SIII_Nikkor 35mm f1.4_1100th XAVC S_4k_16by9_3840x2160-50.00fps.json index 86a2a4b1..343db0c2 100644 --- a/Sony/Sony_a7SIII_Nikkor 35mm f1.4_1100th XAVC S_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7SIII_Nikkor 35mm f1.4_1100th XAVC S_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "James Alexander", "camera_brand": "Sony", - "camera_model": "a7SIII", + "camera_model": "Alpha 7S III", "lens_model": "Nikkor 35mm f1.4", "camera_setting": "1/100th XAVC S", "calib_dimension": { diff --git a/Sony/Sony_a7SIII_Sigma 16 - 28 - 16.00mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7SIII_Sigma 16 - 28 - 16.00mm__4k_16by9_3840x2160-25.00fps.json index 3f65b55c..04887431 100644 --- a/Sony/Sony_a7SIII_Sigma 16 - 28 - 16.00mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7SIII_Sigma 16 - 28 - 16.00mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "ben", "camera_brand": "Sony", - "camera_model": "a7SIII", + "camera_model": "Alpha 7S III", "lens_model": "Sigma 16 - 28 - 16.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7SIII_Sigma 24-70mm_24mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7SIII_Sigma 24-70mm_24mm_4k_16by9_3840x2160-25.00fps.json index 4b342075..9807d728 100644 --- a/Sony/Sony_a7SIII_Sigma 24-70mm_24mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7SIII_Sigma 24-70mm_24mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "24mm", "calibrated_by": "Eser Listana", "camera_brand": "Sony", - "camera_model": "a7SIII", + "camera_model": "Alpha 7S III", "lens_model": "Sigma 24-70mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7SIII_Sonnar FE 35mm F2.8 ZA_XAVC S @_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7SIII_Sonnar FE 35mm F2.8 ZA_XAVC S @_4k_16by9_3840x2160-59.94fps.json index 983ab7f2..e93fffd2 100644 --- a/Sony/Sony_a7SIII_Sonnar FE 35mm F2.8 ZA_XAVC S @_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7SIII_Sonnar FE 35mm F2.8 ZA_XAVC S @_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "SteadyShot Off Distortion Compensation Off", "calibrated_by": "Vladimir Kostenko", "camera_brand": "Sony", - "camera_model": "a7SIII", + "camera_model": "Alpha 7S III", "lens_model": "Sonnar FE 35mm F2.8 ZA", "camera_setting": "XAVC S @", "calib_dimension": { diff --git a/Sony/Sony_a7SIII_Sony 24-70 f2.8 G_slog3_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7SIII_Sony 24-70 f2.8 G_slog3_1080p_16by9_1920x1080-59.94fps.json index b842b61c..12a83b9e 100644 --- a/Sony/Sony_a7SIII_Sony 24-70 f2.8 G_slog3_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7SIII_Sony 24-70 f2.8 G_slog3_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "zoom 35mm", "calibrated_by": "Hello", "camera_brand": "Sony", - "camera_model": "a7SIII", + "camera_model": "Alpha 7S III", "lens_model": "Sony 24-70 f2.8 G", "camera_setting": "slog3", "calib_dimension": { diff --git a/Sony/Sony_a7SIII_Sony 24-70mm f2.8 G_slog3_1080p_16by9_1920x1080-59.94fps - Hello - 2.json b/Sony/Sony_a7SIII_Sony 24-70mm f2.8 G_slog3_1080p_16by9_1920x1080-59.94fps - Hello - 2.json index f70606df..04e8b2ac 100644 --- a/Sony/Sony_a7SIII_Sony 24-70mm f2.8 G_slog3_1080p_16by9_1920x1080-59.94fps - Hello - 2.json +++ b/Sony/Sony_a7SIII_Sony 24-70mm f2.8 G_slog3_1080p_16by9_1920x1080-59.94fps - Hello - 2.json @@ -3,7 +3,7 @@ "note": "zoom 50mm", "calibrated_by": "Hello", "camera_brand": "Sony", - "camera_model": "a7SIII", + "camera_model": "Alpha 7S III", "lens_model": "Sony 24-70mm f2.8 G", "camera_setting": "slog3", "calib_dimension": { diff --git a/Sony/Sony_a7SIII_Sony 24-70mm f2.8 G_slog3_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7SIII_Sony 24-70mm f2.8 G_slog3_1080p_16by9_1920x1080-59.94fps.json index 33d1e0a8..54c5e503 100644 --- a/Sony/Sony_a7SIII_Sony 24-70mm f2.8 G_slog3_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7SIII_Sony 24-70mm f2.8 G_slog3_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "zoom 70mm", "calibrated_by": "Hello", "camera_brand": "Sony", - "camera_model": "a7SIII", + "camera_model": "Alpha 7S III", "lens_model": "Sony 24-70mm f2.8 G", "camera_setting": "slog3", "calib_dimension": { diff --git a/Sony/Sony_a7SIII_Sony FE 1.820G_slog3_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7SIII_Sony FE 1.820G_slog3_1080p_16by9_1920x1080-59.94fps.json index 5f86c919..1cc1a49f 100644 --- a/Sony/Sony_a7SIII_Sony FE 1.820G_slog3_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7SIII_Sony FE 1.820G_slog3_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Hello", "camera_brand": "Sony", - "camera_model": "a7SIII", + "camera_model": "Alpha 7S III", "lens_model": "Sony FE 1.8/20G", "camera_setting": "slog3", "calib_dimension": { diff --git a/Sony/Sony_a7SIII_Sony Vario-Tessar T FE 24-70mm f4 ZA OSS @ 24.00mm_Sony Vario-Tessar T FE 24-70mm f4 ZA OSS Lens_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7SIII_Sony Vario-Tessar T FE 24-70mm f4 ZA OSS @ 24.00mm_Sony Vario-Tessar T FE 24-70mm f4 ZA OSS Lens_4k_16by9_3840x2160-59.94fps.json index e7f79a30..c6e54dc8 100644 --- a/Sony/Sony_a7SIII_Sony Vario-Tessar T FE 24-70mm f4 ZA OSS @ 24.00mm_Sony Vario-Tessar T FE 24-70mm f4 ZA OSS Lens_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7SIII_Sony Vario-Tessar T FE 24-70mm f4 ZA OSS @ 24.00mm_Sony Vario-Tessar T FE 24-70mm f4 ZA OSS Lens_4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Coby Mehler", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7SIII", + "camera_model": "Alpha 7S III", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7SIII_TL35.00mm__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7SIII_TL35.00mm__1080p_16by9_1920x1080-50.00fps.json index b3996f66..1a097e02 100644 --- a/Sony/Sony_a7SIII_TL35.00mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7SIII_TL35.00mm__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "REX", "camera_brand": "Sony", - "camera_model": "a7SIII", + "camera_model": "Alpha 7S III", "lens_model": "TL35.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7SIII_Tamoron 28-75 @28__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7SIII_Tamoron 28-75 @28__4k_16by9_3840x2160-23.98fps.json index a60b8a60..c20f3863 100644 --- a/Sony/Sony_a7SIII_Tamoron 28-75 @28__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7SIII_Tamoron 28-75 @28__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Nathan Jackson", "camera_brand": "Sony", - "camera_model": "a7SIII", + "camera_model": "Alpha 7S III", "lens_model": "Tamoron 28-75 @28", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7SIII_Viltrox 16.00mm_Viltrox 16mm f1.8_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7SIII_Viltrox 16.00mm_Viltrox 16mm f1.8_4k_16by9_3840x2160-59.94fps.json index b56d2815..c69262a8 100644 --- a/Sony/Sony_a7SIII_Viltrox 16.00mm_Viltrox 16mm f1.8_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7SIII_Viltrox 16.00mm_Viltrox 16mm f1.8_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "Viltrox 16mm / f1.8", "calibrated_by": "Chico Jones", "camera_brand": "Sony", - "camera_model": "a7SIII", + "camera_model": "Alpha 7S III", "lens_model": "Viltrox 16.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7SIII_sony f2.8 24-70mm G_slog3_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7SIII_sony f2.8 24-70mm G_slog3_1080p_16by9_1920x1080-59.94fps.json index 6bfd938c..a85d06a3 100644 --- a/Sony/Sony_a7SIII_sony f2.8 24-70mm G_slog3_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7SIII_sony f2.8 24-70mm G_slog3_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "zoom 24mm", "calibrated_by": "Hello", "camera_brand": "Sony", - "camera_model": "a7SIII", + "camera_model": "Alpha 7S III", "lens_model": "sony f2.8 24-70mm G", "camera_setting": "slog3", "calib_dimension": { diff --git a/Sony/Sony_a7SII_FE 1.8_50mm_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7SII_FE 1.8_50mm_1080p_16by9_1920x1080-50.00fps.json index 2d0d6dcd..1bc1b046 100644 --- a/Sony/Sony_a7SII_FE 1.8_50mm_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7SII_FE 1.8_50mm_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "50mm", "calibrated_by": "M a j i d", "camera_brand": "Sony", - "camera_model": "a7SII", + "camera_model": "Alpha 7S II", "lens_model": "FE 1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7SII_ROKINON 14MM 2.8_IBIS_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7SII_ROKINON 14MM 2.8_IBIS_1080p_16by9_1920x1080-59.94fps.json index e89895a1..79ad7cb0 100644 --- a/Sony/Sony_a7SII_ROKINON 14MM 2.8_IBIS_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7SII_ROKINON 14MM 2.8_IBIS_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "FULL FRAME", "calibrated_by": "casey fera", "camera_brand": "Sony", - "camera_model": "a7SII", + "camera_model": "Alpha 7S II", "lens_model": "ROKINON 14MM 2.8", "camera_setting": "IBIS", "calib_dimension": { diff --git a/Sony/Sony_a7SII_ROKINON 14MM F2.8_XAVC 100Mb_1080p_16by9_1920x1080-119.88fps.json b/Sony/Sony_a7SII_ROKINON 14MM F2.8_XAVC 100Mb_1080p_16by9_1920x1080-119.88fps.json index fdcf0edc..c823214d 100644 --- a/Sony/Sony_a7SII_ROKINON 14MM F2.8_XAVC 100Mb_1080p_16by9_1920x1080-119.88fps.json +++ b/Sony/Sony_a7SII_ROKINON 14MM F2.8_XAVC 100Mb_1080p_16by9_1920x1080-119.88fps.json @@ -3,7 +3,7 @@ "note": "FULL FRAME", "calibrated_by": "casey fera", "camera_brand": "Sony", - "camera_model": "a7SII", + "camera_model": "Alpha 7S II", "lens_model": "ROKINON 14MM F2.8", "camera_setting": "XAVC 100Mb", "calib_dimension": { diff --git a/Sony/Sony_a7SII_Rokinon__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7SII_Rokinon__4k_16by9_3840x2160-23.98fps.json index 6e8c2619..4262ba65 100644 --- a/Sony/Sony_a7SII_Rokinon__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7SII_Rokinon__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Willow", "camera_brand": "Sony", - "camera_model": "a7SII", + "camera_model": "Alpha 7S II", "lens_model": "Rokinon", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7S_35mm f1.8_25p_720p_4by3_1440x1080-25.00fps.json b/Sony/Sony_a7S_35mm f1.8_25p_720p_4by3_1440x1080-25.00fps.json index 161482e8..2e8d9654 100644 --- a/Sony/Sony_a7S_35mm f1.8_25p_720p_4by3_1440x1080-25.00fps.json +++ b/Sony/Sony_a7S_35mm f1.8_25p_720p_4by3_1440x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "25p", "calibrated_by": "Nathaniel Chan", "camera_brand": "Sony", - "camera_model": "a7S", + "camera_model": "Alpha 7S", "lens_model": "35mm f1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7S_FE 28-70mm F3.5 - 5.6 OSS_FHD_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7S_FE 28-70mm F3.5 - 5.6 OSS_FHD_1080p_16by9_1920x1080-50.00fps.json index 7d1aee62..fe29d299 100644 --- a/Sony/Sony_a7S_FE 28-70mm F3.5 - 5.6 OSS_FHD_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7S_FE 28-70mm F3.5 - 5.6 OSS_FHD_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Blond Panda", "camera_brand": "Sony", - "camera_model": "a7S", + "camera_model": "Alpha 7S", "lens_model": "FE 28-70mm F3.5 - 5.6 OSS", "camera_setting": "FHD", "calib_dimension": { diff --git a/Sony/Sony_a7S_Walimexpro 35 mm_Full HD_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7S_Walimexpro 35 mm_Full HD_1080p_16by9_1920x1080-50.00fps.json index 998d381d..312bb88d 100644 --- a/Sony/Sony_a7S_Walimexpro 35 mm_Full HD_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7S_Walimexpro 35 mm_Full HD_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Hartmut Lieb", "camera_brand": "Sony", - "camera_model": "a7S", + "camera_model": "Alpha 7S", "lens_model": "Walimexpro 35 mm", "camera_setting": "Full HD", "calib_dimension": { diff --git a/Sony/Sony_a7S_liguan 50__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7S_liguan 50__1080p_16by9_1920x1080-50.00fps.json index cfaf00b4..a52eb065 100644 --- a/Sony/Sony_a7S_liguan 50__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7S_liguan 50__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7S", + "camera_model": "Alpha 7S", "lens_model": "liguan 50", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7_16mm+0.75__720p_4by3_1440x1080-25.00fps.json b/Sony/Sony_a7_16mm+0.75__720p_4by3_1440x1080-25.00fps.json index d2657e16..be23568a 100644 --- a/Sony/Sony_a7_16mm+0.75__720p_4by3_1440x1080-25.00fps.json +++ b/Sony/Sony_a7_16mm+0.75__720p_4by3_1440x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Hui Zhao", "camera_brand": "Sony", - "camera_model": "a7", + "camera_model": "Alpha 7", "lens_model": "16mm+0.75", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7_7Artians__720p_4by3_1440x1080-25.00fps.json b/Sony/Sony_a7_7Artians__720p_4by3_1440x1080-25.00fps.json index 07ca3322..16990c3b 100644 --- a/Sony/Sony_a7_7Artians__720p_4by3_1440x1080-25.00fps.json +++ b/Sony/Sony_a7_7Artians__720p_4by3_1440x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Roberto De Domenico", "camera_brand": "Sony", - "camera_model": "a7", + "camera_model": "Alpha 7", "lens_model": "7Artians", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7_CHINON-AUTO f35__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7_CHINON-AUTO f35__1080p_16by9_1920x1080-50.00fps.json index 36fd5e22..b0a93b20 100644 --- a/Sony/Sony_a7_CHINON-AUTO f35__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7_CHINON-AUTO f35__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "xVoLAnD", "camera_brand": "Sony", - "camera_model": "a7", + "camera_model": "Alpha 7", "lens_model": "CHINON-AUTO f35", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7_HELIOS 44-2__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7_HELIOS 44-2__1080p_16by9_1920x1080-50.00fps.json index d6c99c32..09ba43e6 100644 --- a/Sony/Sony_a7_HELIOS 44-2__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7_HELIOS 44-2__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "xVoLAnD", "camera_brand": "Sony", - "camera_model": "a7", + "camera_model": "Alpha 7", "lens_model": "HELIOS 44-2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7_SEL50F18F_AUTO_1080p_16by9_1920x1080-25.00fps - LOUIS SANNIE - 2.json b/Sony/Sony_a7_SEL50F18F_AUTO_1080p_16by9_1920x1080-25.00fps - LOUIS SANNIE - 2.json index a01e8043..da037ebe 100644 --- a/Sony/Sony_a7_SEL50F18F_AUTO_1080p_16by9_1920x1080-25.00fps - LOUIS SANNIE - 2.json +++ b/Sony/Sony_a7_SEL50F18F_AUTO_1080p_16by9_1920x1080-25.00fps - LOUIS SANNIE - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "LOUIS SANNIE", "camera_brand": "Sony", - "camera_model": "a7", + "camera_model": "Alpha 7", "lens_model": "SEL50F18F", "camera_setting": "AUTO", "calib_dimension": { diff --git a/Sony/Sony_a7_SEL50F18F_AUTO_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7_SEL50F18F_AUTO_1080p_16by9_1920x1080-25.00fps.json index 34b5a7a6..c064b39b 100644 --- a/Sony/Sony_a7_SEL50F18F_AUTO_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7_SEL50F18F_AUTO_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "LOUIS SANNIE", "camera_brand": "Sony", - "camera_model": "a7", + "camera_model": "Alpha 7", "lens_model": "SEL50F18F", "camera_setting": "AUTO", "calib_dimension": { diff --git a/Sony/Sony_a7_VILTROX AF 20MM F2.8 FE__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7_VILTROX AF 20MM F2.8 FE__1080p_16by9_1920x1080-59.94fps.json index c7252e3e..3095229e 100644 --- a/Sony/Sony_a7_VILTROX AF 20MM F2.8 FE__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7_VILTROX AF 20MM F2.8 FE__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "王淳鹭", "camera_brand": "Sony", - "camera_model": "a7", + "camera_model": "Alpha 7", "lens_model": "VILTROX AF 20MM F2.8 FE", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7_VILTROX AF 20mm F2.8 FE 56A11__720p_4by3_1440x1080-29.97fps.json b/Sony/Sony_a7_VILTROX AF 20mm F2.8 FE 56A11__720p_4by3_1440x1080-29.97fps.json index 8f763e63..c4446c30 100644 --- a/Sony/Sony_a7_VILTROX AF 20mm F2.8 FE 56A11__720p_4by3_1440x1080-29.97fps.json +++ b/Sony/Sony_a7_VILTROX AF 20mm F2.8 FE 56A11__720p_4by3_1440x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "王淳鹭", "camera_brand": "Sony", - "camera_model": "a7", + "camera_model": "Alpha 7", "lens_model": "VILTROX AF 20mm F2.8 FE 56A11", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7_VILTROX AF 85MM F1.8 FE__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7_VILTROX AF 85MM F1.8 FE__1080p_16by9_1920x1080-59.94fps.json index 0434af94..481d7b95 100644 --- a/Sony/Sony_a7_VILTROX AF 85MM F1.8 FE__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7_VILTROX AF 85MM F1.8 FE__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "王淳鹭", "camera_brand": "Sony", - "camera_model": "a7", + "camera_model": "Alpha 7", "lens_model": "VILTROX AF 85MM F1.8 FE", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7_tamton 28-75mm__1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7_tamton 28-75mm__1080p_16by9_1920x1080-25.00fps.json index b76c471e..148298b5 100644 --- a/Sony/Sony_a7_tamton 28-75mm__1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7_tamton 28-75mm__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "sj", "camera_brand": "Sony", - "camera_model": "a7", + "camera_model": "Alpha 7", "lens_model": "tamton 28-75mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7iii_Zeiss Contax 25mmF2.8__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7iii_Zeiss Contax 25mmF2.8__4k_16by9_3840x2160-29.97fps.json index 5f77de0e..c593f1a2 100644 --- a/Sony/Sony_a7iii_Zeiss Contax 25mmF2.8__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7iii_Zeiss Contax 25mmF2.8__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Marco", "camera_brand": "Sony", - "camera_model": "a7iii", + "camera_model": "Alpha 7 III", "lens_model": "Zeiss Contax 25mmF2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIIIA_Sigma 16mm F1.4_XAVC S 100M_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7rIIIA_Sigma 16mm F1.4_XAVC S 100M_4k_16by9_3840x2160-25.00fps.json index 9860c2a6..95722930 100644 --- a/Sony/Sony_a7rIIIA_Sigma 16mm F1.4_XAVC S 100M_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7rIIIA_Sigma 16mm F1.4_XAVC S 100M_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "Super35MM mod Activaded", "calibrated_by": "Jules Joris", "camera_brand": "Sony", - "camera_model": "a7rIIIA", + "camera_model": "Alpha 7R IIIA", "lens_model": "Sigma 16mm F1.4", "camera_setting": "XAVC S / 100M", "calib_dimension": { diff --git a/Sony/Sony_a7rIII_24MM F1.8__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7rIII_24MM F1.8__1080p_16by9_1920x1080-50.00fps.json index 41a7a778..3499f476 100644 --- a/Sony/Sony_a7rIII_24MM F1.8__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7rIII_24MM F1.8__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Raikvolt", "camera_brand": "Sony", - "camera_model": "a7rIII", + "camera_model": "Alpha 7R III", "lens_model": "24MM F1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIII_28 tamron__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7rIII_28 tamron__1080p_16by9_1920x1080-50.00fps.json index cf59ab84..71c4e567 100644 --- a/Sony/Sony_a7rIII_28 tamron__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7rIII_28 tamron__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "mohamed ali mohamed", "camera_brand": "Sony", - "camera_model": "a7rIII", + "camera_model": "Alpha 7R III", "lens_model": "28 tamron", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIII_28-200mm 28mm_400s_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7rIII_28-200mm 28mm_400s_4k_16by9_3840x2160-29.97fps.json index 60ba9468..9781a599 100644 --- a/Sony/Sony_a7rIII_28-200mm 28mm_400s_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7rIII_28-200mm 28mm_400s_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Demgel Horatio", "camera_brand": "Sony", - "camera_model": "a7rIII", + "camera_model": "Alpha 7R III", "lens_model": "28-200mm 28mm", "camera_setting": "400s", "calib_dimension": { diff --git a/Sony/Sony_a7rIII_50mm__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7rIII_50mm__1080p_16by9_1920x1080-50.00fps.json index 5f4b848a..cbfa0fce 100644 --- a/Sony/Sony_a7rIII_50mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7rIII_50mm__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "servet bozoglu", "camera_brand": "Sony", - "camera_model": "a7rIII", + "camera_model": "Alpha 7R III", "lens_model": "50mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIII_90macro__1080p_16by9_1920x1080-29.97fps.json b/Sony/Sony_a7rIII_90macro__1080p_16by9_1920x1080-29.97fps.json index 53b07dca..3929ba0b 100644 --- a/Sony/Sony_a7rIII_90macro__1080p_16by9_1920x1080-29.97fps.json +++ b/Sony/Sony_a7rIII_90macro__1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "袁文彬", "camera_brand": "Sony", - "camera_model": "a7rIII", + "camera_model": "Alpha 7R III", "lens_model": "90macro", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIII_FE 28-70 F3.5__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7rIII_FE 28-70 F3.5__4k_16by9_3840x2160-29.97fps.json index 580bc5c3..0417d3a0 100644 --- a/Sony/Sony_a7rIII_FE 28-70 F3.5__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7rIII_FE 28-70 F3.5__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Robert Lozoya", "camera_brand": "Sony", - "camera_model": "a7rIII", + "camera_model": "Alpha 7R III", "lens_model": "FE 28-70 F3.5", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIII_FE 3.5 28-70__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7rIII_FE 3.5 28-70__4k_16by9_3840x2160-29.97fps.json index 8cd6e8b0..43afd345 100644 --- a/Sony/Sony_a7rIII_FE 3.5 28-70__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7rIII_FE 3.5 28-70__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Robert Lozoya", "camera_brand": "Sony", - "camera_model": "a7rIII", + "camera_model": "Alpha 7R III", "lens_model": "FE 3.5 28-70", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIII_FE 424-105 G 0SS__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7rIII_FE 424-105 G 0SS__1080p_16by9_1920x1080-50.00fps.json index f60674e4..7080b7b5 100644 --- a/Sony/Sony_a7rIII_FE 424-105 G 0SS__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7rIII_FE 424-105 G 0SS__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Win", "camera_brand": "Sony", - "camera_model": "a7rIII", + "camera_model": "Alpha 7R III", "lens_model": "FE 4/24-105 G 0SS", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIII_SEL2470GM_24mm_1080p_16by9_1920x1080-29.97fps.json b/Sony/Sony_a7rIII_SEL2470GM_24mm_1080p_16by9_1920x1080-29.97fps.json index e9c9b54b..5392e53b 100644 --- a/Sony/Sony_a7rIII_SEL2470GM_24mm_1080p_16by9_1920x1080-29.97fps.json +++ b/Sony/Sony_a7rIII_SEL2470GM_24mm_1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "24mm", "calibrated_by": "Hendrik", "camera_brand": "Sony", - "camera_model": "a7rIII", + "camera_model": "Alpha 7R III", "lens_model": "SEL2470GM", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIII_Sigma__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7rIII_Sigma__1080p_16by9_1920x1080-50.00fps.json index 274217eb..a4ef3920 100644 --- a/Sony/Sony_a7rIII_Sigma__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7rIII_Sigma__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ege Arda", "camera_brand": "Sony", - "camera_model": "a7rIII", + "camera_model": "Alpha 7R III", "lens_model": "Sigma", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIII_Sony 24-240__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7rIII_Sony 24-240__1080p_16by9_1920x1080-59.94fps.json index fcc36c98..6551a066 100644 --- a/Sony/Sony_a7rIII_Sony 24-240__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7rIII_Sony 24-240__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Irina Morozova", "camera_brand": "Sony", - "camera_model": "a7rIII", + "camera_model": "Alpha 7R III", "lens_model": "Sony 24-240", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIII_Sony FE 1.435 GM__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7rIII_Sony FE 1.435 GM__4k_16by9_3840x2160-23.98fps.json index 243649c4..771e01f3 100644 --- a/Sony/Sony_a7rIII_Sony FE 1.435 GM__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7rIII_Sony FE 1.435 GM__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Digital Storyteller Ink", "camera_brand": "Sony", - "camera_model": "a7rIII", + "camera_model": "Alpha 7R III", "lens_model": "Sony FE 1.4/35 GM", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIII_Sony FE 16-35mm f2.8 GM__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7rIII_Sony FE 16-35mm f2.8 GM__1080p_16by9_1920x1080-50.00fps.json index 16752ea9..6ef21dcb 100644 --- a/Sony/Sony_a7rIII_Sony FE 16-35mm f2.8 GM__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7rIII_Sony FE 16-35mm f2.8 GM__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "David Rautenbach", "camera_brand": "Sony", - "camera_model": "a7rIII", + "camera_model": "Alpha 7R III", "lens_model": "Sony FE 16-35mm f2.8 GM", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIII_Sony FE 16-35mm f2.8 GM__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7rIII_Sony FE 16-35mm f2.8 GM__4k_16by9_3840x2160-25.00fps.json index 4f3d9cad..7615b542 100644 --- a/Sony/Sony_a7rIII_Sony FE 16-35mm f2.8 GM__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7rIII_Sony FE 16-35mm f2.8 GM__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "David Rautenbach", "camera_brand": "Sony", - "camera_model": "a7rIII", + "camera_model": "Alpha 7R III", "lens_model": "Sony FE 16-35mm f2.8 GM", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIII_TAMRON 28-200mm 28mm_1200s_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7rIII_TAMRON 28-200mm 28mm_1200s_4k_16by9_3840x2160-29.97fps.json index 2649a150..73685eb8 100644 --- a/Sony/Sony_a7rIII_TAMRON 28-200mm 28mm_1200s_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7rIII_TAMRON 28-200mm 28mm_1200s_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Demgel Horatio", "camera_brand": "Sony", - "camera_model": "a7rIII", + "camera_model": "Alpha 7R III", "lens_model": "TAMRON 28-200mm 28mm", "camera_setting": "1/200s", "calib_dimension": { diff --git a/Sony/Sony_a7rIII_Tamron 18300__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7rIII_Tamron 18300__4k_16by9_3840x2160-25.00fps.json index 20b09765..09b49be6 100644 --- a/Sony/Sony_a7rIII_Tamron 18300__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7rIII_Tamron 18300__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "anan", "camera_brand": "Sony", - "camera_model": "a7rIII", + "camera_model": "Alpha 7R III", "lens_model": "Tamron 18300", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIII_Tamron 28-75_P_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7rIII_Tamron 28-75_P_1080p_16by9_1920x1080-25.00fps.json index a4f2845b..78b3656f 100644 --- a/Sony/Sony_a7rIII_Tamron 28-75_P_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7rIII_Tamron 28-75_P_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "GM001", "camera_brand": "Sony", - "camera_model": "a7rIII", + "camera_model": "Alpha 7R III", "lens_model": "Tamron 28-75", "camera_setting": "P", "calib_dimension": { diff --git a/Sony/Sony_a7rIII_Tamron 28-75mm 28mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7rIII_Tamron 28-75mm 28mm__4k_16by9_3840x2160-25.00fps.json index ac6716ef..0411c47b 100644 --- a/Sony/Sony_a7rIII_Tamron 28-75mm 28mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7rIII_Tamron 28-75mm 28mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "LX", "camera_brand": "Sony", - "camera_model": "a7rIII", + "camera_model": "Alpha 7R III", "lens_model": "Tamron 28-75mm 28mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIII_ZEISS FE 2.8 35__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7rIII_ZEISS FE 2.8 35__4k_16by9_3840x2160-23.98fps.json index 7c323527..e1b282ad 100644 --- a/Sony/Sony_a7rIII_ZEISS FE 2.8 35__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7rIII_ZEISS FE 2.8 35__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Tee Xie", "camera_brand": "Sony", - "camera_model": "a7rIII", + "camera_model": "Alpha 7R III", "lens_model": "ZEISS FE 2.8 / 35", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIII_sel50f18f__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7rIII_sel50f18f__4k_16by9_3840x2160-25.00fps.json index 15af1c1a..c330b25a 100644 --- a/Sony/Sony_a7rIII_sel50f18f__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7rIII_sel50f18f__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "servet bozoglu", "camera_brand": "Sony", - "camera_model": "a7rIII", + "camera_model": "Alpha 7R III", "lens_model": "sel50f18f", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIII_sigma dg dn 28-70 f2.8__1080p_16by9_1920x1080-29.97fps.json b/Sony/Sony_a7rIII_sigma dg dn 28-70 f2.8__1080p_16by9_1920x1080-29.97fps.json index 952e5918..e6984135 100644 --- a/Sony/Sony_a7rIII_sigma dg dn 28-70 f2.8__1080p_16by9_1920x1080-29.97fps.json +++ b/Sony/Sony_a7rIII_sigma dg dn 28-70 f2.8__1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "王鹏", "camera_brand": "Sony", - "camera_model": "a7rIII", + "camera_model": "Alpha 7R III", "lens_model": "sigma dg dn 28-70 f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIII_tamron 28-200 28mm_100_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7rIII_tamron 28-200 28mm_100_4k_16by9_3840x2160-29.97fps.json index 04b25a95..f1b97d16 100644 --- a/Sony/Sony_a7rIII_tamron 28-200 28mm_100_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7rIII_tamron 28-200 28mm_100_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "100快门", "calibrated_by": "Demgel Horatio", "camera_brand": "Sony", - "camera_model": "a7rIII", + "camera_model": "Alpha 7R III", "lens_model": "tamron 28-200 28mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIII_zeiss 18_wanshaoziqu_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7rIII_zeiss 18_wanshaoziqu_4k_16by9_3840x2160-25.00fps.json index 5dba4911..a34193f3 100644 --- a/Sony/Sony_a7rIII_zeiss 18_wanshaoziqu_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7rIII_zeiss 18_wanshaoziqu_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "wanshaoziqu", "calibrated_by": "王玥", "camera_brand": "Sony", - "camera_model": "a7rIII", + "camera_model": "Alpha 7R III", "lens_model": "zeiss 18", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rII_28F2_P_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7rII_28F2_P_1080p_16by9_1920x1080-50.00fps.json index 01566932..307de126 100644 --- a/Sony/Sony_a7rII_28F2_P_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7rII_28F2_P_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "马建军", "camera_brand": "Sony", - "camera_model": "a7rII", + "camera_model": "Alpha 7R II", "lens_model": "28F2", "camera_setting": "P", "calib_dimension": { diff --git a/Sony/Sony_a7rII_7.5mm f2_apsc 25_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7rII_7.5mm f2_apsc 25_4k_16by9_3840x2160-25.00fps.json index af07ff0a..60573805 100644 --- a/Sony/Sony_a7rII_7.5mm f2_apsc 25_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7rII_7.5mm f2_apsc 25_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "SUMGLE", "camera_brand": "Sony", - "camera_model": "a7rII", + "camera_model": "Alpha 7R II", "lens_model": "7.5mm f2", "camera_setting": "apsc 25", "calib_dimension": { diff --git a/Sony/Sony_a7rII_7.5mm_V1_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7rII_7.5mm_V1_4k_16by9_3840x2160-25.00fps.json index be9d9770..f2d32652 100644 --- a/Sony/Sony_a7rII_7.5mm_V1_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7rII_7.5mm_V1_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "SUMGLE", "camera_brand": "Sony", - "camera_model": "a7rII", + "camera_model": "Alpha 7R II", "lens_model": "7.5mm", "camera_setting": "V1", "calib_dimension": { diff --git a/Sony/Sony_a7rII_Canon FD 50mm f1.4__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7rII_Canon FD 50mm f1.4__1080p_16by9_1920x1080-59.94fps.json index b7810eb0..4dd057d9 100644 --- a/Sony/Sony_a7rII_Canon FD 50mm f1.4__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7rII_Canon FD 50mm f1.4__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "UĞUR ALTINSOY", "camera_brand": "Sony", - "camera_model": "a7rII", + "camera_model": "Alpha 7R II", "lens_model": "Canon FD 50mm f/1.4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rII_EF-E 35MM F1.4_XAVCS_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7rII_EF-E 35MM F1.4_XAVCS_4k_16by9_3840x2160-25.00fps.json index 299b7b8a..c406360f 100644 --- a/Sony/Sony_a7rII_EF-E 35MM F1.4_XAVCS_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7rII_EF-E 35MM F1.4_XAVCS_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "", "camera_brand": "Sony", - "camera_model": "a7rII", + "camera_model": "Alpha 7R II", "lens_model": "EF-E 35MM F1.4", "camera_setting": "XAVCS", "calib_dimension": { diff --git a/Sony/Sony_a7rII_Laowa 9mm f4.5_24 fps_4k_16by9_3840x2160-0.00fps.json b/Sony/Sony_a7rII_Laowa 9mm f4.5_24 fps_4k_16by9_3840x2160-0.00fps.json index c747d25d..f21cd397 100644 --- a/Sony/Sony_a7rII_Laowa 9mm f4.5_24 fps_4k_16by9_3840x2160-0.00fps.json +++ b/Sony/Sony_a7rII_Laowa 9mm f4.5_24 fps_4k_16by9_3840x2160-0.00fps.json @@ -3,7 +3,7 @@ "note": "Test Calibration-1", "calibrated_by": "WPF", "camera_brand": "Sony", - "camera_model": "a7rII", + "camera_model": "Alpha 7R II", "lens_model": "Laowa 9mm f4.5", "camera_setting": "24 fps", "calibrator_version": "0.2.1-alpha", diff --git a/Sony/Sony_a7rII_SONY 10-20 f4_APSC 10MM_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7rII_SONY 10-20 f4_APSC 10MM_4k_16by9_3840x2160-25.00fps.json index f2572c5d..479f9e13 100644 --- a/Sony/Sony_a7rII_SONY 10-20 f4_APSC 10MM_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7rII_SONY 10-20 f4_APSC 10MM_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "APSC 10MM", "calibrated_by": "SUMGLE", "camera_brand": "Sony", - "camera_model": "a7rII", + "camera_model": "Alpha 7R II", "lens_model": "SONY 10-20 f4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rII_Samyang 14mm f2.8_cine t3.1_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7rII_Samyang 14mm f2.8_cine t3.1_4k_16by9_3840x2160-25.00fps.json index 156ae23a..fd3b15fa 100644 --- a/Sony/Sony_a7rII_Samyang 14mm f2.8_cine t3.1_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7rII_Samyang 14mm f2.8_cine t3.1_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "cine t3.1", "calibrated_by": "SUMGLE", "camera_brand": "Sony", - "camera_model": "a7rII", + "camera_model": "Alpha 7R II", "lens_model": "Samyang 14mm f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rII_Sigma 24-70mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7rII_Sigma 24-70mm__4k_16by9_3840x2160-23.98fps.json index 8264d471..604ac420 100644 --- a/Sony/Sony_a7rII_Sigma 24-70mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7rII_Sigma 24-70mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Zhanyar7", "camera_brand": "Sony", - "camera_model": "a7rII", + "camera_model": "Alpha 7R II", "lens_model": "Sigma 24-70mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rII_Sigma 24-70mm_x1920_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7rII_Sigma 24-70mm_x1920_1080p_16by9_1920x1080-59.94fps.json index 7c30bfc4..e450dd5d 100644 --- a/Sony/Sony_a7rII_Sigma 24-70mm_x1920_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7rII_Sigma 24-70mm_x1920_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Zhanyar7", "camera_brand": "Sony", - "camera_model": "a7rII", + "camera_model": "Alpha 7R II", "lens_model": "Sigma 24-70mm", "camera_setting": "x1920", "calib_dimension": { diff --git a/Sony/Sony_a7rII_Sony 24-240mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7rII_Sony 24-240mm__4k_16by9_3840x2160-25.00fps.json index 17d3d645..4f917cb2 100644 --- a/Sony/Sony_a7rII_Sony 24-240mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7rII_Sony 24-240mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "blogtrip", "camera_brand": "Sony", - "camera_model": "a7rII", + "camera_model": "Alpha 7R II", "lens_model": "Sony 24-240mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rII_TTArtisan 7.5mm F2_full_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7rII_TTArtisan 7.5mm F2_full_4k_16by9_3840x2160-25.00fps.json index 91f720c3..98eb6302 100644 --- a/Sony/Sony_a7rII_TTArtisan 7.5mm F2_full_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7rII_TTArtisan 7.5mm F2_full_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "SUMGLE", "camera_brand": "Sony", - "camera_model": "a7rII", + "camera_model": "Alpha 7R II", "lens_model": "TTArtisan 7.5mm F2", "camera_setting": "full", "calib_dimension": { diff --git a/Sony/Sony_a7rII_TTArtisan 7.5mm F2_s35_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7rII_TTArtisan 7.5mm F2_s35_4k_16by9_3840x2160-25.00fps.json index 3ba8b4bd..7d473071 100644 --- a/Sony/Sony_a7rII_TTArtisan 7.5mm F2_s35_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7rII_TTArtisan 7.5mm F2_s35_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "SUMGLE", "camera_brand": "Sony", - "camera_model": "a7rII", + "camera_model": "Alpha 7R II", "lens_model": "TTArtisan 7.5mm F2", "camera_setting": "s35", "calib_dimension": { diff --git a/Sony/Sony_a7rII__12.5MM_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7rII__12.5MM_4k_16by9_3840x2160-25.00fps.json index c1c78e6d..375259b5 100644 --- a/Sony/Sony_a7rII__12.5MM_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7rII__12.5MM_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "12.5MM", "calibrated_by": "SUMGLE", "camera_brand": "Sony", - "camera_model": "a7rII", + "camera_model": "Alpha 7R II", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rII__APSC 20MM_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7rII__APSC 20MM_4k_16by9_3840x2160-25.00fps.json index edc2db10..fbdf6a37 100644 --- a/Sony/Sony_a7rII__APSC 20MM_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7rII__APSC 20MM_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "APSC 20MM", "calibrated_by": "SUMGLE", "camera_brand": "Sony", - "camera_model": "a7rII", + "camera_model": "Alpha 7R II", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rII_e 18-200 f3.5__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7rII_e 18-200 f3.5__1080p_16by9_1920x1080-59.94fps.json index f685d156..e2997d56 100644 --- a/Sony/Sony_a7rII_e 18-200 f3.5__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7rII_e 18-200 f3.5__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "涂涂质", "camera_brand": "Sony", - "camera_model": "a7rII", + "camera_model": "Alpha 7R II", "lens_model": "e 18-200 f3.5", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rII_f2.8 35mm_m_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7rII_f2.8 35mm_m_1080p_16by9_1920x1080-50.00fps.json index c6346dc7..7842eaa6 100644 --- a/Sony/Sony_a7rII_f2.8 35mm_m_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7rII_f2.8 35mm_m_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "OLDYE", "camera_brand": "Sony", - "camera_model": "a7rII", + "camera_model": "Alpha 7R II", "lens_model": "f2.8 35mm", "camera_setting": "m", "calib_dimension": { diff --git a/Sony/Sony_a7rII_yongnou 35 f2__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7rII_yongnou 35 f2__4k_16by9_3840x2160-29.97fps.json index a9d18c36..edc08afd 100644 --- a/Sony/Sony_a7rII_yongnou 35 f2__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7rII_yongnou 35 f2__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "lnlay", "camera_brand": "Sony", - "camera_model": "a7rII", + "camera_model": "Alpha 7R II", "lens_model": "yongnou 35 f2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rII_zeiss batis_25mm_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7rII_zeiss batis_25mm_1080p_16by9_1920x1080-50.00fps.json index 74199ab7..57c42cb8 100644 --- a/Sony/Sony_a7rII_zeiss batis_25mm_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7rII_zeiss batis_25mm_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "famix", "camera_brand": "Sony", - "camera_model": "a7rII", + "camera_model": "Alpha 7R II", "lens_model": "zeiss batis", "camera_setting": "25mm", "calib_dimension": { diff --git a/Sony/Sony_a7rIV_20mm__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7rIV_20mm__4k_16by9_3840x2160-29.97fps.json index 8fa03b91..fcb99cae 100644 --- a/Sony/Sony_a7rIV_20mm__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7rIV_20mm__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7rIV", + "camera_model": "Alpha 7R IV", "lens_model": "20mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIV_24-105__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7rIV_24-105__1080p_16by9_1920x1080-50.00fps.json index 2b84646e..74eb5a32 100644 --- a/Sony/Sony_a7rIV_24-105__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7rIV_24-105__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "LENOVO", "camera_brand": "Sony", - "camera_model": "a7rIV", + "camera_model": "Alpha 7R IV", "lens_model": "24-105", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIV_24-105__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7rIV_24-105__4k_16by9_3840x2160-25.00fps.json index 937bd2f3..1120d508 100644 --- a/Sony/Sony_a7rIV_24-105__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7rIV_24-105__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "LENOVO", "camera_brand": "Sony", - "camera_model": "a7rIV", + "camera_model": "Alpha 7R IV", "lens_model": "24-105", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIV_FE 2.824-7 GM__1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a7rIV_FE 2.824-7 GM__1080p_16by9_1920x1080-100.00fps.json index 1d018eeb..50c79457 100644 --- a/Sony/Sony_a7rIV_FE 2.824-7 GM__1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a7rIV_FE 2.824-7 GM__1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "890705ab", "camera_brand": "Sony", - "camera_model": "a7rIV", + "camera_model": "Alpha 7R IV", "lens_model": "FE 2.8/24-7 GM", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIV_FE 2.824-70 GM__1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a7rIV_FE 2.824-70 GM__1080p_16by9_1920x1080-100.00fps.json index 7743b283..efd70395 100644 --- a/Sony/Sony_a7rIV_FE 2.824-70 GM__1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a7rIV_FE 2.824-70 GM__1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "890705ab", "camera_brand": "Sony", - "camera_model": "a7rIV", + "camera_model": "Alpha 7R IV", "lens_model": "FE 2.8/24-70 GM", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIV_FE4_12_24G__1080p_16by9_1920x1080-29.97fps.json b/Sony/Sony_a7rIV_FE4_12_24G__1080p_16by9_1920x1080-29.97fps.json index 13de632f..6baa15aa 100644 --- a/Sony/Sony_a7rIV_FE4_12_24G__1080p_16by9_1920x1080-29.97fps.json +++ b/Sony/Sony_a7rIV_FE4_12_24G__1080p_16by9_1920x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Mtaka13", "camera_brand": "Sony", - "camera_model": "a7rIV", + "camera_model": "Alpha 7R IV", "lens_model": "FE4_12_24G", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIV_SEL35F18F__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7rIV_SEL35F18F__4k_16by9_3840x2160-29.97fps.json index e5ad816c..74619ae9 100644 --- a/Sony/Sony_a7rIV_SEL35F18F__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7rIV_SEL35F18F__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "maki", "camera_brand": "Sony", - "camera_model": "a7rIV", + "camera_model": "Alpha 7R IV", "lens_model": "SEL35F18F", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIV_Sigma 20mm 1_1.4 DG__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7rIV_Sigma 20mm 1_1.4 DG__4k_16by9_3840x2160-25.00fps.json index 483f36d7..0ae6d2be 100644 --- a/Sony/Sony_a7rIV_Sigma 20mm 1_1.4 DG__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7rIV_Sigma 20mm 1_1.4 DG__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Mar tin", "camera_brand": "Sony", - "camera_model": "a7rIV", + "camera_model": "Alpha 7R IV", "lens_model": "Sigma 20mm 1:1.4 DG", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIV_Sigma 20mm1_1.4 DG__1080p_16by9_1920x1080-100.00fps.json b/Sony/Sony_a7rIV_Sigma 20mm1_1.4 DG__1080p_16by9_1920x1080-100.00fps.json index be2f6ac2..46db22e5 100644 --- a/Sony/Sony_a7rIV_Sigma 20mm1_1.4 DG__1080p_16by9_1920x1080-100.00fps.json +++ b/Sony/Sony_a7rIV_Sigma 20mm1_1.4 DG__1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Mar tin", "camera_brand": "Sony", - "camera_model": "a7rIV", + "camera_model": "Alpha 7R IV", "lens_model": "Sigma 20mm1:1.4 DG", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rIV_Sony 20-70 F4 G_super35_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7rIV_Sony 20-70 F4 G_super35_4k_16by9_3840x2160-29.97fps.json index 67c4d7b2..02ac5b30 100644 --- a/Sony/Sony_a7rIV_Sony 20-70 F4 G_super35_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7rIV_Sony 20-70 F4 G_super35_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "20mm", "calibrated_by": "csf", "camera_brand": "Sony", - "camera_model": "a7rIV", + "camera_model": "Alpha 7R IV", "lens_model": "Sony 20-70 F4 G", "camera_setting": "super35", "calib_dimension": { diff --git a/Sony/Sony_a7rIV_Sony 85F14GM_30_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7rIV_Sony 85F14GM_30_4k_16by9_3840x2160-29.97fps.json index 5a6d83d0..32cec8f2 100644 --- a/Sony/Sony_a7rIV_Sony 85F14GM_30_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7rIV_Sony 85F14GM_30_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jeffery Chuang", "camera_brand": "Sony", - "camera_model": "a7rIV", + "camera_model": "Alpha 7R IV", "lens_model": "Sony 85F14GM", "camera_setting": "30", "calib_dimension": { diff --git a/Sony/Sony_a7rV_7Artisans 7.5mm f2.8__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7rV_7Artisans 7.5mm f2.8__4k_16by9_3840x2160-59.94fps.json index 94ca0dd2..f4c9595e 100644 --- a/Sony/Sony_a7rV_7Artisans 7.5mm f2.8__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7rV_7Artisans 7.5mm f2.8__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Carter Edwards", "camera_brand": "Sony", - "camera_model": "a7rV", + "camera_model": "Alpha 7R V", "lens_model": "7Artisans 7.5mm f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rV_FE 24-70mm f2.8 GM_23.97fps Zoom 24mm APS-C SS Off_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7rV_FE 24-70mm f2.8 GM_23.97fps Zoom 24mm APS-C SS Off_4k_16by9_3840x2160-23.98fps.json index 6b0352e7..8f1d9ca4 100644 --- a/Sony/Sony_a7rV_FE 24-70mm f2.8 GM_23.97fps Zoom 24mm APS-C SS Off_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7rV_FE 24-70mm f2.8 GM_23.97fps Zoom 24mm APS-C SS Off_4k_16by9_3840x2160-23.98fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Paul Chelmis", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7rV", + "camera_model": "Alpha 7R V", "camera_setting": "23.97fps / Zoom 24mm / APS-C / SS Off", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7rV_FE 24-70mm f2.8 GM_23.97fps Zoom 35mm APS-C SS Off_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7rV_FE 24-70mm f2.8 GM_23.97fps Zoom 35mm APS-C SS Off_4k_16by9_3840x2160-23.98fps.json index a090f438..4f39203f 100644 --- a/Sony/Sony_a7rV_FE 24-70mm f2.8 GM_23.97fps Zoom 35mm APS-C SS Off_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7rV_FE 24-70mm f2.8 GM_23.97fps Zoom 35mm APS-C SS Off_4k_16by9_3840x2160-23.98fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Paul Chelmis", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7rV", + "camera_model": "Alpha 7R V", "camera_setting": "23.97fps / Zoom 35mm / APS-C / SS Off", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7rV_FE 24-70mm f2.8 GM_23.97fps Zoom 50mm APS-C SS Off_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7rV_FE 24-70mm f2.8 GM_23.97fps Zoom 50mm APS-C SS Off_4k_16by9_3840x2160-23.98fps.json index 590bc229..e8496781 100644 --- a/Sony/Sony_a7rV_FE 24-70mm f2.8 GM_23.97fps Zoom 50mm APS-C SS Off_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7rV_FE 24-70mm f2.8 GM_23.97fps Zoom 50mm APS-C SS Off_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "a7rV", "calibrated_by": "Paul Chelmis", "camera_brand": "Sony", - "camera_model": "a7rV", + "camera_model": "Alpha 7R V", "lens_model": "FE 24-70mm f2.8 GM", "camera_setting": "23.97fps / Zoom 50mm / APS-C / SS Off", "calib_dimension": { diff --git a/Sony/Sony_a7rV_FE 24-70mm f2.8 GM_23.97fps Zoom 70mm APS-C SS Off_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7rV_FE 24-70mm f2.8 GM_23.97fps Zoom 70mm APS-C SS Off_4k_16by9_3840x2160-23.98fps.json index 63f7825f..30d00893 100644 --- a/Sony/Sony_a7rV_FE 24-70mm f2.8 GM_23.97fps Zoom 70mm APS-C SS Off_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7rV_FE 24-70mm f2.8 GM_23.97fps Zoom 70mm APS-C SS Off_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "a7rV", "calibrated_by": "Paul Chelmis", "camera_brand": "Sony", - "camera_model": "a7rV", + "camera_model": "Alpha 7R V", "lens_model": "FE 24-70mm f2.8 GM", "camera_setting": "23.97fps / Zoom 70mm / APS-C / SS Off", "calib_dimension": { diff --git a/Sony/Sony_a7rV_Laowa 35mm Nanomorph_APS-C_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7rV_Laowa 35mm Nanomorph_APS-C_4k_16by9_3840x2160-23.98fps.json index 9734bc67..b08b665f 100644 --- a/Sony/Sony_a7rV_Laowa 35mm Nanomorph_APS-C_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7rV_Laowa 35mm Nanomorph_APS-C_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Matt Likens", "camera_brand": "Sony", - "camera_model": "a7rV", + "camera_model": "Alpha 7R V", "lens_model": "Laowa 35mm Nanomorph", "camera_setting": "APS-C", "calib_dimension": { diff --git a/Sony/Sony_a7rV_Laowa 35mm Nanomorph_APS-C_5k_8by3_5760x2160-23.98fps.json b/Sony/Sony_a7rV_Laowa 35mm Nanomorph_APS-C_5k_8by3_5760x2160-23.98fps.json index 62af1e55..e62e5cc2 100644 --- a/Sony/Sony_a7rV_Laowa 35mm Nanomorph_APS-C_5k_8by3_5760x2160-23.98fps.json +++ b/Sony/Sony_a7rV_Laowa 35mm Nanomorph_APS-C_5k_8by3_5760x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "1.5 HZ Stretch", "calibrated_by": "Matt Likens", "camera_brand": "Sony", - "camera_model": "a7rV", + "camera_model": "Alpha 7R V", "lens_model": "Laowa 35mm Nanomorph", "camera_setting": "APS-C", "calib_dimension": { diff --git a/Sony/Sony_a7rV_SIGMA 28-70mm F2.8 DG DN _ Contemporary @28mm_28mm_6k_16by9_7680x4320-23.98fps.json b/Sony/Sony_a7rV_SIGMA 28-70mm F2.8 DG DN _ Contemporary @28mm_28mm_6k_16by9_7680x4320-23.98fps.json index 75924bea..8b1cd727 100644 --- a/Sony/Sony_a7rV_SIGMA 28-70mm F2.8 DG DN _ Contemporary @28mm_28mm_6k_16by9_7680x4320-23.98fps.json +++ b/Sony/Sony_a7rV_SIGMA 28-70mm F2.8 DG DN _ Contemporary @28mm_28mm_6k_16by9_7680x4320-23.98fps.json @@ -3,7 +3,7 @@ "note": "IBIS OFF", "calibrated_by": "Son Gallery", "camera_brand": "Sony", - "camera_model": "a7rV", + "camera_model": "Alpha 7R V", "lens_model": "SIGMA 28-70mm F2.8 DG DN | Contemporary @28mm", "camera_setting": "28mm", "calib_dimension": { diff --git a/Sony/Sony_a7rV_SIGMA 28-70mm F2.8 DG DN _ Contemporary @35mm_35mm_6k_16by9_7680x4320-23.98fps.json b/Sony/Sony_a7rV_SIGMA 28-70mm F2.8 DG DN _ Contemporary @35mm_35mm_6k_16by9_7680x4320-23.98fps.json index ada3b49e..4b31be78 100644 --- a/Sony/Sony_a7rV_SIGMA 28-70mm F2.8 DG DN _ Contemporary @35mm_35mm_6k_16by9_7680x4320-23.98fps.json +++ b/Sony/Sony_a7rV_SIGMA 28-70mm F2.8 DG DN _ Contemporary @35mm_35mm_6k_16by9_7680x4320-23.98fps.json @@ -3,7 +3,7 @@ "note": "IBIS OFF", "calibrated_by": "Son Gallery", "camera_brand": "Sony", - "camera_model": "a7rV", + "camera_model": "Alpha 7R V", "lens_model": "SIGMA 28-70mm F2.8 DG DN | Contemporary @35mm", "camera_setting": "35mm", "calib_dimension": { diff --git a/Sony/Sony_a7rV_SIGMA 28-70mm F2.8 DG DN _ Contemporary @70mm_70mm_6k_16by9_7680x4320-23.98fps.json b/Sony/Sony_a7rV_SIGMA 28-70mm F2.8 DG DN _ Contemporary @70mm_70mm_6k_16by9_7680x4320-23.98fps.json index 69c811fc..9b8f7ad6 100644 --- a/Sony/Sony_a7rV_SIGMA 28-70mm F2.8 DG DN _ Contemporary @70mm_70mm_6k_16by9_7680x4320-23.98fps.json +++ b/Sony/Sony_a7rV_SIGMA 28-70mm F2.8 DG DN _ Contemporary @70mm_70mm_6k_16by9_7680x4320-23.98fps.json @@ -3,7 +3,7 @@ "note": "IBIS OFF", "calibrated_by": "Son Gallery", "camera_brand": "Sony", - "camera_model": "a7rV", + "camera_model": "Alpha 7R V", "lens_model": "SIGMA 28-70mm F2.8 DG DN | Contemporary @70mm", "camera_setting": "70mm", "calib_dimension": { diff --git a/Sony/Sony_a7rV_Sigma 16-28_ 29.97_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7rV_Sigma 16-28_ 29.97_4k_16by9_3840x2160-29.97fps.json index 4e092339..f34c2d27 100644 --- a/Sony/Sony_a7rV_Sigma 16-28_ 29.97_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7rV_Sigma 16-28_ 29.97_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "@16mm", "calibrated_by": "fitzpb", "camera_brand": "Sony", - "camera_model": "a7rV", + "camera_model": "Alpha 7R V", "lens_model": "Sigma 16-28", "camera_setting": "/ 29.97", "calib_dimension": { diff --git a/Sony/Sony_a7rV_Sigma ART 35mm 1.4_Full Frame_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7rV_Sigma ART 35mm 1.4_Full Frame_4k_16by9_3840x2160-25.00fps.json index a3356912..b5f7cfd1 100644 --- a/Sony/Sony_a7rV_Sigma ART 35mm 1.4_Full Frame_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7rV_Sigma ART 35mm 1.4_Full Frame_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "1/50 ss slog-3", "calibrated_by": "Simon Ford", "camera_brand": "Sony", - "camera_model": "a7rV", + "camera_model": "Alpha 7R V", "lens_model": "Sigma ART 35mm 1.4", "camera_setting": "Full Frame", "calib_dimension": { diff --git a/Sony/Sony_a7rV_sigma 14-24, 14mm_60, stablization off_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7rV_sigma 14-24, 14mm_60, stablization off_4k_16by9_3840x2160-59.94fps.json index e67a7baf..3b83c299 100644 --- a/Sony/Sony_a7rV_sigma 14-24, 14mm_60, stablization off_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7rV_sigma 14-24, 14mm_60, stablization off_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "user", "camera_brand": "Sony", - "camera_model": "a7rV", + "camera_model": "Alpha 7R V", "lens_model": "sigma 14-24, 14mm", "camera_setting": "60, stablization off", "calib_dimension": { diff --git a/Sony/Sony_a7rV_sigma 1424, 24mm_60_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7rV_sigma 1424, 24mm_60_4k_16by9_3840x2160-59.94fps.json index 94072143..b36c0938 100644 --- a/Sony/Sony_a7rV_sigma 1424, 24mm_60_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7rV_sigma 1424, 24mm_60_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "user", "camera_brand": "Sony", - "camera_model": "a7rV", + "camera_model": "Alpha 7R V", "lens_model": "sigma 1424, 24mm", "camera_setting": "60", "calib_dimension": { diff --git a/Sony/Sony_a7rV_sigma 1424_8k 24_6k_16by9_7680x4320-23.98fps.json b/Sony/Sony_a7rV_sigma 1424_8k 24_6k_16by9_7680x4320-23.98fps.json index 8f5265f2..0cea26a5 100644 --- a/Sony/Sony_a7rV_sigma 1424_8k 24_6k_16by9_7680x4320-23.98fps.json +++ b/Sony/Sony_a7rV_sigma 1424_8k 24_6k_16by9_7680x4320-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "user", "camera_brand": "Sony", - "camera_model": "a7rV", + "camera_model": "Alpha 7R V", "lens_model": "sigma 1424", "camera_setting": "8k 24", "calib_dimension": { diff --git a/Sony/Sony_a7rV_tamron 20mm-40mm f2,8@20.00mm__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7rV_tamron 20mm-40mm f2,8@20.00mm__4k_16by9_3840x2160-50.00fps.json index fd5afb62..60d834ec 100644 --- a/Sony/Sony_a7rV_tamron 20mm-40mm f2,8@20.00mm__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7rV_tamron 20mm-40mm f2,8@20.00mm__4k_16by9_3840x2160-50.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Neal", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7rV", + "camera_model": "Alpha 7R V", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7rV_tamron 35-150_@150 tamron 35-150 4K60_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7rV_tamron 35-150_@150 tamron 35-150 4K60_4k_16by9_3840x2160-59.94fps.json index edb4edac..d46b7656 100644 --- a/Sony/Sony_a7rV_tamron 35-150_@150 tamron 35-150 4K60_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7rV_tamron 35-150_@150 tamron 35-150 4K60_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "@150 tamron 35-150 4K60", "calibrated_by": "calvin Ng", "camera_brand": "Sony", - "camera_model": "a7rV", + "camera_model": "Alpha 7R V", "lens_model": "tamron 35-150", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7rV_tamron 35-150mm_60@35MM_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7rV_tamron 35-150mm_60@35MM_4k_16by9_3840x2160-59.94fps.json index 71b3caa2..91c75460 100644 --- a/Sony/Sony_a7rV_tamron 35-150mm_60@35MM_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7rV_tamron 35-150mm_60@35MM_4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "calvin Ng", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7rV", + "camera_model": "Alpha 7R V", "camera_setting": "60@35MM", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7rV_tamron 35MM-150.00mm_60@150MM_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7rV_tamron 35MM-150.00mm_60@150MM_4k_16by9_3840x2160-59.94fps.json index 24bf1d4c..4d078a83 100644 --- a/Sony/Sony_a7rV_tamron 35MM-150.00mm_60@150MM_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7rV_tamron 35MM-150.00mm_60@150MM_4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "calvin Ng", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7rV", + "camera_model": "Alpha 7R V", "camera_setting": "60@150MM", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7r_Voigtlander Nokton 35mm f1.4_HD_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7r_Voigtlander Nokton 35mm f1.4_HD_1080p_16by9_1920x1080-50.00fps.json index e530a937..4cc44c21 100644 --- a/Sony/Sony_a7r_Voigtlander Nokton 35mm f1.4_HD_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7r_Voigtlander Nokton 35mm f1.4_HD_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Emi", "camera_brand": "Sony", - "camera_model": "a7r", + "camera_model": "Alpha 7R", "lens_model": "Voigtlander Nokton 35mm f1.4", "camera_setting": "HD", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_16.00mm F1.8 Youngnuo on Sony FF__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7sIII_16.00mm F1.8 Youngnuo on Sony FF__4k_16by9_3840x2160-59.94fps.json index e33877d9..07578893 100644 --- a/Sony/Sony_a7sIII_16.00mm F1.8 Youngnuo on Sony FF__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7sIII_16.00mm F1.8 Youngnuo on Sony FF__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eric Ginsburg", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "16.00mm F1.8 Youngnuo on Sony FF", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_16.00mm_Youngnuo 16mm F1.8 apc-s lens on FF sensor with 10% crop_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_16.00mm_Youngnuo 16mm F1.8 apc-s lens on FF sensor with 10% crop_4k_16by9_3840x2160-23.98fps.json index 08d818b2..c4342965 100644 --- a/Sony/Sony_a7sIII_16.00mm_Youngnuo 16mm F1.8 apc-s lens on FF sensor with 10% crop_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_16.00mm_Youngnuo 16mm F1.8 apc-s lens on FF sensor with 10% crop_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "Youngnuo 16mm F1.8 APS-C lens on FF (10% crop)", "calibrated_by": "Eric Ginsburg", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "16.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_17.00mm_tamron 17-2_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7sIII_17.00mm_tamron 17-2_4k_16by9_3840x2160-59.94fps.json index 250ae08d..ebc27cf0 100644 --- a/Sony/Sony_a7sIII_17.00mm_tamron 17-2_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7sIII_17.00mm_tamron 17-2_4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Elvis Brin", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "camera_setting": "tamron 17-2", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7sIII_19.00mm_Sigma 19mm on FF_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_19.00mm_Sigma 19mm on FF_4k_16by9_3840x2160-23.98fps.json index abc26057..587f4b3a 100644 --- a/Sony/Sony_a7sIII_19.00mm_Sigma 19mm on FF_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_19.00mm_Sigma 19mm on FF_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Eric", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "19.00mm", "camera_setting": "Sigma 19mm on FF", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_24-70mmF2.4 24mm__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7sIII_24-70mmF2.4 24mm__1080p_16by9_1920x1080-50.00fps.json index eaa186ff..25b32b0b 100644 --- a/Sony/Sony_a7sIII_24-70mmF2.4 24mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7sIII_24-70mmF2.4 24mm__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "24mm下", "calibrated_by": "一宁", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "24-70mmF2.4 24mm", "camera_setting": "无防抖", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_24mm_Sigma Art 24-70 2.8_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_24mm_Sigma Art 24-70 2.8_4k_16by9_3840x2160-23.98fps.json index 884ecc73..69f50967 100644 --- a/Sony/Sony_a7sIII_24mm_Sigma Art 24-70 2.8_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_24mm_Sigma Art 24-70 2.8_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "Sigma Art 24-70 2.8", "calibrated_by": "User", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "24mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_28.00mm_tamron 17-28_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7sIII_28.00mm_tamron 17-28_4k_16by9_3840x2160-59.94fps.json index 4b1ea4bd..d564a9be 100644 --- a/Sony/Sony_a7sIII_28.00mm_tamron 17-28_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7sIII_28.00mm_tamron 17-28_4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Elvis Brin", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7sIII_28.00mm_tamron27-75_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7sIII_28.00mm_tamron27-75_4k_16by9_3840x2160-59.94fps.json index 60e51635..d72bd707 100644 --- a/Sony/Sony_a7sIII_28.00mm_tamron27-75_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7sIII_28.00mm_tamron27-75_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "tamron27-75", "calibrated_by": "Elvis Brin", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "28.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_28.00mm_tamron28-75_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7sIII_28.00mm_tamron28-75_4k_16by9_3840x2160-59.94fps.json index 10d86397..e487bfc3 100644 --- a/Sony/Sony_a7sIII_28.00mm_tamron28-75_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7sIII_28.00mm_tamron28-75_4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Elvis Brin", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7sIII_28.00mm_tenglong28-75_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7sIII_28.00mm_tenglong28-75_4k_16by9_3840x2160-50.00fps.json index 2897496c..4c4a70f6 100644 --- a/Sony/Sony_a7sIII_28.00mm_tenglong28-75_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7sIII_28.00mm_tenglong28-75_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "9:16", "calibrated_by": "shanlin", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "28.00mm", "camera_setting": "tenglong28-75", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_35.00mm_Sigma Art 35mmf1.4_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7sIII_35.00mm_Sigma Art 35mmf1.4_4k_16by9_3840x2160-29.97fps.json index 5e4c7326..d78b3369 100644 --- a/Sony/Sony_a7sIII_35.00mm_Sigma Art 35mmf1.4_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7sIII_35.00mm_Sigma Art 35mmf1.4_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "Sigma Art 35mm/f1.4", "calibrated_by": "Ellina Komarova", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "35.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_35.00mm_Tamron 35-150mm_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7sIII_35.00mm_Tamron 35-150mm_4k_16by9_3840x2160-29.97fps.json index 14690827..39edef7e 100644 --- a/Sony/Sony_a7sIII_35.00mm_Tamron 35-150mm_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7sIII_35.00mm_Tamron 35-150mm_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "Tamron 35-150mm", "calibrated_by": "DALTON", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "35.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_35.00mm_samyang_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7sIII_35.00mm_samyang_4k_16by9_3840x2160-59.94fps.json index c7fb2ca3..00e0be66 100644 --- a/Sony/Sony_a7sIII_35.00mm_samyang_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7sIII_35.00mm_samyang_4k_16by9_3840x2160-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "wu", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7sIII_7Artisans 35mm T2.0_23.98p_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7sIII_7Artisans 35mm T2.0_23.98p_4k_16by9_3840x2160-59.94fps.json index c09f5b31..ea208705 100644 --- a/Sony/Sony_a7sIII_7Artisans 35mm T2.0_23.98p_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7sIII_7Artisans 35mm T2.0_23.98p_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ben Meyers", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "7Artisans 35mm T2.0", "camera_setting": "23.98p", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_90.00mm_90mm F2.8 Macro G_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7sIII_90.00mm_90mm F2.8 Macro G_4k_16by9_3840x2160-29.97fps.json index afa56938..dcf88a89 100644 --- a/Sony/Sony_a7sIII_90.00mm_90mm F2.8 Macro G_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7sIII_90.00mm_90mm F2.8 Macro G_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "90mm F2.8 Macro G", "calibrated_by": "Nella Shen", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "90.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_ANGENIEUX 28__1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7sIII_ANGENIEUX 28__1080p_16by9_1920x1080-25.00fps.json index 29449ae2..d34a2ade 100644 --- a/Sony/Sony_a7sIII_ANGENIEUX 28__1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7sIII_ANGENIEUX 28__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Giovanni C. Lorusso", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "ANGENIEUX 28", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_ATHENA 25 T1.9__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7sIII_ATHENA 25 T1.9__4k_16by9_3840x2160-50.00fps.json index 89b8bc59..1eb9b080 100644 --- a/Sony/Sony_a7sIII_ATHENA 25 T1.9__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7sIII_ATHENA 25 T1.9__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "bin", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "ATHENA 25 T1.9", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Angenieux 28__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7sIII_Angenieux 28__4k_16by9_3840x2160-50.00fps.json index 325e7c88..c4635d9e 100644 --- a/Sony/Sony_a7sIII_Angenieux 28__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7sIII_Angenieux 28__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Giovanni C. Lorusso", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Angenieux 28", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_CP3 25mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_CP3 25mm__4k_16by9_3840x2160-23.98fps.json index 76ba831e..1835c4e9 100644 --- a/Sony/Sony_a7sIII_CP3 25mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_CP3 25mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "17", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "CP3 25mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_CP3 35mm__4k_16by9_3840x2160-23.98fps - student17.json b/Sony/Sony_a7sIII_CP3 35mm__4k_16by9_3840x2160-23.98fps - student17.json index 043d8aaa..22bf8dbc 100644 --- a/Sony/Sony_a7sIII_CP3 35mm__4k_16by9_3840x2160-23.98fps - student17.json +++ b/Sony/Sony_a7sIII_CP3 35mm__4k_16by9_3840x2160-23.98fps - student17.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "student17", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "CP3 35mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Canon 16-35mm @16mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_Canon 16-35mm @16mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json index 3423fe42..a4992dba 100644 --- a/Sony/Sony_a7sIII_Canon 16-35mm @16mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Canon 16-35mm @16mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "Slog3cine", "calibrated_by": "Mauro", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Canon 16-35mm @16mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Canon 16-35mm @20mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_Canon 16-35mm @20mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json index 2099fb00..66de7a30 100644 --- a/Sony/Sony_a7sIII_Canon 16-35mm @20mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Canon 16-35mm @20mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "Slog3cine", "calibrated_by": "Mauro", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Canon 16-35mm @20mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Canon 16-35mm @24mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_Canon 16-35mm @24mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json index 9a2b1b68..a94d52b3 100644 --- a/Sony/Sony_a7sIII_Canon 16-35mm @24mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Canon 16-35mm @24mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "Slog3cine", "calibrated_by": "Mauro", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Canon 16-35mm @24mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Canon 16-35mm @28mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_Canon 16-35mm @28mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json index 459aae41..9dcd8ef2 100644 --- a/Sony/Sony_a7sIII_Canon 16-35mm @28mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Canon 16-35mm @28mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "Slog3cine", "calibrated_by": "Mauro", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Canon 16-35mm @28mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Canon 16-35mm @35mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_Canon 16-35mm @35mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json index d04e5cb4..c6bc1390 100644 --- a/Sony/Sony_a7sIII_Canon 16-35mm @35mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Canon 16-35mm @35mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "Slog3cine", "calibrated_by": "Mauro", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Canon 16-35mm @35mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Canon 24-70mm @24m_Slog3cine_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_Canon 24-70mm @24m_Slog3cine_4k_16by9_3840x2160-23.98fps.json index 430a9570..6f96476f 100644 --- a/Sony/Sony_a7sIII_Canon 24-70mm @24m_Slog3cine_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Canon 24-70mm @24m_Slog3cine_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "Slog3cine", "calibrated_by": "Mauro", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Canon 24-70mm @24m", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Canon 24-70mm @28m_Slog3cine_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_Canon 24-70mm @28m_Slog3cine_4k_16by9_3840x2160-23.98fps.json index 42f887a9..1f129af6 100644 --- a/Sony/Sony_a7sIII_Canon 24-70mm @28m_Slog3cine_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Canon 24-70mm @28m_Slog3cine_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "Slog3cine", "calibrated_by": "Mauro", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Canon 24-70mm @28m", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Canon 24-70mm @35m_Slog3cine_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_Canon 24-70mm @35m_Slog3cine_4k_16by9_3840x2160-23.98fps.json index 870ac300..fd603560 100644 --- a/Sony/Sony_a7sIII_Canon 24-70mm @35m_Slog3cine_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Canon 24-70mm @35m_Slog3cine_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "Slog3cine", "calibrated_by": "Mauro", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Canon 24-70mm @35m", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Canon FD 50mm 1.4 S.S.C__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7sIII_Canon FD 50mm 1.4 S.S.C__4k_16by9_3840x2160-50.00fps.json index 1787a915..959a8b65 100644 --- a/Sony/Sony_a7sIII_Canon FD 50mm 1.4 S.S.C__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7sIII_Canon FD 50mm 1.4 S.S.C__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Warat Archawanuntagul", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Canon FD 50mm 1.4 S.S.C", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Carl Zeiss Jena Biometar 80mm f2.8_X-AVC HS 10bit 420_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_Carl Zeiss Jena Biometar 80mm f2.8_X-AVC HS 10bit 420_4k_16by9_3840x2160-23.98fps.json index 06d07ab5..90f375bd 100644 --- a/Sony/Sony_a7sIII_Carl Zeiss Jena Biometar 80mm f2.8_X-AVC HS 10bit 420_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Carl Zeiss Jena Biometar 80mm f2.8_X-AVC HS 10bit 420_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "Steadyshot OFF", "calibrated_by": "Yoon Tae-Hun", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Carl Zeiss Jena Biometar 80mm f2.8", "camera_setting": "X-AVC HS 10bit 420", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Carl Zeiss Jena Flektogon 20mm f4_X-AVC HS 10bit 420_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_Carl Zeiss Jena Flektogon 20mm f4_X-AVC HS 10bit 420_4k_16by9_3840x2160-23.98fps.json index e80362af..b5e3b9bb 100644 --- a/Sony/Sony_a7sIII_Carl Zeiss Jena Flektogon 20mm f4_X-AVC HS 10bit 420_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Carl Zeiss Jena Flektogon 20mm f4_X-AVC HS 10bit 420_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "Steadyshot OFF", "calibrated_by": "Yoon Tae-Hun", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Carl Zeiss Jena Flektogon 20mm f4", "camera_setting": "X-AVC HS 10bit 420", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Carl Zeiss Jena Flektogon 25mm f4_X-AVC HS 10bit 420_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_Carl Zeiss Jena Flektogon 25mm f4_X-AVC HS 10bit 420_4k_16by9_3840x2160-23.98fps.json index 3525c22d..af4bdcd2 100644 --- a/Sony/Sony_a7sIII_Carl Zeiss Jena Flektogon 25mm f4_X-AVC HS 10bit 420_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Carl Zeiss Jena Flektogon 25mm f4_X-AVC HS 10bit 420_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "Steadyshot OFF", "calibrated_by": "Yoon Tae-Hun", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Carl Zeiss Jena Flektogon 25mm f4", "camera_setting": "X-AVC HS 10bit 420", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Carl Zeiss Jena Flektogon 35mm f2.8_X-AVC HS 10bit 420_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_Carl Zeiss Jena Flektogon 35mm f2.8_X-AVC HS 10bit 420_4k_16by9_3840x2160-23.98fps.json index c7e5f1de..eefb10c5 100644 --- a/Sony/Sony_a7sIII_Carl Zeiss Jena Flektogon 35mm f2.8_X-AVC HS 10bit 420_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Carl Zeiss Jena Flektogon 35mm f2.8_X-AVC HS 10bit 420_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "Steadyshot OFF", "calibrated_by": "Yoon Tae-Hun", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Carl Zeiss Jena Flektogon 35mm f2.8", "camera_setting": "X-AVC HS 10bit 420", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Carl Zeiss Jena Pancolar 50mm f1.8_X-AVC HS 10bit 420_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_Carl Zeiss Jena Pancolar 50mm f1.8_X-AVC HS 10bit 420_4k_16by9_3840x2160-23.98fps.json index 1ed36932..33cc519c 100644 --- a/Sony/Sony_a7sIII_Carl Zeiss Jena Pancolar 50mm f1.8_X-AVC HS 10bit 420_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Carl Zeiss Jena Pancolar 50mm f1.8_X-AVC HS 10bit 420_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "Steadyshot OFF", "calibrated_by": "Yoon Tae-Hun", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Carl Zeiss Jena Pancolar 50mm f1.8", "camera_setting": "X-AVC HS 10bit 420", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_FE 2.824-70 GM_prores raw (no lens comp)_C4k_16by9_4264x2408-59.94fps.json b/Sony/Sony_a7sIII_FE 2.824-70 GM_prores raw (no lens comp)_C4k_16by9_4264x2408-59.94fps.json index 12f84228..6f4ea93c 100644 --- a/Sony/Sony_a7sIII_FE 2.824-70 GM_prores raw (no lens comp)_C4k_16by9_4264x2408-59.94fps.json +++ b/Sony/Sony_a7sIII_FE 2.824-70 GM_prores raw (no lens comp)_C4k_16by9_4264x2408-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Vladimir Kostenko", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "FE 2.8/24-70 GM", "camera_setting": "prores raw (no lens comp)", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Great Joy 35mm x1.8_1100_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7sIII_Great Joy 35mm x1.8_1100_4k_16by9_3840x2160-50.00fps.json index b90bf952..8e9bc56d 100644 --- a/Sony/Sony_a7sIII_Great Joy 35mm x1.8_1100_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7sIII_Great Joy 35mm x1.8_1100_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "rapha", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Great Joy 35mm x1.8", "camera_setting": "1/100", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Great Joy 85mm 1.8x_1100s_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7sIII_Great Joy 85mm 1.8x_1100s_4k_16by9_3840x2160-50.00fps.json index 5e759ab8..e3daa233 100644 --- a/Sony/Sony_a7sIII_Great Joy 85mm 1.8x_1100s_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7sIII_Great Joy 85mm 1.8x_1100s_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "rapha", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Great Joy 85mm 1.8x", "camera_setting": "1/100s", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Great Joy 85mm 1.8x__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7sIII_Great Joy 85mm 1.8x__4k_16by9_3840x2160-25.00fps.json index e20f6f9b..dd5ad3d1 100644 --- a/Sony/Sony_a7sIII_Great Joy 85mm 1.8x__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7sIII_Great Joy 85mm 1.8x__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "rapha", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Great Joy 85mm 1.8x", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Helios 44m_XAVC S-I_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7sIII_Helios 44m_XAVC S-I_4k_16by9_3840x2160-25.00fps.json index eef0e282..9e3d1078 100644 --- a/Sony/Sony_a7sIII_Helios 44m_XAVC S-I_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7sIII_Helios 44m_XAVC S-I_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Then Boom", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Helios 44m", "camera_setting": "XAVC S-I", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_LEICA SUMMICRON 25__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7sIII_LEICA SUMMICRON 25__4k_16by9_3840x2160-25.00fps.json index f2d2d31d..43c585eb 100644 --- a/Sony/Sony_a7sIII_LEICA SUMMICRON 25__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7sIII_LEICA SUMMICRON 25__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Giovanni C. Lorusso", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "LEICA SUMMICRON 25", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Laowa 11_XAVC S_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7sIII_Laowa 11_XAVC S_4k_16by9_3840x2160-50.00fps.json index 85a8670f..5a88fcfd 100644 --- a/Sony/Sony_a7sIII_Laowa 11_XAVC S_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7sIII_Laowa 11_XAVC S_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Bangodin", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Laowa 11", "camera_setting": "XAVC S", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Laowa 15mm F2__4k_16by9_3840x2160-119.88fps.json b/Sony/Sony_a7sIII_Laowa 15mm F2__4k_16by9_3840x2160-119.88fps.json index 3392e0d1..233a8a63 100644 --- a/Sony/Sony_a7sIII_Laowa 15mm F2__4k_16by9_3840x2160-119.88fps.json +++ b/Sony/Sony_a7sIII_Laowa 15mm F2__4k_16by9_3840x2160-119.88fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Tim Feistner", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Laowa 15mm F2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Laowa 15mm f2 Zero-D__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7sIII_Laowa 15mm f2 Zero-D__4k_16by9_3840x2160-59.94fps.json index a6d605bb..a8b1d87c 100644 --- a/Sony/Sony_a7sIII_Laowa 15mm f2 Zero-D__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7sIII_Laowa 15mm f2 Zero-D__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Zaff Wang", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Laowa 15mm f2 Zero-D", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Laowa 15mm f2 zero-D_Stabilization off_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7sIII_Laowa 15mm f2 zero-D_Stabilization off_4k_16by9_3840x2160-59.94fps.json index bd90cee6..a732fdb2 100644 --- a/Sony/Sony_a7sIII_Laowa 15mm f2 zero-D_Stabilization off_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7sIII_Laowa 15mm f2 zero-D_Stabilization off_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "Stabilization off", "calibrated_by": "Zuofu Wang", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Laowa 15mm f2 zero-D", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Laowa 35mm 0.95__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7sIII_Laowa 35mm 0.95__4k_16by9_3840x2160-59.94fps.json index 67066e5b..969ab57b 100644 --- a/Sony/Sony_a7sIII_Laowa 35mm 0.95__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7sIII_Laowa 35mm 0.95__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "SongSul", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Laowa 35mm 0.95", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Laowa 9mm__C4k_1.90by1_4096x2160-50.00fps.json b/Sony/Sony_a7sIII_Laowa 9mm__C4k_1.90by1_4096x2160-50.00fps.json index 84a32aea..1719d600 100644 --- a/Sony/Sony_a7sIII_Laowa 9mm__C4k_1.90by1_4096x2160-50.00fps.json +++ b/Sony/Sony_a7sIII_Laowa 9mm__C4k_1.90by1_4096x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Sky Monkey Aus", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Laowa 9mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Laowa periprobe 24mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7sIII_Laowa periprobe 24mm__4k_16by9_3840x2160-25.00fps.json index b9926b8b..82977d54 100644 --- a/Sony/Sony_a7sIII_Laowa periprobe 24mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7sIII_Laowa periprobe 24mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "emeaml-wsp-uk73", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Laowa periprobe 24mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Leica 90 anamorphic 2x_slog3_6k_3.56by1_7680x2160-25.00fps.json b/Sony/Sony_a7sIII_Leica 90 anamorphic 2x_slog3_6k_3.56by1_7680x2160-25.00fps.json index 7927871f..22d753a4 100644 --- a/Sony/Sony_a7sIII_Leica 90 anamorphic 2x_slog3_6k_3.56by1_7680x2160-25.00fps.json +++ b/Sony/Sony_a7sIII_Leica 90 anamorphic 2x_slog3_6k_3.56by1_7680x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "iSmartBook", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Leica 90 anamorphic 2x", "camera_setting": "slog3", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_NISI Athena 35mm__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7sIII_NISI Athena 35mm__4k_16by9_3840x2160-50.00fps.json index 868bd414..a6aa35fc 100644 --- a/Sony/Sony_a7sIII_NISI Athena 35mm__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7sIII_NISI Athena 35mm__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Felix Drossert", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "NISI Athena 35mm", "camera_setting": "/", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Nikon 50mm 1.4D__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7sIII_Nikon 50mm 1.4D__4k_16by9_3840x2160-59.94fps.json index b3acf285..94a6b108 100644 --- a/Sony/Sony_a7sIII_Nikon 50mm 1.4D__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7sIII_Nikon 50mm 1.4D__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Steven Noble", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Nikon 50mm 1.4D", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Nisi 35mm T1.9__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7sIII_Nisi 35mm T1.9__4k_16by9_3840x2160-25.00fps.json index 3cf99889..e7f36ac9 100644 --- a/Sony/Sony_a7sIII_Nisi 35mm T1.9__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7sIII_Nisi 35mm T1.9__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Keanu", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Nisi 35mm T1.9", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Pentax Super-Multi-Coated Takumar 24mm F3.5_K&F Concept M42-NEX Adapter_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7sIII_Pentax Super-Multi-Coated Takumar 24mm F3.5_K&F Concept M42-NEX Adapter_4k_16by9_3840x2160-25.00fps.json index 1d4bf5d5..17a5dcf1 100644 --- a/Sony/Sony_a7sIII_Pentax Super-Multi-Coated Takumar 24mm F3.5_K&F Concept M42-NEX Adapter_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7sIII_Pentax Super-Multi-Coated Takumar 24mm F3.5_K&F Concept M42-NEX Adapter_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "K&F Concept M42-NEX Adapter", "calibrated_by": "Philipp Zakrzewski", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Pentax Super-Multi-Coated Takumar 24mm F3.5", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Pentax Super-Takumar 55mm_K&F Concept M42-NEX Adapter_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7sIII_Pentax Super-Takumar 55mm_K&F Concept M42-NEX Adapter_4k_16by9_3840x2160-25.00fps.json index 94d7ea56..674fad9a 100644 --- a/Sony/Sony_a7sIII_Pentax Super-Takumar 55mm_K&F Concept M42-NEX Adapter_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7sIII_Pentax Super-Takumar 55mm_K&F Concept M42-NEX Adapter_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "K&F Concept M42-NEX Adapter", "calibrated_by": "Philipp Zakrzewski", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Pentax Super-Takumar 55mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_SIGMA 24-70 @24mm 4k 60fps__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7sIII_SIGMA 24-70 @24mm 4k 60fps__4k_16by9_3840x2160-59.94fps.json index 5c934994..6da7998e 100644 --- a/Sony/Sony_a7sIII_SIGMA 24-70 @24mm 4k 60fps__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7sIII_SIGMA 24-70 @24mm 4k 60fps__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Deeke", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "SIGMA 24-70 @24mm 4k 60fps", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_SLR MAGIC 50MM 1.1__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7sIII_SLR MAGIC 50MM 1.1__4k_16by9_3840x2160-50.00fps.json index 897f8c32..e3e1f80a 100644 --- a/Sony/Sony_a7sIII_SLR MAGIC 50MM 1.1__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7sIII_SLR MAGIC 50MM 1.1__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "San", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "SLR MAGIC 50MM 1.1", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_SLR MAGIC 50mm f1.1_50mm_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7sIII_SLR MAGIC 50mm f1.1_50mm_1080p_16by9_1920x1080-50.00fps.json index aa68b3b3..ad1840c1 100644 --- a/Sony/Sony_a7sIII_SLR MAGIC 50mm f1.1_50mm_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7sIII_SLR MAGIC 50mm f1.1_50mm_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Santiago Pereira", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "SLR MAGIC 50mm f1.1", "camera_setting": "50mm", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_SLR magic 35mm f1.2 CINE_50bps_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7sIII_SLR magic 35mm f1.2 CINE_50bps_1080p_16by9_1920x1080-50.00fps.json index 44641410..83bcfe67 100644 --- a/Sony/Sony_a7sIII_SLR magic 35mm f1.2 CINE_50bps_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7sIII_SLR magic 35mm f1.2 CINE_50bps_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "YOLY", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "SLR magic 35mm f1.2 CINE", "camera_setting": "50bps", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Samyang 12mm 2.0_, ,_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7sIII_Samyang 12mm 2.0_, ,_4k_16by9_3840x2160-25.00fps.json index 4368e150..51f5fb45 100644 --- a/Sony/Sony_a7sIII_Samyang 12mm 2.0_, ,_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7sIII_Samyang 12mm 2.0_, ,_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Matej Cebulec", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Samyang 12mm 2.0", "camera_setting": ", ,", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Samyang 142.8__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7sIII_Samyang 142.8__4k_16by9_3840x2160-59.94fps.json index b7c2438c..2ba81aba 100644 --- a/Sony/Sony_a7sIII_Samyang 142.8__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7sIII_Samyang 142.8__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Shea Marshall", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Samyang 14/2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Samyang 24-70 AF 24.00mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_Samyang 24-70 AF 24.00mm__4k_16by9_3840x2160-23.98fps.json index 7be89eb2..68d41e35 100644 --- a/Sony/Sony_a7sIII_Samyang 24-70 AF 24.00mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Samyang 24-70 AF 24.00mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "nils dressel", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Samyang 24-70 AF 24.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Samyang 24__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7sIII_Samyang 24__4k_16by9_3840x2160-25.00fps.json index 7e89bdb4..b5a5e209 100644 --- a/Sony/Sony_a7sIII_Samyang 24__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7sIII_Samyang 24__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "lab.video", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Samyang 24", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Samyang 35-150mm_35mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7sIII_Samyang 35-150mm_35mm_4k_16by9_3840x2160-25.00fps.json index 1485f78a..bf214eb6 100644 --- a/Sony/Sony_a7sIII_Samyang 35-150mm_35mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7sIII_Samyang 35-150mm_35mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "35mm", "calibrated_by": "Gail Malbete", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Samyang 35-150mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Samyang AF FE 85.00mm f1.4_50fps_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7sIII_Samyang AF FE 85.00mm f1.4_50fps_4k_16by9_3840x2160-25.00fps.json index 49d37ff5..bdaf62a8 100644 --- a/Sony/Sony_a7sIII_Samyang AF FE 85.00mm f1.4_50fps_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7sIII_Samyang AF FE 85.00mm f1.4_50fps_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Gail Malbete", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Samyang AF FE 85.00mm f1.4", "camera_setting": "50fps", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Samyang Cine V-AF 45.00mm_45mm_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7sIII_Samyang Cine V-AF 45.00mm_45mm_4k_16by9_3840x2160-50.00fps.json index bdf2d5b2..c8717fd2 100644 --- a/Sony/Sony_a7sIII_Samyang Cine V-AF 45.00mm_45mm_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7sIII_Samyang Cine V-AF 45.00mm_45mm_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "45mm", "calibrated_by": "Shashank @rockstardhiman", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Samyang Cine V-AF 45.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Samyang Cine V-AF 45.00mm__1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7sIII_Samyang Cine V-AF 45.00mm__1080p_16by9_1920x1080-25.00fps.json index aa3eb0ff..d60c9164 100644 --- a/Sony/Sony_a7sIII_Samyang Cine V-AF 45.00mm__1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7sIII_Samyang Cine V-AF 45.00mm__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Shashank @rockstardhiman", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Samyang Cine V-AF 45.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Samyang Cine V-AF 75.00mm_75mm_1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7sIII_Samyang Cine V-AF 75.00mm_75mm_1080p_16by9_1920x1080-25.00fps.json index 2cb0aad6..23550b5a 100644 --- a/Sony/Sony_a7sIII_Samyang Cine V-AF 75.00mm_75mm_1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7sIII_Samyang Cine V-AF 75.00mm_75mm_1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "75mm", "calibrated_by": "Shashank @rockstardhiman", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Samyang Cine V-AF 75.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Samyang cine V-AF 75.00mm_75mm_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7sIII_Samyang cine V-AF 75.00mm_75mm_4k_16by9_3840x2160-50.00fps.json index 80a7ddd6..a83494ae 100644 --- a/Sony/Sony_a7sIII_Samyang cine V-AF 75.00mm_75mm_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7sIII_Samyang cine V-AF 75.00mm_75mm_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "75mm", "calibrated_by": "Shashank", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Samyang cine V-AF 75.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Samyang v-af 24mm_24.00mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7sIII_Samyang v-af 24mm_24.00mm_4k_16by9_3840x2160-25.00fps.json index 9ab68090..f8933c65 100644 --- a/Sony/Sony_a7sIII_Samyang v-af 24mm_24.00mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7sIII_Samyang v-af 24mm_24.00mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "24.00mm", "calibrated_by": "jackoo", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Samyang v-af 24mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Sigma 14-24_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7sIII_Sigma 14-24_4k_16by9_3840x2160-59.94fps.json index 763b7cfb..59eed010 100644 --- a/Sony/Sony_a7sIII_Sigma 14-24_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7sIII_Sigma 14-24_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "covers full zoom range", "calibrated_by": "Eddy", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Sigma 14-24", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Sigma 14-24mm DG DN_14MM_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7sIII_Sigma 14-24mm DG DN_14MM_4k_16by9_3840x2160-59.94fps.json index 04100990..fff9abc5 100644 --- a/Sony/Sony_a7sIII_Sigma 14-24mm DG DN_14MM_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7sIII_Sigma 14-24mm DG DN_14MM_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "14MM", "calibrated_by": "user", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Sigma 14-24mm DG DN", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Sigma 24-70 - 24.00mm__4k_16by9_3840x2160-100.00fps.json b/Sony/Sony_a7sIII_Sigma 24-70 - 24.00mm__4k_16by9_3840x2160-100.00fps.json index 3c6c7a19..7a5423d9 100644 --- a/Sony/Sony_a7sIII_Sigma 24-70 - 24.00mm__4k_16by9_3840x2160-100.00fps.json +++ b/Sony/Sony_a7sIII_Sigma 24-70 - 24.00mm__4k_16by9_3840x2160-100.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Александр Сенатов", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Sigma 24-70 - 24.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Sigma 24-70_24mm_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7sIII_Sigma 24-70_24mm_4k_16by9_3840x2160-25.00fps.json index 930d8a76..78a02c8b 100644 --- a/Sony/Sony_a7sIII_Sigma 24-70_24mm_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7sIII_Sigma 24-70_24mm_4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Peter Moss", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Sigma 24-70", "camera_setting": "24mm", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Sigma 24-70mm (24mm) f2.8 DG DN Art_@(24mm)_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7sIII_Sigma 24-70mm (24mm) f2.8 DG DN Art_@(24mm)_4k_16by9_3840x2160-59.94fps.json index bef41b3e..1a305230 100644 --- a/Sony/Sony_a7sIII_Sigma 24-70mm (24mm) f2.8 DG DN Art_@(24mm)_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7sIII_Sigma 24-70mm (24mm) f2.8 DG DN Art_@(24mm)_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "@(24mm)", "calibrated_by": "Joshua Hardee", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Sigma 24-70mm (24mm) f/2.8 DG DN Art", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Sigma 24-70mm (35mm) f2.8 DG DN Art_@(35mm)_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7sIII_Sigma 24-70mm (35mm) f2.8 DG DN Art_@(35mm)_4k_16by9_3840x2160-59.94fps.json index 6af7547a..36fe8bd2 100644 --- a/Sony/Sony_a7sIII_Sigma 24-70mm (35mm) f2.8 DG DN Art_@(35mm)_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7sIII_Sigma 24-70mm (35mm) f2.8 DG DN Art_@(35mm)_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "@(35mm)", "calibrated_by": "Joshua Hardee", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Sigma 24-70mm (35mm) f/2.8 DG DN Art", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Sigma 24-70mm (50mm) f2.8 DG DN Art_@(50mm)_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7sIII_Sigma 24-70mm (50mm) f2.8 DG DN Art_@(50mm)_4k_16by9_3840x2160-59.94fps.json index 9afc817c..686968fc 100644 --- a/Sony/Sony_a7sIII_Sigma 24-70mm (50mm) f2.8 DG DN Art_@(50mm)_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7sIII_Sigma 24-70mm (50mm) f2.8 DG DN Art_@(50mm)_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "@(50mm)", "calibrated_by": "Joshua Hardee", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Sigma 24-70mm (50mm) f/2.8 DG DN Art", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Sigma 24-70mm (70mm) f2.8 DG DN Art_@(70mm)_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7sIII_Sigma 24-70mm (70mm) f2.8 DG DN Art_@(70mm)_4k_16by9_3840x2160-59.94fps.json index 690743cd..5c53959a 100644 --- a/Sony/Sony_a7sIII_Sigma 24-70mm (70mm) f2.8 DG DN Art_@(70mm)_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7sIII_Sigma 24-70mm (70mm) f2.8 DG DN Art_@(70mm)_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "@(70mm)", "calibrated_by": "Joshua Hardee", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Sigma 24-70mm (70mm) f/2.8 DG DN Art", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Sigma 24-70mm 2.8 Art__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7sIII_Sigma 24-70mm 2.8 Art__4k_16by9_3840x2160-29.97fps.json index 0926049f..314b6f8c 100644 --- a/Sony/Sony_a7sIII_Sigma 24-70mm 2.8 Art__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7sIII_Sigma 24-70mm 2.8 Art__4k_16by9_3840x2160-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Gustavo Marinsek", "calibrator_version": "1.5.3", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7sIII_Sigma 24-70mm @24mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_Sigma 24-70mm @24mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json index 115da975..067f404b 100644 --- a/Sony/Sony_a7sIII_Sigma 24-70mm @24mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Sigma 24-70mm @24mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "Slog3cine", "calibrated_by": "Mauro", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Sigma 24-70mm @24mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Sigma 24-70mm @30mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_Sigma 24-70mm @30mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json index 58e051d3..a89fec40 100644 --- a/Sony/Sony_a7sIII_Sigma 24-70mm @30mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Sigma 24-70mm @30mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "Slog3cine", "calibrated_by": "Mauro", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Sigma 24-70mm @30mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Sigma 24-70mm @35mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_Sigma 24-70mm @35mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json index 658ff2a7..03fe5ed4 100644 --- a/Sony/Sony_a7sIII_Sigma 24-70mm @35mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Sigma 24-70mm @35mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "Slog3cine", "calibrated_by": "Mauro", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Sigma 24-70mm @35mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Sigma 24.00mm f3.5 C__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7sIII_Sigma 24.00mm f3.5 C__4k_16by9_3840x2160-50.00fps.json index b927bae4..32aca563 100644 --- a/Sony/Sony_a7sIII_Sigma 24.00mm f3.5 C__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7sIII_Sigma 24.00mm f3.5 C__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Danny", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Sigma 24.00mm f/3.5 C", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Sigma Art 24-70mm f2.8 DG__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7sIII_Sigma Art 24-70mm f2.8 DG__1080p_16by9_1920x1080-50.00fps.json index f880cda3..5401fa2d 100644 --- a/Sony/Sony_a7sIII_Sigma Art 24-70mm f2.8 DG__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7sIII_Sigma Art 24-70mm f2.8 DG__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Deubener, Felix", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Sigma Art 24-70mm f/2.8 DG", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Sigma FF Cine Prime 20mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_Sigma FF Cine Prime 20mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json index cb3381dd..62de1630 100644 --- a/Sony/Sony_a7sIII_Sigma FF Cine Prime 20mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Sigma FF Cine Prime 20mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "Slog3cine", "calibrated_by": "Mauro", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Sigma FF Cine Prime 20mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Sigma FF Cine Prime 24mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_Sigma FF Cine Prime 24mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json index faed5b47..3fbe517e 100644 --- a/Sony/Sony_a7sIII_Sigma FF Cine Prime 24mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Sigma FF Cine Prime 24mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "Slog3cine", "calibrated_by": "Mauro", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Sigma FF Cine Prime 24mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Sigma FF Cine Prime 35mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_Sigma FF Cine Prime 35mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json index 6cc09723..eb7c7bce 100644 --- a/Sony/Sony_a7sIII_Sigma FF Cine Prime 35mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Sigma FF Cine Prime 35mm_Slog3cine_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "Slog3cine", "calibrated_by": "Mauro", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Sigma FF Cine Prime 35mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Sigma_24_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_Sigma_24_4k_16by9_3840x2160-23.98fps.json index 477e6eff..8e055229 100644 --- a/Sony/Sony_a7sIII_Sigma_24_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Sigma_24_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Luke Gianni", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Sigma", "camera_setting": "24", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Sirui 35mm Anamorphic_1.6x_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7sIII_Sirui 35mm Anamorphic_1.6x_4k_16by9_3840x2160-59.94fps.json index eaf8694e..08253030 100644 --- a/Sony/Sony_a7sIII_Sirui 35mm Anamorphic_1.6x_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7sIII_Sirui 35mm Anamorphic_1.6x_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "1.6x", "calibrated_by": "Gabriel Pintilie", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Sirui 35mm Anamorphic", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Sirui 50mm T2.9 1.6x__6k_2.84by1_6145x2160-23.98fps.json b/Sony/Sony_a7sIII_Sirui 50mm T2.9 1.6x__6k_2.84by1_6145x2160-23.98fps.json index a12acbd7..52792481 100644 --- a/Sony/Sony_a7sIII_Sirui 50mm T2.9 1.6x__6k_2.84by1_6145x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Sirui 50mm T2.9 1.6x__6k_2.84by1_6145x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Joshua Currer", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Sirui 50mm T2.9 1.6x", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Sirui 50mm T2.9 FF Anamorphic__6k_2.84by1_6144x2160-23.98fps.json b/Sony/Sony_a7sIII_Sirui 50mm T2.9 FF Anamorphic__6k_2.84by1_6144x2160-23.98fps.json index fdcb1089..dca0217f 100644 --- a/Sony/Sony_a7sIII_Sirui 50mm T2.9 FF Anamorphic__6k_2.84by1_6144x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Sirui 50mm T2.9 FF Anamorphic__6k_2.84by1_6144x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Michael Lin", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Sirui 50mm T2.9 FF Anamorphic", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Sirui Saturn 35mm anamorphic_35mm_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7sIII_Sirui Saturn 35mm anamorphic_35mm_4k_16by9_3840x2160-59.94fps.json index 07f5d7b3..421e07f8 100644 --- a/Sony/Sony_a7sIII_Sirui Saturn 35mm anamorphic_35mm_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7sIII_Sirui Saturn 35mm anamorphic_35mm_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "35mm", "calibrated_by": "PZ", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Sirui Saturn 35mm anamorphic", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Sirui Saturn 75mm anamorphic_60fps_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7sIII_Sirui Saturn 75mm anamorphic_60fps_4k_16by9_3840x2160-59.94fps.json index 5f49f4fd..97121b54 100644 --- a/Sony/Sony_a7sIII_Sirui Saturn 75mm anamorphic_60fps_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7sIII_Sirui Saturn 75mm anamorphic_60fps_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "60fps", "calibrated_by": "PZ", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Sirui Saturn 75mm anamorphic", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Sirui anamorphic 50mm_50mm_4k_8by3_3840x1440-25.00fps.json b/Sony/Sony_a7sIII_Sirui anamorphic 50mm_50mm_4k_8by3_3840x1440-25.00fps.json index 4957c068..44eadc67 100644 --- a/Sony/Sony_a7sIII_Sirui anamorphic 50mm_50mm_4k_8by3_3840x1440-25.00fps.json +++ b/Sony/Sony_a7sIII_Sirui anamorphic 50mm_50mm_4k_8by3_3840x1440-25.00fps.json @@ -3,7 +3,7 @@ "note": "1.5 desqueeze", "calibrated_by": "Peter Moss", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Sirui anamorphic 50mm", "camera_setting": "50mm", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Sony-Zeiss Planar T_ FE 50mm F1.4 ZA__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7sIII_Sony-Zeiss Planar T_ FE 50mm F1.4 ZA__4k_16by9_3840x2160-50.00fps.json index fb1917a3..edbb34bf 100644 --- a/Sony/Sony_a7sIII_Sony-Zeiss Planar T_ FE 50mm F1.4 ZA__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7sIII_Sony-Zeiss Planar T_ FE 50mm F1.4 ZA__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Filip", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Sony-Zeiss Planar T* FE 50mm F1.4 ZA", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Tamron 17-28 @17.00mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_Tamron 17-28 @17.00mm__4k_16by9_3840x2160-23.98fps.json index 215f4500..d552dfdd 100644 --- a/Sony/Sony_a7sIII_Tamron 17-28 @17.00mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Tamron 17-28 @17.00mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "John Meyer", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Tamron 17-28 @17.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Tamron 25-75mm_1920 x_1080p_16by9_1920x1080-23.98fps.json b/Sony/Sony_a7sIII_Tamron 25-75mm_1920 x_1080p_16by9_1920x1080-23.98fps.json index c295318d..12006e5f 100644 --- a/Sony/Sony_a7sIII_Tamron 25-75mm_1920 x_1080p_16by9_1920x1080-23.98fps.json +++ b/Sony/Sony_a7sIII_Tamron 25-75mm_1920 x_1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "25mm", "calibrated_by": "Kraig Kirchem", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Tamron 25-75mm", "camera_setting": "1920 x", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Tamron 28-75 2.8 G2__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7sIII_Tamron 28-75 2.8 G2__4k_16by9_3840x2160-50.00fps.json index ec2ac299..d8be1f56 100644 --- a/Sony/Sony_a7sIII_Tamron 28-75 2.8 G2__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7sIII_Tamron 28-75 2.8 G2__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Marcin Baranowski", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Tamron 28-75 2.8 G2", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Tamron 28-75 G2 RAW@28.00mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_Tamron 28-75 G2 RAW@28.00mm__4k_16by9_3840x2160-23.98fps.json index 9bb6822a..583b6692 100644 --- a/Sony/Sony_a7sIII_Tamron 28-75 G2 RAW@28.00mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Tamron 28-75 G2 RAW@28.00mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "god", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Tamron 28-75 G2 RAW@28.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Tamron 28-75 G2 RAW@28mm__C4k_16by9_4264x2408-23.98fps.json b/Sony/Sony_a7sIII_Tamron 28-75 G2 RAW@28mm__C4k_16by9_4264x2408-23.98fps.json index 4e96fa62..1ba82483 100644 --- a/Sony/Sony_a7sIII_Tamron 28-75 G2 RAW@28mm__C4k_16by9_4264x2408-23.98fps.json +++ b/Sony/Sony_a7sIII_Tamron 28-75 G2 RAW@28mm__C4k_16by9_4264x2408-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "god", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Tamron 28-75 G2 RAW@28mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Tamron 28-75 G2 RAW@35.00mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_Tamron 28-75 G2 RAW@35.00mm__4k_16by9_3840x2160-23.98fps.json index 1577aef1..fe6e347f 100644 --- a/Sony/Sony_a7sIII_Tamron 28-75 G2 RAW@35.00mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Tamron 28-75 G2 RAW@35.00mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "god", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Tamron 28-75 G2 RAW@35.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Tamron 28-75 G2 RAW@35mm__C4k_16by9_4264x2408-23.98fps.json b/Sony/Sony_a7sIII_Tamron 28-75 G2 RAW@35mm__C4k_16by9_4264x2408-23.98fps.json index d6b734b3..0a7db46b 100644 --- a/Sony/Sony_a7sIII_Tamron 28-75 G2 RAW@35mm__C4k_16by9_4264x2408-23.98fps.json +++ b/Sony/Sony_a7sIII_Tamron 28-75 G2 RAW@35mm__C4k_16by9_4264x2408-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "god", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Tamron 28-75 G2 RAW@35mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Tamron 28-75 G2 RAW@50.00mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_Tamron 28-75 G2 RAW@50.00mm__4k_16by9_3840x2160-23.98fps.json index 718175d1..1beddb10 100644 --- a/Sony/Sony_a7sIII_Tamron 28-75 G2 RAW@50.00mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Tamron 28-75 G2 RAW@50.00mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "god", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Tamron 28-75 G2 RAW@50.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Tamron 28-75 G2 RAW@75.00mm__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_Tamron 28-75 G2 RAW@75.00mm__4k_16by9_3840x2160-23.98fps.json index 97f13cac..3f50d297 100644 --- a/Sony/Sony_a7sIII_Tamron 28-75 G2 RAW@75.00mm__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_Tamron 28-75 G2 RAW@75.00mm__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "god", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Tamron 28-75 G2 RAW@75.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Tamron 28-75 f2.8 @ 28mm_Active_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7sIII_Tamron 28-75 f2.8 @ 28mm_Active_4k_16by9_3840x2160-50.00fps.json index 9ee32173..aed7f924 100644 --- a/Sony/Sony_a7sIII_Tamron 28-75 f2.8 @ 28mm_Active_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7sIII_Tamron 28-75 f2.8 @ 28mm_Active_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "50fps", "calibrated_by": "Nathan Jackson", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Tamron 28-75 f2.8 @ 28mm", "camera_setting": "Active", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Tamron 28-75_28mm_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7sIII_Tamron 28-75_28mm_4k_16by9_3840x2160-59.94fps.json index b234a3a2..a6b425a2 100644 --- a/Sony/Sony_a7sIII_Tamron 28-75_28mm_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7sIII_Tamron 28-75_28mm_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "28mm", "calibrated_by": "Brad Bogdan", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Tamron 28-75", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Tamron 2875G2_SLOG3_4k_16by9_3840x2160-59.94fps - Administrator - 2.json b/Sony/Sony_a7sIII_Tamron 2875G2_SLOG3_4k_16by9_3840x2160-59.94fps - Administrator - 2.json index 816434c3..9a438224 100644 --- a/Sony/Sony_a7sIII_Tamron 2875G2_SLOG3_4k_16by9_3840x2160-59.94fps - Administrator - 2.json +++ b/Sony/Sony_a7sIII_Tamron 2875G2_SLOG3_4k_16by9_3840x2160-59.94fps - Administrator - 2.json @@ -3,7 +3,7 @@ "note": "75MM", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Tamron 2875G2", "camera_setting": "SLOG3", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Viltrox 35.00mm 1.8_50 150_4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7sIII_Viltrox 35.00mm 1.8_50 150_4k_16by9_3840x2160-50.00fps.json index 6544094b..03a7f117 100644 --- a/Sony/Sony_a7sIII_Viltrox 35.00mm 1.8_50 150_4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7sIII_Viltrox 35.00mm 1.8_50 150_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Tim Zander", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Viltrox 35.00mm 1.8", "camera_setting": "50 1/50", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Viltrox AF 16mm f1.8 Sony FE_IBIS off_4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7sIII_Viltrox AF 16mm f1.8 Sony FE_IBIS off_4k_16by9_3840x2160-25.00fps.json index 85ede158..ef050fee 100644 --- a/Sony/Sony_a7sIII_Viltrox AF 16mm f1.8 Sony FE_IBIS off_4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7sIII_Viltrox AF 16mm f1.8 Sony FE_IBIS off_4k_16by9_3840x2160-25.00fps.json @@ -7,7 +7,7 @@ "calibrated_by": "Damian Małż", "calibrator_version": "1.5.4", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "camera_setting": "IBIS off", "compatible_settings": [], "crop": null, diff --git a/Sony/Sony_a7sIII_Viltrox AF 35mm F1.8 FE__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7sIII_Viltrox AF 35mm F1.8 FE__4k_16by9_3840x2160-29.97fps.json index 369a5b7f..cff91a10 100644 --- a/Sony/Sony_a7sIII_Viltrox AF 35mm F1.8 FE__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7sIII_Viltrox AF 35mm F1.8 FE__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "User", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Viltrox AF 35mm F1.8 FE", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Vivitar 25mm 2.5__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7sIII_Vivitar 25mm 2.5__4k_16by9_3840x2160-25.00fps.json index 1c9b7443..b053c187 100644 --- a/Sony/Sony_a7sIII_Vivitar 25mm 2.5__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7sIII_Vivitar 25mm 2.5__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Sven", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Vivitar 25mm 2.5", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Zeiss 16.00mm__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7sIII_Zeiss 16.00mm__4k_16by9_3840x2160-50.00fps.json index a5993736..f8f92ac4 100644 --- a/Sony/Sony_a7sIII_Zeiss 16.00mm__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7sIII_Zeiss 16.00mm__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "WendsLee", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Zeiss 16.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Zeiss @16mm 16.00mm-35__4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7sIII_Zeiss @16mm 16.00mm-35__4k_16by9_3840x2160-59.94fps.json index 62ddc37d..c45b56df 100644 --- a/Sony/Sony_a7sIII_Zeiss @16mm 16.00mm-35__4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7sIII_Zeiss @16mm 16.00mm-35__4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Peter Michael", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Zeiss @16mm 16.00mm-35", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Zeiss Batis 18mm__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7sIII_Zeiss Batis 18mm__4k_16by9_3840x2160-50.00fps.json index 6ff79704..bb58f207 100644 --- a/Sony/Sony_a7sIII_Zeiss Batis 18mm__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7sIII_Zeiss Batis 18mm__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Nicola Bertato", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Zeiss Batis 18mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Zeiss superspeed 25mm__4k_16by9_3840x2160-23.98fps - student17.json b/Sony/Sony_a7sIII_Zeiss superspeed 25mm__4k_16by9_3840x2160-23.98fps - student17.json index 23be0c10..566daeba 100644 --- a/Sony/Sony_a7sIII_Zeiss superspeed 25mm__4k_16by9_3840x2160-23.98fps - student17.json +++ b/Sony/Sony_a7sIII_Zeiss superspeed 25mm__4k_16by9_3840x2160-23.98fps - student17.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "student17", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Zeiss superspeed 25mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_Ziess Kowa 16H slr rangefinder v 1__6k_3.56by1_7680x2160-25.00fps.json b/Sony/Sony_a7sIII_Ziess Kowa 16H slr rangefinder v 1__6k_3.56by1_7680x2160-25.00fps.json index d3c5f233..62cc5e43 100644 --- a/Sony/Sony_a7sIII_Ziess Kowa 16H slr rangefinder v 1__6k_3.56by1_7680x2160-25.00fps.json +++ b/Sony/Sony_a7sIII_Ziess Kowa 16H slr rangefinder v 1__6k_3.56by1_7680x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "iSmartBook", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "Ziess Kowa 16H slr rangefinder v 1", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_helios 44-2 aivascope_anamorphic_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_helios 44-2 aivascope_anamorphic_4k_16by9_3840x2160-23.98fps.json index cac4d0ad..07bc4296 100644 --- a/Sony/Sony_a7sIII_helios 44-2 aivascope_anamorphic_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_helios 44-2 aivascope_anamorphic_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "JC", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "helios 44-2 aivascope", "camera_setting": "anamorphic", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_laowa12mm__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7sIII_laowa12mm__1080p_16by9_1920x1080-50.00fps.json index c8974fa3..c46c3f3c 100644 --- a/Sony/Sony_a7sIII_laowa12mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7sIII_laowa12mm__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "tar", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "laowa12mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_sigma 24-70 f2.8 DG DN_FF_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sIII_sigma 24-70 f2.8 DG DN_FF_4k_16by9_3840x2160-23.98fps.json index 0e942645..d1c8f5cf 100644 --- a/Sony/Sony_a7sIII_sigma 24-70 f2.8 DG DN_FF_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sIII_sigma 24-70 f2.8 DG DN_FF_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "24mm", "calibrated_by": "Aniket Chaudhary", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "sigma 24-70 f/2.8 DG DN", "camera_setting": "FF", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_tamron 2875g2_slog3_4k_16by9_3840x2160-59.94fps.json b/Sony/Sony_a7sIII_tamron 2875g2_slog3_4k_16by9_3840x2160-59.94fps.json index b26feb64..74377200 100644 --- a/Sony/Sony_a7sIII_tamron 2875g2_slog3_4k_16by9_3840x2160-59.94fps.json +++ b/Sony/Sony_a7sIII_tamron 2875g2_slog3_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "50mm", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "tamron 2875g2", "camera_setting": "slog3", "calib_dimension": { diff --git a/Sony/Sony_a7sIII_ttartisan 11m f2.8__4k_16by9_3840x2160-50.00fps.json b/Sony/Sony_a7sIII_ttartisan 11m f2.8__4k_16by9_3840x2160-50.00fps.json index ff4e11ae..cbfb6730 100644 --- a/Sony/Sony_a7sIII_ttartisan 11m f2.8__4k_16by9_3840x2160-50.00fps.json +++ b/Sony/Sony_a7sIII_ttartisan 11m f2.8__4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Mikołaj Przeździak", "camera_brand": "Sony", - "camera_model": "a7sIII", + "camera_model": "Alpha 7S III", "lens_model": "ttartisan 11m f2.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sII_16-35__1080p_16by9_1920x1080-50.00fps (2).json b/Sony/Sony_a7sII_16-35__1080p_16by9_1920x1080-50.00fps (2).json index e52aef8d..c95509fc 100644 --- a/Sony/Sony_a7sII_16-35__1080p_16by9_1920x1080-50.00fps (2).json +++ b/Sony/Sony_a7sII_16-35__1080p_16by9_1920x1080-50.00fps (2).json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "BALTIKS_10", "camera_brand": "Sony", - "camera_model": "a7sII", + "camera_model": "Alpha 7S II", "lens_model": "16-35", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sII_16-35__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7sII_16-35__1080p_16by9_1920x1080-50.00fps.json index f23003ca..e5b09207 100644 --- a/Sony/Sony_a7sII_16-35__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7sII_16-35__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Ufficio Tecnico", "camera_brand": "Sony", - "camera_model": "a7sII", + "camera_model": "Alpha 7S II", "lens_model": "16-35", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sII_24-70 Sony OSS__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7sII_24-70 Sony OSS__4k_16by9_3840x2160-25.00fps.json index d0ab96b1..4c62b86d 100644 --- a/Sony/Sony_a7sII_24-70 Sony OSS__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7sII_24-70 Sony OSS__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Jakob", "camera_brand": "Sony", - "camera_model": "a7sII", + "camera_model": "Alpha 7S II", "lens_model": "24-70 Sony OSS", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sII_Canon 16-35mm__1080p_16by9_1920x1080-23.98fps.json b/Sony/Sony_a7sII_Canon 16-35mm__1080p_16by9_1920x1080-23.98fps.json index 868db5b2..5afb4504 100644 --- a/Sony/Sony_a7sII_Canon 16-35mm__1080p_16by9_1920x1080-23.98fps.json +++ b/Sony/Sony_a7sII_Canon 16-35mm__1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Helena Mckenzie", "camera_brand": "Sony", - "camera_model": "a7sII", + "camera_model": "Alpha 7S II", "lens_model": "Canon 16-35mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sII_LAOWA14MM F4.0__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7sII_LAOWA14MM F4.0__4k_16by9_3840x2160-25.00fps.json index ec8b00e0..86c8bead 100644 --- a/Sony/Sony_a7sII_LAOWA14MM F4.0__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7sII_LAOWA14MM F4.0__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "YQHP", "camera_brand": "Sony", - "camera_model": "a7sII", + "camera_model": "Alpha 7S II", "lens_model": "LAOWA14MM F4.0", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sII_LAOWA14MM__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7sII_LAOWA14MM__4k_16by9_3840x2160-25.00fps.json index e328d29a..90438857 100644 --- a/Sony/Sony_a7sII_LAOWA14MM__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7sII_LAOWA14MM__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "YQHP", "camera_brand": "Sony", - "camera_model": "a7sII", + "camera_model": "Alpha 7S II", "lens_model": "LAOWA14MM", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sII_LaoWa14mm__4k_16by9_3840x2160-25.00fps - YQHP.json b/Sony/Sony_a7sII_LaoWa14mm__4k_16by9_3840x2160-25.00fps - YQHP.json index 1ad3fa83..77f225bc 100644 --- a/Sony/Sony_a7sII_LaoWa14mm__4k_16by9_3840x2160-25.00fps - YQHP.json +++ b/Sony/Sony_a7sII_LaoWa14mm__4k_16by9_3840x2160-25.00fps - YQHP.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "YQHP", "camera_brand": "Sony", - "camera_model": "a7sII", + "camera_model": "Alpha 7S II", "lens_model": "LaoWa14mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sII_Rokinon Cine DS T.5 24mm ED ASIF UMC__4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a7sII_Rokinon Cine DS T.5 24mm ED ASIF UMC__4k_16by9_3840x2160-23.98fps.json index a56b8159..912ea1d3 100644 --- a/Sony/Sony_a7sII_Rokinon Cine DS T.5 24mm ED ASIF UMC__4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a7sII_Rokinon Cine DS T.5 24mm ED ASIF UMC__4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Andrew Yanni", "camera_brand": "Sony", - "camera_model": "a7sII", + "camera_model": "Alpha 7S II", "lens_model": "Rokinon Cine DS T.5 24mm ED ASIF UMC", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sII_SEL2470Z_24_4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7sII_SEL2470Z_24_4k_16by9_3840x2160-29.97fps.json index 66fc63b3..88082515 100644 --- a/Sony/Sony_a7sII_SEL2470Z_24_4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7sII_SEL2470Z_24_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "User", "camera_brand": "Sony", - "camera_model": "a7sII", + "camera_model": "Alpha 7S II", "lens_model": "SEL2470Z", "camera_setting": "24", "calib_dimension": { diff --git a/Sony/Sony_a7sII_Samyang 18mm 2.8 FE__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7sII_Samyang 18mm 2.8 FE__4k_16by9_3840x2160-29.97fps.json index a98a19a2..91d4f802 100644 --- a/Sony/Sony_a7sII_Samyang 18mm 2.8 FE__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7sII_Samyang 18mm 2.8 FE__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "WKOCH", "camera_brand": "Sony", - "camera_model": "a7sII", + "camera_model": "Alpha 7S II", "lens_model": "Samyang 18mm / 2.8 FE", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sII_Sony 12-24mm__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7sII_Sony 12-24mm__4k_16by9_3840x2160-25.00fps.json index d90eddd0..8533884a 100644 --- a/Sony/Sony_a7sII_Sony 12-24mm__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7sII_Sony 12-24mm__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Yannis", "camera_brand": "Sony", - "camera_model": "a7sII", + "camera_model": "Alpha 7S II", "lens_model": "Sony 12-24mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sII_Sony 24 - 70 f4__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7sII_Sony 24 - 70 f4__1080p_16by9_1920x1080-50.00fps.json index 82f37c74..0119c26a 100644 --- a/Sony/Sony_a7sII_Sony 24 - 70 f4__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7sII_Sony 24 - 70 f4__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Aris Skoulikis", "camera_brand": "Sony", - "camera_model": "a7sII", + "camera_model": "Alpha 7S II", "lens_model": "Sony 24 - 70 f4", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sII_Sony E35mm f2.8_P50F_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7sII_Sony E35mm f2.8_P50F_1080p_16by9_1920x1080-50.00fps.json index 3094cf1b..f4ea6113 100644 --- a/Sony/Sony_a7sII_Sony E35mm f2.8_P50F_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7sII_Sony E35mm f2.8_P50F_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "XLUO", "camera_brand": "Sony", - "camera_model": "a7sII", + "camera_model": "Alpha 7S II", "lens_model": "Sony E35mm f2.8", "camera_setting": "P50F", "calib_dimension": { diff --git a/Sony/Sony_a7sII_samyang 24 T1.5__4k_16by9_3840x2160-29.97fps.json b/Sony/Sony_a7sII_samyang 24 T1.5__4k_16by9_3840x2160-29.97fps.json index 3ef6f71e..07510dfe 100644 --- a/Sony/Sony_a7sII_samyang 24 T1.5__4k_16by9_3840x2160-29.97fps.json +++ b/Sony/Sony_a7sII_samyang 24 T1.5__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "Sony", - "camera_model": "a7sII", + "camera_model": "Alpha 7S II", "lens_model": "samyang 24 T1.5", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7sII_samyang cine 35 mm t 1.5__4k_16by9_3840x2160-25.00fps.json b/Sony/Sony_a7sII_samyang cine 35 mm t 1.5__4k_16by9_3840x2160-25.00fps.json index 9f84dec9..95a30df6 100644 --- a/Sony/Sony_a7sII_samyang cine 35 mm t 1.5__4k_16by9_3840x2160-25.00fps.json +++ b/Sony/Sony_a7sII_samyang cine 35 mm t 1.5__4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "User", "camera_brand": "Sony", - "camera_model": "a7sII", + "camera_model": "Alpha 7S II", "lens_model": "samyang cine 35 mm t 1.5", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7s_28-70__1080p_16by9_1920x1080-25.00fps.json b/Sony/Sony_a7s_28-70__1080p_16by9_1920x1080-25.00fps.json index 8b414634..47958ce1 100644 --- a/Sony/Sony_a7s_28-70__1080p_16by9_1920x1080-25.00fps.json +++ b/Sony/Sony_a7s_28-70__1080p_16by9_1920x1080-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Stathis", "camera_brand": "Sony", - "camera_model": "a7s", + "camera_model": "Alpha 7S", "lens_model": "28-70", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7s_2860_28mm_1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7s_2860_28mm_1080p_16by9_1920x1080-59.94fps.json index 61967ed4..64420500 100644 --- a/Sony/Sony_a7s_2860_28mm_1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7s_2860_28mm_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "全画幅", "calibrated_by": "mr.hongyuanzhang", "camera_brand": "Sony", - "camera_model": "a7s", + "camera_model": "Alpha 7S", "lens_model": "2860", "camera_setting": "28mm", "calib_dimension": { diff --git a/Sony/Sony_a7s_85mm f1.8__720p_4by3_1440x1080-29.97fps.json b/Sony/Sony_a7s_85mm f1.8__720p_4by3_1440x1080-29.97fps.json index 55faab19..f1492e01 100644 --- a/Sony/Sony_a7s_85mm f1.8__720p_4by3_1440x1080-29.97fps.json +++ b/Sony/Sony_a7s_85mm f1.8__720p_4by3_1440x1080-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "管理员", "camera_brand": "Sony", - "camera_model": "a7s", + "camera_model": "Alpha 7S", "lens_model": "85mm f1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7s_@16mm__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7s_@16mm__1080p_16by9_1920x1080-50.00fps.json index e6d9b323..9e8dc409 100644 --- a/Sony/Sony_a7s_@16mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7s_@16mm__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "s .", "camera_brand": "Sony", - "camera_model": "a7s", + "camera_model": "Alpha 7S", "lens_model": "@16mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7s_Samyang T1.5 24mm_50 fps_1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7s_Samyang T1.5 24mm_50 fps_1080p_16by9_1920x1080-50.00fps.json index 22db20bd..8a7abb1d 100644 --- a/Sony/Sony_a7s_Samyang T1.5 24mm_50 fps_1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7s_Samyang T1.5 24mm_50 fps_1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "50 fps", "calibrated_by": "DnS", "camera_brand": "Sony", - "camera_model": "a7s", + "camera_model": "Alpha 7S", "lens_model": "Samyang T1.5 24mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7s_Samyang T1.5 24mm__1080p_16by9_1920x1080-50.00fps.json b/Sony/Sony_a7s_Samyang T1.5 24mm__1080p_16by9_1920x1080-50.00fps.json index a45923ea..8534f612 100644 --- a/Sony/Sony_a7s_Samyang T1.5 24mm__1080p_16by9_1920x1080-50.00fps.json +++ b/Sony/Sony_a7s_Samyang T1.5 24mm__1080p_16by9_1920x1080-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "DnS", "camera_brand": "Sony", - "camera_model": "a7s", + "camera_model": "Alpha 7S", "lens_model": "Samyang T1.5 24mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a7s_samyang 35mm f1.8__1080p_16by9_1920x1080-59.94fps.json b/Sony/Sony_a7s_samyang 35mm f1.8__1080p_16by9_1920x1080-59.94fps.json index 0c5c133b..b939ea16 100644 --- a/Sony/Sony_a7s_samyang 35mm f1.8__1080p_16by9_1920x1080-59.94fps.json +++ b/Sony/Sony_a7s_samyang 35mm f1.8__1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Increate Labs", "camera_brand": "Sony", - "camera_model": "a7s", + "camera_model": "Alpha 7S", "lens_model": "samyang 35mm f1.8", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a9III_50.00mm__4k_16by9_3840x2160-119.88fps.json b/Sony/Sony_a9III_50.00mm__4k_16by9_3840x2160-119.88fps.json index 75dfa433..285d445b 100644 --- a/Sony/Sony_a9III_50.00mm__4k_16by9_3840x2160-119.88fps.json +++ b/Sony/Sony_a9III_50.00mm__4k_16by9_3840x2160-119.88fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Sailor", "camera_brand": "Sony", - "camera_model": "a9III", + "camera_model": "Alpha 9 III", "lens_model": "50.00mm", "camera_setting": "", "calib_dimension": { diff --git a/Sony/Sony_a9III_Blazar Remus 65mm_23.976_4k_16by9_3840x2160-23.98fps.json b/Sony/Sony_a9III_Blazar Remus 65mm_23.976_4k_16by9_3840x2160-23.98fps.json index e4d9565d..ea3171dd 100644 --- a/Sony/Sony_a9III_Blazar Remus 65mm_23.976_4k_16by9_3840x2160-23.98fps.json +++ b/Sony/Sony_a9III_Blazar Remus 65mm_23.976_4k_16by9_3840x2160-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Derek Findlay", "camera_brand": "Sony", - "camera_model": "a9III", + "camera_model": "Alpha 9 III", "lens_model": "Blazar Remus 65mm", "camera_setting": "23.976", "calib_dimension": { diff --git a/Sony/sony_a6000_16-35__720p_4by3_1440x1080-25.00fps.json b/Sony/sony_a6000_16-35__720p_4by3_1440x1080-25.00fps.json index fafd0ab2..d2d99a2e 100644 --- a/Sony/sony_a6000_16-35__720p_4by3_1440x1080-25.00fps.json +++ b/Sony/sony_a6000_16-35__720p_4by3_1440x1080-25.00fps.json @@ -2,8 +2,8 @@ "name": "sony_a6000_16-35__720p_4by3_1440x1080-25.00fps", "note": "", "calibrated_by": "slide", - "camera_brand": "sony", - "camera_model": "a6000", + "camera_brand": "Sony", + "camera_model": "Alpha 6000", "lens_model": "16-35", "camera_setting": "", "calib_dimension": { diff --git a/ThiEYE/thieye_t5___2.7k_16by9_2720x1520-30.00fps.json b/ThiEYE/thieye_t5___2.7k_16by9_2720x1520-30.00fps.json index fa5587f5..cfe5c49e 100644 --- a/ThiEYE/thieye_t5___2.7k_16by9_2720x1520-30.00fps.json +++ b/ThiEYE/thieye_t5___2.7k_16by9_2720x1520-30.00fps.json @@ -2,7 +2,7 @@ "name": "thieye_t5___2.7k_16by9_2720x1520-30.00fps", "note": "", "calibrated_by": "Иван Гребенюк", - "camera_brand": "thieye", + "camera_brand": "Thieye", "camera_model": "t5", "lens_model": "", "camera_setting": "", diff --git a/Walksnail/Walksnail_Avatar moonlight kit___2.7k_16by9_2704x1520-30.00fps.json b/Walksnail/Walksnail_Avatar moonlight kit___2.7k_16by9_2704x1520-30.00fps.json index d50f79d6..3f846f20 100644 --- a/Walksnail/Walksnail_Avatar moonlight kit___2.7k_16by9_2704x1520-30.00fps.json +++ b/Walksnail/Walksnail_Avatar moonlight kit___2.7k_16by9_2704x1520-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Walksnail", "camera_brand": "Walksnail", - "camera_model": "Avatar moonlight kit", + "camera_model": "Avatar Moonlight kit", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/XTU/XTU_Mini1_GK319__4k_16by9_3840x2160-30.00fps.json b/XTU/XTU_Mini1_GK319__4k_16by9_3840x2160-30.00fps.json index 06ca77d9..97cc58af 100644 --- a/XTU/XTU_Mini1_GK319__4k_16by9_3840x2160-30.00fps.json +++ b/XTU/XTU_Mini1_GK319__4k_16by9_3840x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "YUTU", "camera_brand": "XTU", - "camera_model": "Mini1", + "camera_model": "MINI1", "lens_model": "GK319", "camera_setting": "", "calib_dimension": { diff --git a/XTU/XTU_Mini1_GK319__4k_16by9_3840x2160-60.00fps.json b/XTU/XTU_Mini1_GK319__4k_16by9_3840x2160-60.00fps.json index c89e15b3..2ca3aae7 100644 --- a/XTU/XTU_Mini1_GK319__4k_16by9_3840x2160-60.00fps.json +++ b/XTU/XTU_Mini1_GK319__4k_16by9_3840x2160-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "YUTU", "camera_brand": "XTU", - "camera_model": "Mini1", + "camera_model": "MINI1", "lens_model": "GK319", "camera_setting": "", "calib_dimension": { diff --git a/XTU/XTU_Mini1_GK319__5k_16by9_5120x2880-30.00fps.json b/XTU/XTU_Mini1_GK319__5k_16by9_5120x2880-30.00fps.json index 49b839e5..877cc75e 100644 --- a/XTU/XTU_Mini1_GK319__5k_16by9_5120x2880-30.00fps.json +++ b/XTU/XTU_Mini1_GK319__5k_16by9_5120x2880-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "YUTU", "camera_brand": "XTU", - "camera_model": "Mini1", + "camera_model": "MINI1", "lens_model": "GK319", "camera_setting": "", "calib_dimension": { diff --git a/XTU/XTU_Mini1__30HDR_4k_16by9_3840x2160-30.00fps.json b/XTU/XTU_Mini1__30HDR_4k_16by9_3840x2160-30.00fps.json index e25749ad..8bffa86b 100644 --- a/XTU/XTU_Mini1__30HDR_4k_16by9_3840x2160-30.00fps.json +++ b/XTU/XTU_Mini1__30HDR_4k_16by9_3840x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "syon", "camera_brand": "XTU", - "camera_model": "Mini1", + "camera_model": "MINI1", "lens_model": "", "camera_setting": "30HDR", "calib_dimension": { diff --git a/XTU/XTU_Mini1__30_2.7k_16by9_2704x1520-30.00fps.json b/XTU/XTU_Mini1__30_2.7k_16by9_2704x1520-30.00fps.json index 6a62e595..97650550 100644 --- a/XTU/XTU_Mini1__30_2.7k_16by9_2704x1520-30.00fps.json +++ b/XTU/XTU_Mini1__30_2.7k_16by9_2704x1520-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "syon", "camera_brand": "XTU", - "camera_model": "Mini1", + "camera_model": "MINI1", "lens_model": "", "camera_setting": "30", "calib_dimension": { diff --git a/XTU/XTU_Mini1__30_2.7k_4by3_2704x2024-30.00fps.json b/XTU/XTU_Mini1__30_2.7k_4by3_2704x2024-30.00fps.json index d7ce5ca5..eac7692a 100644 --- a/XTU/XTU_Mini1__30_2.7k_4by3_2704x2024-30.00fps.json +++ b/XTU/XTU_Mini1__30_2.7k_4by3_2704x2024-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "syon", "camera_brand": "XTU", - "camera_model": "Mini1", + "camera_model": "MINI1", "lens_model": "", "camera_setting": "30帧", "calib_dimension": { diff --git a/XTU/XTU_Mini1__30_4k_16by9_3840x2160-30.00fps.json b/XTU/XTU_Mini1__30_4k_16by9_3840x2160-30.00fps.json index c8a3541e..daaa7133 100644 --- a/XTU/XTU_Mini1__30_4k_16by9_3840x2160-30.00fps.json +++ b/XTU/XTU_Mini1__30_4k_16by9_3840x2160-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "syon", "camera_brand": "XTU", - "camera_model": "Mini1", + "camera_model": "MINI1", "lens_model": "", "camera_setting": "30", "calib_dimension": { diff --git a/XTU/XTU_Mini1__30_5k_16by9_5120x2880-30.00fps.json b/XTU/XTU_Mini1__30_5k_16by9_5120x2880-30.00fps.json index 26e5b762..454c7678 100644 --- a/XTU/XTU_Mini1__30_5k_16by9_5120x2880-30.00fps.json +++ b/XTU/XTU_Mini1__30_5k_16by9_5120x2880-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "syon", "camera_brand": "XTU", - "camera_model": "Mini1", + "camera_model": "MINI1", "lens_model": "", "camera_setting": "30", "calib_dimension": { diff --git a/XTU/XTU_Mini1__60_2.7k_16by9_2704x1520-60.00fps.json b/XTU/XTU_Mini1__60_2.7k_16by9_2704x1520-60.00fps.json index 09191a16..28394126 100644 --- a/XTU/XTU_Mini1__60_2.7k_16by9_2704x1520-60.00fps.json +++ b/XTU/XTU_Mini1__60_2.7k_16by9_2704x1520-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "syon", "camera_brand": "XTU", - "camera_model": "Mini1", + "camera_model": "MINI1", "lens_model": "", "camera_setting": "60", "calib_dimension": { diff --git a/XTU/XTU_Mini1__60_4k_16by9_3840x2160-60.00fps.json b/XTU/XTU_Mini1__60_4k_16by9_3840x2160-60.00fps.json index 6b15cba4..27655544 100644 --- a/XTU/XTU_Mini1__60_4k_16by9_3840x2160-60.00fps.json +++ b/XTU/XTU_Mini1__60_4k_16by9_3840x2160-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "syon", "camera_brand": "XTU", - "camera_model": "Mini1", + "camera_model": "MINI1", "lens_model": "", "camera_setting": "60", "calib_dimension": { diff --git a/XTU/XTU_Mini1__P30HDR_1080p_16by9_1920x1080-30.00fps.json b/XTU/XTU_Mini1__P30HDR_1080p_16by9_1920x1080-30.00fps.json index 53c49fe6..1e1192cb 100644 --- a/XTU/XTU_Mini1__P30HDR_1080p_16by9_1920x1080-30.00fps.json +++ b/XTU/XTU_Mini1__P30HDR_1080p_16by9_1920x1080-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "syon", "camera_brand": "XTU", - "camera_model": "Mini1", + "camera_model": "MINI1", "lens_model": "", "camera_setting": "P30HDR", "calib_dimension": { diff --git a/XTU/XTU_Mini1__P30_1080p_16by9_1920x1080-30.00fps.json b/XTU/XTU_Mini1__P30_1080p_16by9_1920x1080-30.00fps.json index b9017abb..c12a0f4d 100644 --- a/XTU/XTU_Mini1__P30_1080p_16by9_1920x1080-30.00fps.json +++ b/XTU/XTU_Mini1__P30_1080p_16by9_1920x1080-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "syon", "camera_brand": "XTU", - "camera_model": "Mini1", + "camera_model": "MINI1", "lens_model": "", "camera_setting": "P30", "calib_dimension": { diff --git a/XTU/XTU_Mini1__P60_1080p_16by9_1920x1080-60.00fps.json b/XTU/XTU_Mini1__P60_1080p_16by9_1920x1080-60.00fps.json index 19f05539..dac8f8eb 100644 --- a/XTU/XTU_Mini1__P60_1080p_16by9_1920x1080-60.00fps.json +++ b/XTU/XTU_Mini1__P60_1080p_16by9_1920x1080-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "syon", "camera_brand": "XTU", - "camera_model": "Mini1", + "camera_model": "MINI1", "lens_model": "", "camera_setting": "P60", "calib_dimension": { diff --git a/XTU/XTU_S5k__V1.1_1440p_4by3_1920x1440-60.00fps.json b/XTU/XTU_S5k__V1.1_1440p_4by3_1920x1440-60.00fps.json index 2e8d7e4c..83fb2f85 100644 --- a/XTU/XTU_S5k__V1.1_1440p_4by3_1920x1440-60.00fps.json +++ b/XTU/XTU_S5k__V1.1_1440p_4by3_1920x1440-60.00fps.json @@ -3,7 +3,7 @@ "note": "V1.1", "calibrated_by": "Administrator", "camera_brand": "XTU", - "camera_model": "S5k", + "camera_model": "S5K", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/XTU/XTU_S5k___1440p_4by3_1920x1440-60.00fps - Administrator - 2.json b/XTU/XTU_S5k___1440p_4by3_1920x1440-60.00fps - Administrator - 2.json index 1e1fa23a..68684dbe 100644 --- a/XTU/XTU_S5k___1440p_4by3_1920x1440-60.00fps - Administrator - 2.json +++ b/XTU/XTU_S5k___1440p_4by3_1920x1440-60.00fps - Administrator - 2.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "XTU", - "camera_model": "S5k", + "camera_model": "S5K", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/XTU/XTU_S5k___4k_16by9_3840x2160-60.00fps.json b/XTU/XTU_S5k___4k_16by9_3840x2160-60.00fps.json index b0c125d4..93ded3f6 100644 --- a/XTU/XTU_S5k___4k_16by9_3840x2160-60.00fps.json +++ b/XTU/XTU_S5k___4k_16by9_3840x2160-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Administrator", "camera_brand": "XTU", - "camera_model": "S5k", + "camera_model": "S5K", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/XTU/XTU_mini1___1080p_16by9_1920x1080-30.00fps - XTU.json b/XTU/XTU_mini1___1080p_16by9_1920x1080-30.00fps - XTU.json index 735c5657..b3ad69ff 100644 --- a/XTU/XTU_mini1___1080p_16by9_1920x1080-30.00fps - XTU.json +++ b/XTU/XTU_mini1___1080p_16by9_1920x1080-30.00fps - XTU.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "XTU", "camera_brand": "XTU", - "camera_model": "mini1", + "camera_model": "MINI1", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/XTU/XTU_mini1___1080p_16by9_1920x1080-30.00fps.json b/XTU/XTU_mini1___1080p_16by9_1920x1080-30.00fps.json index 572186ae..baf98ef2 100644 --- a/XTU/XTU_mini1___1080p_16by9_1920x1080-30.00fps.json +++ b/XTU/XTU_mini1___1080p_16by9_1920x1080-30.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "XTU", "camera_brand": "XTU", - "camera_model": "mini1", + "camera_model": "MINI1", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/XTU/XTU_mini1___1080p_16by9_1920x1080-60.00fps.json b/XTU/XTU_mini1___1080p_16by9_1920x1080-60.00fps.json index 14485580..0bc2d221 100644 --- a/XTU/XTU_mini1___1080p_16by9_1920x1080-60.00fps.json +++ b/XTU/XTU_mini1___1080p_16by9_1920x1080-60.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "XTU", "camera_brand": "XTU", - "camera_model": "mini1", + "camera_model": "MINI1", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/XTU/Xtu_mini1___2.7k_16by9_2704x1520-60.00fps.json b/XTU/Xtu_mini1___2.7k_16by9_2704x1520-60.00fps.json index 61b79f90..21f6c570 100644 --- a/XTU/Xtu_mini1___2.7k_16by9_2704x1520-60.00fps.json +++ b/XTU/Xtu_mini1___2.7k_16by9_2704x1520-60.00fps.json @@ -2,8 +2,8 @@ "name": "Xtu_mini1___2.7k_16by9_2704x1520-60.00fps", "note": "", "calibrated_by": "Aucseven", - "camera_brand": "Xtu", - "camera_model": "mini1", + "camera_brand": "XTU", + "camera_model": "MINI1", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/XTU/xtu_X1___4k_16by9_3840x2160-30.00fps (2).json b/XTU/xtu_X1___4k_16by9_3840x2160-30.00fps (2).json index 7632d73d..5eef1583 100644 --- a/XTU/xtu_X1___4k_16by9_3840x2160-30.00fps (2).json +++ b/XTU/xtu_X1___4k_16by9_3840x2160-30.00fps (2).json @@ -2,7 +2,7 @@ "name": "xtu_X1___4k_16by9_3840x2160-30.00fps", "note": "", "calibrated_by": "红茶mike", - "camera_brand": "xtu", + "camera_brand": "XTU", "camera_model": "X1", "lens_model": "", "camera_setting": "", diff --git a/Xiaomi/Xiaomi_Mijia 4k_3.2mm f2.8__2.5k_16by9_2560x1440-59.94fps.json b/Xiaomi/Xiaomi_Mijia 4k_3.2mm f2.8__2.5k_16by9_2560x1440-59.94fps.json index 57715947..071d198a 100644 --- a/Xiaomi/Xiaomi_Mijia 4k_3.2mm f2.8__2.5k_16by9_2560x1440-59.94fps.json +++ b/Xiaomi/Xiaomi_Mijia 4k_3.2mm f2.8__2.5k_16by9_2560x1440-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "viktor", "camera_brand": "Xiaomi", - "camera_model": "Mijia 4k", + "camera_model": "Mijia 4K", "lens_model": "3.2mm f/2.8", "camera_setting": "", "calib_dimension": { diff --git a/Xiaomi/Xiaomi_Mijia 4k_3.2mm f2.8__4k_16by9_3840x2160-29.97fps.json b/Xiaomi/Xiaomi_Mijia 4k_3.2mm f2.8__4k_16by9_3840x2160-29.97fps.json index 7a86791b..078923a7 100644 --- a/Xiaomi/Xiaomi_Mijia 4k_3.2mm f2.8__4k_16by9_3840x2160-29.97fps.json +++ b/Xiaomi/Xiaomi_Mijia 4k_3.2mm f2.8__4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "viktor", "camera_brand": "Xiaomi", - "camera_model": "Mijia 4k", + "camera_model": "Mijia 4K", "lens_model": "3.2mm f/2.8", "camera_setting": "", "calib_dimension": { diff --git a/Xiaomi/Xiaomi_Mijia 4k_FOV 145 f2.8_ultra fine_4k_16by9_3840x2160-29.97fps.json b/Xiaomi/Xiaomi_Mijia 4k_FOV 145 f2.8_ultra fine_4k_16by9_3840x2160-29.97fps.json index 6ad559f1..84c4edec 100644 --- a/Xiaomi/Xiaomi_Mijia 4k_FOV 145 f2.8_ultra fine_4k_16by9_3840x2160-29.97fps.json +++ b/Xiaomi/Xiaomi_Mijia 4k_FOV 145 f2.8_ultra fine_4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "UV filter", "calibrated_by": "ATIŚ", "camera_brand": "Xiaomi", - "camera_model": "Mijia 4k", + "camera_model": "Mijia 4K", "lens_model": "FOV 145 f/2.8", "camera_setting": "ultra fine", "calib_dimension": { diff --git a/Xiaomi/Xiaomi_Yi 4K+_Stock_StockAuto_4k_16by9_3840x2160-59.94fps.json b/Xiaomi/Xiaomi_Yi 4K+_Stock_StockAuto_4k_16by9_3840x2160-59.94fps.json index 2b7c5dca..66b76da7 100644 --- a/Xiaomi/Xiaomi_Yi 4K+_Stock_StockAuto_4k_16by9_3840x2160-59.94fps.json +++ b/Xiaomi/Xiaomi_Yi 4K+_Stock_StockAuto_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Tony Parenti", "camera_brand": "Xiaomi", - "camera_model": "Yi 4K+", + "camera_model": "YI 4K+", "lens_model": "Stock", "camera_setting": "Stock/Auto", "calib_dimension": { diff --git a/Xiaomi/Xiaomi_Yi 4k action camera___1080p_16by9_1920x1080-59.94fps.json b/Xiaomi/Xiaomi_Yi 4k action camera___1080p_16by9_1920x1080-59.94fps.json index a1a52394..92ca77ef 100644 --- a/Xiaomi/Xiaomi_Yi 4k action camera___1080p_16by9_1920x1080-59.94fps.json +++ b/Xiaomi/Xiaomi_Yi 4k action camera___1080p_16by9_1920x1080-59.94fps.json @@ -7,7 +7,7 @@ "calibrated_by": "荒野天成", "calibrator_version": "1.5.4", "camera_brand": "Xiaomi", - "camera_model": "Yi 4k action camera", + "camera_model": "Yi 4k Action Camera", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Xiaomi/Xiaomi_Yi 4k+___2.7k_4by3_2720x2032-29.97fps - server.json b/Xiaomi/Xiaomi_Yi 4k+___2.7k_4by3_2720x2032-29.97fps - server.json index 66973610..426e2a53 100644 --- a/Xiaomi/Xiaomi_Yi 4k+___2.7k_4by3_2720x2032-29.97fps - server.json +++ b/Xiaomi/Xiaomi_Yi 4k+___2.7k_4by3_2720x2032-29.97fps - server.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "server", "camera_brand": "Xiaomi", - "camera_model": "Yi 4k+", + "camera_model": "YI 4K+", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Xiaomi/Xiaomi_Yi 4k+___2.7k_4by3_2720x2032-29.97fps.json b/Xiaomi/Xiaomi_Yi 4k+___2.7k_4by3_2720x2032-29.97fps.json index 8d43e376..fae2324e 100644 --- a/Xiaomi/Xiaomi_Yi 4k+___2.7k_4by3_2720x2032-29.97fps.json +++ b/Xiaomi/Xiaomi_Yi 4k+___2.7k_4by3_2720x2032-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Giovanni Riccio", "camera_brand": "Xiaomi", - "camera_model": "Yi 4k+", + "camera_model": "YI 4K+", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Xiaomi/Xiaomi_Yi 4k+___4k_16by9_3840x2160-50.00fps.json b/Xiaomi/Xiaomi_Yi 4k+___4k_16by9_3840x2160-50.00fps.json index 5d70a83b..c082b585 100644 --- a/Xiaomi/Xiaomi_Yi 4k+___4k_16by9_3840x2160-50.00fps.json +++ b/Xiaomi/Xiaomi_Yi 4k+___4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Artem", "camera_brand": "Xiaomi", - "camera_model": "Yi 4k+", + "camera_model": "YI 4K+", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Xiaomi/Xiaomi_Yi 4k+__wide_1080p_16by9_1920x1080-100.00fps.json b/Xiaomi/Xiaomi_Yi 4k+__wide_1080p_16by9_1920x1080-100.00fps.json index 7dd12a0a..c0ffb73e 100644 --- a/Xiaomi/Xiaomi_Yi 4k+__wide_1080p_16by9_1920x1080-100.00fps.json +++ b/Xiaomi/Xiaomi_Yi 4k+__wide_1080p_16by9_1920x1080-100.00fps.json @@ -3,7 +3,7 @@ "note": "action camera", "calibrated_by": "ubuntu", "camera_brand": "Xiaomi", - "camera_model": "Yi 4k+", + "camera_model": "YI 4K+", "lens_model": "", "camera_setting": "wide", "calib_dimension": { diff --git a/Xiaomi/Xiaomi_Yi 4k+__wide_4k_4by3_4000x3008-25.00fps.json b/Xiaomi/Xiaomi_Yi 4k+__wide_4k_4by3_4000x3008-25.00fps.json index 7b4385d4..6e4f4173 100644 --- a/Xiaomi/Xiaomi_Yi 4k+__wide_4k_4by3_4000x3008-25.00fps.json +++ b/Xiaomi/Xiaomi_Yi 4k+__wide_4k_4by3_4000x3008-25.00fps.json @@ -3,7 +3,7 @@ "note": "action-camera", "calibrated_by": "ubuntu", "camera_brand": "Xiaomi", - "camera_model": "Yi 4k+", + "camera_model": "YI 4K+", "lens_model": "", "camera_setting": "wide", "calib_dimension": { diff --git a/Xiaomi/Xiaomi_Yi 4k__2704 x 1520_2.7k_16by9_2704x1520-59.94fps.json b/Xiaomi/Xiaomi_Yi 4k__2704 x 1520_2.7k_16by9_2704x1520-59.94fps.json index d932ec1a..ac6729d3 100644 --- a/Xiaomi/Xiaomi_Yi 4k__2704 x 1520_2.7k_16by9_2704x1520-59.94fps.json +++ b/Xiaomi/Xiaomi_Yi 4k__2704 x 1520_2.7k_16by9_2704x1520-59.94fps.json @@ -3,7 +3,7 @@ "note": "2704 x 1520", "calibrated_by": "Francesco Meraviglia", "camera_brand": "Xiaomi", - "camera_model": "Yi 4k", + "camera_model": "Yi 4K", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Xiaomi/Xiaomi_Yi 4k___1080p_16by9_1920x1080-23.98fps.json b/Xiaomi/Xiaomi_Yi 4k___1080p_16by9_1920x1080-23.98fps.json index 01d22e22..40f46b83 100644 --- a/Xiaomi/Xiaomi_Yi 4k___1080p_16by9_1920x1080-23.98fps.json +++ b/Xiaomi/Xiaomi_Yi 4k___1080p_16by9_1920x1080-23.98fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "gogu", "camera_brand": "Xiaomi", - "camera_model": "Yi 4k", + "camera_model": "Yi 4K", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Xiaomi/Xiaomi_Yi 4k___1080p_16by9_1920x1080-59.94fps (2).json b/Xiaomi/Xiaomi_Yi 4k___1080p_16by9_1920x1080-59.94fps (2).json index 22887f64..ff342f86 100644 --- a/Xiaomi/Xiaomi_Yi 4k___1080p_16by9_1920x1080-59.94fps (2).json +++ b/Xiaomi/Xiaomi_Yi 4k___1080p_16by9_1920x1080-59.94fps (2).json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "刘雨航", "camera_brand": "Xiaomi", - "camera_model": "Yi 4k", + "camera_model": "Yi 4K", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Xiaomi/Xiaomi_Yi 4k___1080p_16by9_1920x1080-59.94fps.json b/Xiaomi/Xiaomi_Yi 4k___1080p_16by9_1920x1080-59.94fps.json index 2b2a7ff4..5eed1607 100644 --- a/Xiaomi/Xiaomi_Yi 4k___1080p_16by9_1920x1080-59.94fps.json +++ b/Xiaomi/Xiaomi_Yi 4k___1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Andrew Moroz", "camera_brand": "Xiaomi", - "camera_model": "Yi 4k", + "camera_model": "Yi 4K", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Xiaomi/Xiaomi_Yi 4k___4k_16by9_3840x2160-25.00fps.json b/Xiaomi/Xiaomi_Yi 4k___4k_16by9_3840x2160-25.00fps.json index 34cb2ef7..1345687f 100644 --- a/Xiaomi/Xiaomi_Yi 4k___4k_16by9_3840x2160-25.00fps.json +++ b/Xiaomi/Xiaomi_Yi 4k___4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "yringot", "camera_brand": "Xiaomi", - "camera_model": "Yi 4k", + "camera_model": "Yi 4K", "lens_model": "", "camera_setting": "/", "calib_dimension": { diff --git a/Xiaomi/Xiaomi_Yi 4k___4k_16by9_3840x2160-29.97fps.json b/Xiaomi/Xiaomi_Yi 4k___4k_16by9_3840x2160-29.97fps.json index 5fa29f41..477ece0d 100644 --- a/Xiaomi/Xiaomi_Yi 4k___4k_16by9_3840x2160-29.97fps.json +++ b/Xiaomi/Xiaomi_Yi 4k___4k_16by9_3840x2160-29.97fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "红茶mike", "camera_brand": "Xiaomi", - "camera_model": "Yi 4k", + "camera_model": "Yi 4K", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Xiaomi/Xiaomi_Yi 4k___4k_4by3_4000x3008-29.97fps.json b/Xiaomi/Xiaomi_Yi 4k___4k_4by3_4000x3008-29.97fps.json index deb66563..09c53616 100644 --- a/Xiaomi/Xiaomi_Yi 4k___4k_4by3_4000x3008-29.97fps.json +++ b/Xiaomi/Xiaomi_Yi 4k___4k_4by3_4000x3008-29.97fps.json @@ -7,7 +7,7 @@ "calibrated_by": "yyds", "calibrator_version": "1.5.4", "camera_brand": "Xiaomi", - "camera_model": "Yi 4k", + "camera_model": "Yi 4K", "camera_setting": "", "compatible_settings": [], "crop": null, diff --git a/Xiaomi/Xiaomi_Yi 4k__corectionadded_1080p_16by9_1920x1080-59.94fps.json b/Xiaomi/Xiaomi_Yi 4k__corectionadded_1080p_16by9_1920x1080-59.94fps.json index 831fe0b8..39e0fab1 100644 --- a/Xiaomi/Xiaomi_Yi 4k__corectionadded_1080p_16by9_1920x1080-59.94fps.json +++ b/Xiaomi/Xiaomi_Yi 4k__corectionadded_1080p_16by9_1920x1080-59.94fps.json @@ -3,7 +3,7 @@ "note": "corectionadded", "calibrated_by": "gogu", "camera_brand": "Xiaomi", - "camera_model": "Yi 4k", + "camera_model": "Yi 4K", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Xiaomi/Xiaomi_Yi 4k__white_2.7k_16by9_2704x1520-59.94fps.json b/Xiaomi/Xiaomi_Yi 4k__white_2.7k_16by9_2704x1520-59.94fps.json index fec2acc0..f8e51a6c 100644 --- a/Xiaomi/Xiaomi_Yi 4k__white_2.7k_16by9_2704x1520-59.94fps.json +++ b/Xiaomi/Xiaomi_Yi 4k__white_2.7k_16by9_2704x1520-59.94fps.json @@ -3,7 +3,7 @@ "note": "white", "calibrated_by": "Dimaka", "camera_brand": "Xiaomi", - "camera_model": "Yi 4k", + "camera_model": "Yi 4K", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Z CAM/Z CAM_e1___1080p_16by9_1920x1080-59.96fps.json b/Z CAM/Z CAM_e1___1080p_16by9_1920x1080-59.96fps.json index b42e7ae5..d5e79625 100644 --- a/Z CAM/Z CAM_e1___1080p_16by9_1920x1080-59.96fps.json +++ b/Z CAM/Z CAM_e1___1080p_16by9_1920x1080-59.96fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "顾逸骏", "camera_brand": "Z CAM", - "camera_model": "e1", + "camera_model": "E1", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/Z CAM/Z CAM_e2 S6_Laowa 10mm_H265_4k_16by9_3840x2160-50.00fps.json b/Z CAM/Z CAM_e2 S6_Laowa 10mm_H265_4k_16by9_3840x2160-50.00fps.json index 7723abf6..3199c244 100644 --- a/Z CAM/Z CAM_e2 S6_Laowa 10mm_H265_4k_16by9_3840x2160-50.00fps.json +++ b/Z CAM/Z CAM_e2 S6_Laowa 10mm_H265_4k_16by9_3840x2160-50.00fps.json @@ -3,7 +3,7 @@ "note": "H265", "calibrated_by": "Pavel", "camera_brand": "Z CAM", - "camera_model": "e2 S6", + "camera_model": "E2 S6", "lens_model": "Laowa 10mm", "camera_setting": "", "calib_dimension": { diff --git a/Z CAM/Z CAM_e2m4_laowa7.5_59fps_4k_16by9_3840x2160-59.94fps.json b/Z CAM/Z CAM_e2m4_laowa7.5_59fps_4k_16by9_3840x2160-59.94fps.json index c411b735..62f10d30 100644 --- a/Z CAM/Z CAM_e2m4_laowa7.5_59fps_4k_16by9_3840x2160-59.94fps.json +++ b/Z CAM/Z CAM_e2m4_laowa7.5_59fps_4k_16by9_3840x2160-59.94fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Benson", "camera_brand": "Z CAM", - "camera_model": "e2m4", + "camera_model": "E2M4", "lens_model": "laowa7.5", "camera_setting": "59fps", "calib_dimension": { diff --git a/apeman/Apeman_a80___1080p_16by9_1920x1080-24.00fps.json b/apeman/Apeman_a80___1080p_16by9_1920x1080-24.00fps.json index 3682151a..872a03fd 100644 --- a/apeman/Apeman_a80___1080p_16by9_1920x1080-24.00fps.json +++ b/apeman/Apeman_a80___1080p_16by9_1920x1080-24.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "U0 A219", "camera_brand": "Apeman", - "camera_model": "a80", + "camera_model": "A80", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/apeman/apeman_4k___4k_16by9_3840x2160-25.00fps.json b/apeman/apeman_4k___4k_16by9_3840x2160-25.00fps.json index c6e61744..7bfecf5c 100644 --- a/apeman/apeman_4k___4k_16by9_3840x2160-25.00fps.json +++ b/apeman/apeman_4k___4k_16by9_3840x2160-25.00fps.json @@ -3,7 +3,7 @@ "note": "", "calibrated_by": "Giovanni Riccio", "camera_brand": "apeman", - "camera_model": "4k", + "camera_model": "4K", "lens_model": "", "camera_setting": "", "calib_dimension": { diff --git a/apeman/apeman_A80_Ultra Wide_2K ULTRA WIDE_2.5k_16by9_2560x1440-30.00fps.json b/apeman/apeman_A80_Ultra Wide_2K ULTRA WIDE_2.5k_16by9_2560x1440-30.00fps.json index fb14fa28..fa3089eb 100644 --- a/apeman/apeman_A80_Ultra Wide_2K ULTRA WIDE_2.5k_16by9_2560x1440-30.00fps.json +++ b/apeman/apeman_A80_Ultra Wide_2K ULTRA WIDE_2.5k_16by9_2560x1440-30.00fps.json @@ -2,7 +2,7 @@ "name": "apeman_A80_Ultra Wide_2K ULTRA WIDE_2.5k_16by9_2560x1440-30.00fps", "note": "", "calibrated_by": "QUESUS", - "camera_brand": "apeman", + "camera_brand": "Apeman", "camera_model": "A80", "lens_model": "Ultra Wide", "camera_setting": "2K ULTRA WIDE", diff --git a/apeman/apeman_A80__H.264 AVC MPEG-4 AVC, Scan_ progressive_1080p_16by9_1920x1080-60.00fps.json b/apeman/apeman_A80__H.264 AVC MPEG-4 AVC, Scan_ progressive_1080p_16by9_1920x1080-60.00fps.json index 996c4b52..150d626e 100644 --- a/apeman/apeman_A80__H.264 AVC MPEG-4 AVC, Scan_ progressive_1080p_16by9_1920x1080-60.00fps.json +++ b/apeman/apeman_A80__H.264 AVC MPEG-4 AVC, Scan_ progressive_1080p_16by9_1920x1080-60.00fps.json @@ -2,7 +2,7 @@ "name": "apeman_A80__H.264 AVC MPEG-4 AVC, Scan: progressive_1080p_16by9_1920x1080-60.00fps", "note": "H.264 AVC MPEG-4 AVC, Scan: progressive", "calibrated_by": "xyz", - "camera_brand": "apeman", + "camera_brand": "Apeman", "camera_model": "A80", "lens_model": "", "camera_setting": "", diff --git a/apeman/apeman_A87___4k_16by9_3840x2160-60.00fps.json b/apeman/apeman_A87___4k_16by9_3840x2160-60.00fps.json index c16c96f4..4f3f65e3 100644 --- a/apeman/apeman_A87___4k_16by9_3840x2160-60.00fps.json +++ b/apeman/apeman_A87___4k_16by9_3840x2160-60.00fps.json @@ -2,7 +2,7 @@ "name": "apeman_A87___4k_16by9_3840x2160-60.00fps", "note": "", "calibrated_by": "M.Griot", - "camera_brand": "apeman", + "camera_brand": "Apeman", "camera_model": "A87", "lens_model": "", "camera_setting": "", diff --git a/build_camera_database.py b/build_camera_database.py index 1fb8b4c1..b22752f2 100644 --- a/build_camera_database.py +++ b/build_camera_database.py @@ -155,6 +155,19 @@ def extra_camera_aliases(brand, model): return aliases +def legacy_brand_aliases(brand, model): + aliases = { + ("Feiyu Tech", "Pocket3"): ["Feiyu-Tech"], + ("Fujifilm", "XT200"): ["Fufifilm"], + ("IQOO", "26MM"): ["IQOO 9"], + ("LG", "V40"): ["LGE"], + ("Wolfang", "GA420"): ["WOLFGANG"], + ("Xiaomi", "12SU"): ["Mi"], + ("Xiaomi", "K30PRO1X"): ["MI"], + } + return aliases.get((brand, model), []) + + def merge_values(target, values): existing = {key(x) for x in target} for value in values: @@ -193,6 +206,7 @@ def merge_camera(cameras, camera): }) if key(existing["model"]) != key(camera["model"]): merge_values(existing["aliases"], [camera["model"]]) + merge_values(existing["brand_aliases"], legacy_brand_aliases(existing["brand"], existing["model"])) merge_values(existing["brand_aliases"], camera.get("brand_aliases", [])) merge_values(existing["aliases"], camera.get("aliases", [])) merge_values(existing["mounts"], camera.get("mounts", [])) From c5c3b69abd13efa104e5c83813a0ab8425f4a72b Mon Sep 17 00:00:00 2001 From: pickaxe <54486432+ProspectOre@users.noreply.github.com> Date: Mon, 11 May 2026 12:19:46 -0700 Subject: [PATCH 3/3] Allow release workflow to publish artifacts [skip ci] Merged after workflow YAML validation and passing build check; skip CI to avoid extra Actions minutes and notification churn. --- .github/workflows/release.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c6564331..948bf5b4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,9 +1,12 @@ name: Release -on: - push: - -jobs: +on: + push: + +permissions: + contents: write + +jobs: build: runs-on: ubuntu-latest steps: