HD Camera Feed in Video Calls

Try to enforce HD (16:9) camera aspect ratio for web-video calls

HD Camera Feed in Video Calls란 무엇입니까?

HD Camera Feed in Video Calls은(는) Getify Solutions에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Try to enforce HD (16:9) camera aspect ratio for web-video calls"입니다.

확장 프로그램 스크린샷

screenshot

HD Camera Feed in Video Calls 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This browser extension attempts to fix a problem I've experienced on some video-calling sites (specifically, Zoom/WhereBy/Google-Meet), where their web clients don't properly ask for HD (1280x720 or 1920x1080) resolution from your camera, and in some cases (like mine) it results in squished/distorted video instead of just nice cropping as would be expected.

This extension patches the built-in "getUserMedia(..)" API to intercept these kinds of calls and to force a request for 1280x720. Thus, if your camera supports that 16:9 HD aspect ratio, a proper non-squished feed will be returned to the web client. If your camera only supports 4:3 aspect ratio, such as 1024x768 or 640x480, then the request should nicely downgrade for your camera and still provide non-squished (albeit not-HD aspect ratio) video for your calls.

By default, the settings for this extension only apply the patch to Zoom/WhereBy/Google-Meet sites. You can change the settings to apply to different sites. There's also a handy enable/disable toggle switch if you want to quickly turn off the extension temporarily without actually uninstalling it.                    

확장 프로그램 기본 정보

이름 HD Camera Feed in Video Calls HD Camera Feed in Video Calls
ID aojddkcamiecmkmbecpkjddnhpnpoaab
공식 URL https://chromewebstore.google.com/detail/hd-camera-feed-in-video-c/aojddkcamiecmkmbecpkjddnhpnpoaab
설명 Try to enforce HD (16:9) camera aspect ratio for web-video calls
파일 크기 106 KB
설치 횟수 1,606
현재 버전 1
최근 업데이트 2020-09-25
출시 날짜 2020-09-25
평점 4.00/5 총 4 개의 평점
개발자 Getify Solutions
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/getify/gum-try-hd
도움말 페이지 URL https://github.com/getify/gum-try-hd/issues
개인정보 보호 정책 페이지 URL https://github.com/getify/gum-try-hd/blob/master/README.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HD Camera Feed in Video Calls",
    "author": "Kyle Simpson",
    "version": "1",
    "description": "Try to enforce HD (16:9) camera aspect ratio for web-video calls",
    "icons": {
        "16": "images\/logo-16.png",
        "24": "images\/logo-24.png",
        "32": "images\/logo-32.png",
        "48": "images\/logo-48.png",
        "96": "images\/logo-96.png",
        "128": "images\/logo-128.png"
    },
    "options_ui": {
        "page": "settings.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "js\/external\/webextension-polyfill.min.js",
            "js\/controller.js"
        ],
        "persistent": false
    },
    "content_scripts": [],
    "web_accessible_resources": [
        "js\/patch-gum.js"
    ],
    "permissions": [
        "https:\/\/*\/*",
        "storage",
        "tabs"
    ]
}