


Capturing audio and video information has long been a difficulty in Web development. For many years, we have relied on browser plug-ins to fulfill this need.
In HTML 5, there are many APIs that can access hardware devices, such as Geolocation API to access GPS devices, Orientation API to access accelerometer devices, WebGL API to access GPU devices, Web Audio API to access audio playback devices, etc. . These APIs are very powerful because developers can directly access the underlying hardware devices by writing JavaScript script code.
This article introduces a new API that allows web applications to have the ability to access the user's camera and microphone devices by using the navigatior.getUserMedia() method.
History of technology development for capturing media data
In the past few years, the need to access client local devices in web applications began to emerge, so the W3C organization decided to organize A DAP (Device APIS POLICY) working group to develop a unified standard for the realization of this requirement.
Let’s take a look at what happened in 2011:
Capturing media data in HTML page files
The first standard to be developed by the DAP working group is how Capture media data in HTML pages of web applications. They decided to overload the input element of type file () and add a new attribute value to the accept attribute.
If the developer wants to implement the function of users taking pictures through the camera, they can write the code as shown below.
The code for recording video data and audio data is similar:
In these codes, just use the file control (input element of type file) to complete the photo taking or the ability to record media data. However, because these codes still lack the ability to implement some related requirements (such as rendering captured video data in canvas elements, or applying WEBGL filters to captured video data), they have not been widely used by developers. application.
Supported browsers:
Android 3.0 browser
Chrome for Android (0.16)
Firefox Mobile 10.0
device element
If you use the file control, capture the media data and process it Processing capabilities are very limited, so a new standard emerged that could support any device. This standard uses the device element.
Opera browser is the first browser to capture video data through the device element. Almost on the same day, the WhatWG organization decided to use the navigator.getUserMedia() method to capture media data. A week later, Opera launched a new browser that supports the navigator.getUserMedia() method. Later, Microsoft Tools launched the IE 9 browser that supports this method. The usage of
device element is as follows.
<script> <br />function update(stream) { <br />document. querySelector('video').src = stream.url; <br />} <br /></script>
Supported browsers:
Unfortunately, no official version of the browser supports the device element so far.
WEBRTC
Recently, due to the emergence of WebRTC (Web Real Time Communication: Web real-time communication) API, media data capture technology has made great progress. Google, Opera, Mozilla and other companies are working hard to implement it in their browsers.
WebRTC API is an API closely related to the getUserMedia method, which provides the ability to access the client's local camera or microphone device.
Supported browsers:
So far, in the Chrome 18 version of the browser, WebRTC can be used after setting it in the chrome://flags page. In the Chrome 21 version of the browser, this API is used by default. , no more settings required. The WebRTC API is supported by default in browsers above Opera 12 and Firefox 17.
Using the getUserMedia method
By using the getUserMedia method, we can directly access the client's local camera device and microphone device without relying on plug-ins.
Detecting browser support
You can use the method shown below to detect whether the browser supports the getUserMedia method.
function hasGetUserMedia() {
/ /Please note: The prefix
return is not used in Opera browser!!(navigator.getUserMedia || navigator.webkitGetUserMedia ||
navigator.mozGetUserMedia || navigator.msGetUserMedia);
}
if (hasGetUserMedia()) {
alert('Your browser supports the getUserMedia method');
}
else {
alert('Your browser does not support the getUserMedia method');
}
Get permission to access the device
In order to access the client camera device and microphone device, we first need to obtain permission. The first parameter of the getUserMedia method is an object specifying the media type. For example, when you want to access the camera device, the first parameter should be {video:true}. In order to access the camera device and microphone device at the same time, you need to use the {video:true,audio:true} parameters. The code is as follows:
In this code, the use of video elements is combined. Please note that we do not use the src attribute value of the video element, but specify a URL address that refers to the media file for the video element, and convert the LocalMediaStream object representing the video data obtained from the camera into a Blob URL.
In this code, the autoplay attribute is also used for the video element. If this attribute is not used, the video element will stay at the first frame obtained.
Please note: In the Chrome browser, if you only use {audio:true}, a BUG will occur. In the Opera browser, the audio element cannot be used either.
If you want multiple browsers to support the getUserMedia method at the same time, please use the code as shown below:
window.URL = window.URL || window.webkitURL;
navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia ||
navigator. mozGetUserMedia || navigator.msGetUserMedia;
var video = document.getElementById('video');
if (navigator.getUserMedia) {
navigator.getUserMedia({audio: true, video: true}, function (stream) {
video.src = window.URL.createObjectURL(stream);
}, onFailSoHard);
}
else {
alert('Your browser does not support getUserMedia Method');
}
Security
In some browsers, when the getUserMedia method is called, a prompt window is displayed asking the user whether to allow or deny access to their camera or microphone.
Take photos
In the Canvas API, you can use the ctx.drawImage(video,0,0) method to output a certain frame in the video element to the canvas element. Of course, since we have output the captured image information from the user's camera to the video element, of course, we can also output the image information to the canvas element through the video element, that is, to realize the real-time photo taking function. The code is as follows.
> ;
var video = document.getElementById('video');
var canvas = document.getElementById('canvas');
var ctx = canvas.getContext('2d');
var localMediaStream = null;
function snapshot() {
if (localMediaStream) {
ctx.drawImage(video, 0, 0);
document.getElementById('img').src = canvas.toDataURL( 'image/png');
}
}
video.addEventListener('click', snapshot, false);
//Do not use vendor prefix
navigator.getUserMedia({video : true}, function(stream) {
video.src = window.URL.createObjectURL(stream);
localMediaStream = stream;
}, onFailSoHard);
Apply CSS Filters
So far, CSS filters can be used in Chrome 18 and above browsers.
Through the use of CSS filters, we can add various image filter effects to the video captured in the video element.
<script> <br />var idx = 0; <br />var filters = ['grayscale', 'sepia', 'blur', 'brightness', 'contrast', 'hue-rotate', <br />'hue-rotate2', ' hue-rotate3', 'saturate', 'invert', '']; <br />function changeFilter(e) { <br />var el = e.target; <br />el.className = ''; <br />var effect = filters[idx % filters.length]; // loop through filters. <br />if (effect) { <br />el.classList.add(effect); <br />} <br />} <br />document. getElementById('video').addEventListener('click', changeFilter, false); <br /></script>

在Win11电脑上听音乐或看电影,如果扬声器或耳机听起来不平衡,用户可以根据自己的需求手动调整平衡级别。那么我们要如何调整呢?针对这个问题,小编带来了详细的操作教程,希望可以帮到大家。如何在Windows11中平衡左右音频通道?方法一:使用“设置”应用点击键并单击设置。Windows单击系统,然后选择声音。选择更多声音设置。单击您的扬声器/耳机,然后选择属性。导航到“级别”选项卡,然后单击“余额”。确保“左”和

从我记事开始,家里就有一对落地式的大尺寸音箱,让我一直认为电视只有配上一套完整的音响系统才能称得上是电视。但是刚开始工作的时候,我买不起专业的家庭音响。经过查询和了解产品定位后,我发现回音壁这个品类非常适合我,不论是音质、体积还是价格都符合我的需求。因此,我决定选择回音壁。精挑细选后,我选中了2024年初Bose推出了这款全景声回音壁产品:Bose家庭娱乐扬声器Ultra。(图片来源:雷科技摄制)一般来说,想要体验到「原汁原味」的杜比全景声效果,需要我们在家中布置一套经过测量、校准的环绕声+吊顶
![调整 Windows 11 上的音频平衡 [左右声道] 的方法](https://img.php.cn/upload/article/000/000/164/169641822765817.jpg)
如果您在Windows计算机上听音乐或看电影,您可能已经注意到一侧的声音比另一侧大。这可能是音频设备的默认设置。幸运的是,调整系统的音频平衡相当容易。本文将介绍执行此操作的步骤。为什么我的耳机一侧在Windows11上更安静?大多数情况下,问题可能是耳机未紧密插入或连接松动。此外,如果耳机插孔损坏,您的声卡问题或音频设备受到干扰,您会注意到声音的差异。另一个原因可能是因为它们内部的布线。电线可能已经松动或彼此断开,这会导致耳机不同部分之间的通信出现问题。如何在Windows11中平衡左右音频通道

虽然Windows能够管理电脑上的声音,但您可能仍希望干预和重置声音设置,以防您遇到音频问题或故障。然而,随着Microsoft在Windows11中所做的美学变化,将这些设置归零变得更加困难。因此,让我们深入了解如何在Windows11上查找和管理这些设置或重置它们以防出现任何问题。如何以7种简单的方式重置Windows11中的声音设置以下是在Windows11中重置声音设置的七种方法,具体取决于您面临的问题。让我们开始吧。方法1:重置应用的声音和音量设置按键盘上的按钮打开“设置”应用。现在点

如果您的某个扬声器出现故障且不再工作,您的音质将受到影响。立即更换它可能不是一种选择,但您可以启用单声道音频设置以获得标准化的声音输出。但是,默认情况下它是禁用的,因此以下是在Windows计算机上将左右通道合并为一个的方法。打开或关闭单声道音频更好吗?这取决于情况。如果您有很多背景噪点或拍摄对象移动太多,那么单声道声音可能是您项目的最佳选择。但是,如果您想要更好地控制声音或每个小声音都很重要的身临其境的体验,立体声模式将是一个更好的选择。单声道音频有哪些好处?听音频不需要太多的注意力。听起来更

win10系统是一款可以进行各种设置和调节的系统,今天小编为大家带来的就是realtek高清晰音频管理器怎么设置麦克风的解决办法!感兴趣的话就快来看看吧。realtek高清晰音频管理器怎么设置麦克风:1、在桌面左下角的显示隐藏图标中找到“realtek高清晰音频管理器”图标。2、点击进入界面中,首先看到的是“扬声器页面”,这个界面可以通过喇叭组态调整喇叭的声音。3、接着是音效,你可以选择自己想要的音效的环境以及“均衡器,流行、摇滚、俱乐部”等等。4、接着是室内矫正音质,室内空间矫正只能够矫正在“

有一些小伙伴反映自己电脑中的声音即使开到了最大,音量依旧偏小,这时就可以将系统中的增强音频功能打开,那么具体应该怎么操作呢,接下来小编就给大家详细介绍一下Win11增强音频的打开方法,有需要的小伙伴可以来看一看。打开方法:1、右击左下角任务栏中的开始,选择选项列表中的"设置"。2、进入到新的界面后,点击"系统"中的"声音"选项。3、随后点击"高级"中的"所有声音设备"。4、然后选择"输出设备"中的"耳机"或者"扬声器"。5、最后找到"增强音频",并将其右侧的开关按钮打开就可以了。

如果您在Windows11/10PC上遇到RealtekHD音频驱动程序失败错误代码0x00005b3,请参考以下步骤以解决问题。我们将指导您进行故障排除并解决该错误。错误代码0x00005b3可能是由于音频驱动程序的安装问题导致的。可能是当前的驱动程序损坏或部分卸载,从而影响新驱动程序的安装。此问题还可能由磁盘空间不足或与Windows版本不兼容的音频驱动程序引起。安装RealtekHD音频驱动程序失败!![错误代码:0x00005B3]如果Realtek音频驱动程序安装向导出现问题,继续阅读


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

SublimeText3 Chinese version
Chinese version, very easy to use

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
