├── .github └── workflows │ └── auto-publish.yml ├── .prettierrc.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── actions ├── .pr-preview.json ├── capture-handle-actions.js ├── explainer.md └── index.html ├── identity ├── .pr-preview.json ├── .prettierrc.json ├── CHANGELOG.md ├── capture-handle-identity.js ├── demos │ ├── index.html │ ├── remote_control │ │ ├── captured.html │ │ ├── capturer.html │ │ └── index.html │ └── self_capture_detection │ │ └── index.html ├── explainer.md ├── index.html └── security-privacy-questionnaire.md ├── index.html └── w3c.json /.github/workflows/auto-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-handle/HEAD/.github/workflows/auto-publish.yml -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 100 3 | } 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-handle/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-handle/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-handle/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-handle/HEAD/README.md -------------------------------------------------------------------------------- /actions/.pr-preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-handle/HEAD/actions/.pr-preview.json -------------------------------------------------------------------------------- /actions/capture-handle-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-handle/HEAD/actions/capture-handle-actions.js -------------------------------------------------------------------------------- /actions/explainer.md: -------------------------------------------------------------------------------- 1 | TBD -------------------------------------------------------------------------------- /actions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-handle/HEAD/actions/index.html -------------------------------------------------------------------------------- /identity/.pr-preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-handle/HEAD/identity/.pr-preview.json -------------------------------------------------------------------------------- /identity/.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 100 3 | } 4 | -------------------------------------------------------------------------------- /identity/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-handle/HEAD/identity/CHANGELOG.md -------------------------------------------------------------------------------- /identity/capture-handle-identity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-handle/HEAD/identity/capture-handle-identity.js -------------------------------------------------------------------------------- /identity/demos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-handle/HEAD/identity/demos/index.html -------------------------------------------------------------------------------- /identity/demos/remote_control/captured.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-handle/HEAD/identity/demos/remote_control/captured.html -------------------------------------------------------------------------------- /identity/demos/remote_control/capturer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-handle/HEAD/identity/demos/remote_control/capturer.html -------------------------------------------------------------------------------- /identity/demos/remote_control/index.html: -------------------------------------------------------------------------------- 1 | capturer.html -------------------------------------------------------------------------------- /identity/demos/self_capture_detection/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-handle/HEAD/identity/demos/self_capture_detection/index.html -------------------------------------------------------------------------------- /identity/explainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-handle/HEAD/identity/explainer.md -------------------------------------------------------------------------------- /identity/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-handle/HEAD/identity/index.html -------------------------------------------------------------------------------- /identity/security-privacy-questionnaire.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-handle/HEAD/identity/security-privacy-questionnaire.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-handle/HEAD/index.html -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/mediacapture-handle/HEAD/w3c.json --------------------------------------------------------------------------------