MEE audio CL8A 1080P Live Webcam With Led Ring Light
MEE audio CL8A 1080P Live Webcam With Led Ring Light
MEE audio CL8A 1080P Live Webcam With Led Ring Light
MEE audio CL8A 1080P Live Webcam With Led Ring Light
MEE audio CL8A 1080P Live Webcam With Led Ring Light
MEE audio CL8A 1080P Live Webcam With Led Ring Light
MEE audio CL8A 1080P Live Webcam With Led Ring Light
MEE audio CL8A 1080P Live Webcam With Led Ring Light
MEE audio CL8A 1080P Live Webcam With Led Ring Light
MEE audio CL8A 1080P Live Webcam With Led Ring Light
MEE audio CL8A 1080P Live Webcam With Led Ring Light
MEE audio CL8A 1080P Live Webcam With Led Ring Light

MEE audio CL8A 1080P Live Webcam With Led Ring Light

Price
$59.00
$42.00
Save  $17.00
Quantity
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Vendor by: Computer Accessories
SKU: '26533

An LED ring light provides a consistent, direct light source to reduce shadows and minimize blemishes, helping you look more professional when you chat, stream, and video conference.

Features:
  • ADJUSTABLE LED RING LIGHT WITH 3 BRIGHTNESS LEVELS: The MEE audio CL8A features a built-in LED Ring Light with three levels of adjustable lighting, which can be cycled through using a touch control panel on the front of the webcam. By reducing shadows and imperfections, the ring light helps you get the lightning just right in order to look more professional while streaming, videoconferencing, or shooting video.
  • FULL HD 1080p VIDEO: Capture HD video in up to 1080p (1920 x 1080) resolution at 30 fps for smooth and natural motion, allowing you to avoid stuttering and lag in video calls across all devices and platforms. Real-time autofocus technology keeps your video sharp while automatic low light correction - together with the integrated ring light - help deliver high-quality video even in dimly lit environments.
  • 360° ADJUSTABLE MOUNT: Integrated mounting clip lets you easily and securely mount your webcam on your laptop or PC monitor and offers 360 degree rotation so that you can adjust the angle of your webcam independently from the position of your screen. The clip also features standard 1/4"-20 thread for use with mini tripods. Tripod not included.
  • WIDE COMPATIBILITY: Plug and play connectivity for all popular videoconferencing software including Zoom, Google Meet, Google Hangouts, Microsoft Teams, Skype, etc. Compatible with Windows, macOS, and ChromeOS.
  • BUILT-IN MICROPHONE AND PRIVACY INDICATOR: Built-in omnidirectional microphone captures clear audio from all directions, letting you stay connected to colleagues, friends, and family from a distance with high quality audio as well as video. A built-in privacy indicator light lets you know when your webcam is capturing video for added peace of mind.
Specifications:
  • Maximum Resolution: 1080p (1920x1080)
  • Framerate: 30fps
  • Focusing mode: Autofocus
  • Field of view: 67°
  • Brand: MEE audio
Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.