Menu
Your Cart

MAONO AU-WM821 Dual Wireless Mic System – Clear Audio Anywhere

MAONO AU-WM821 Dual Wireless Mic System – Clear Audio Anywhere
MAONO AU-WM821 Dual Wireless Mic System – Clear Audio Anywhere
MAONO AU-WM821 Dual Wireless Mic System – Clear Audio Anywhere
-19 % Out Of Stock
MAONO AU-WM821 Dual Wireless Mic System – Clear Audio Anywhere
MAONO AU-WM821 Dual Wireless Mic System – Clear Audio Anywhere
MAONO AU-WM821 Dual Wireless Mic System – Clear Audio Anywhere
MAONO AU-WM821 Dual Wireless Mic System – Clear Audio Anywhere
  • Stock: Out Of Stock
  • Model: AU-WM821
TK 13,400/-
TK 16,500/-
Ex Tax: TK 13,400/-

Key Features

    • Model: AU-WM821
    • WM821 MNCT denoise tech for clear sound
    • Long 20-hour working time with LED display
    • Real plug & play for easy setup
    • Supports dual recording and stereo/mono mode
    • Warranty: 06 Month
    Description

    MAONO AU-WM821 Dual Wireless Mic  In BD 

    The MAONO AU-WM821 Dual Wireless Mic System is a versatile and professional-grade solution for capturing clear audio in any setting. Designed for interviews, vlogging, live streaming, and presentations, this wireless microphone system ensures crystal-clear sound quality and user-friendly functionality.

    The dual-channel design allows you to use two microphones simultaneously, making it ideal for two-person interviews or collaborations. Its 2.4GHz wireless transmission provides a stable connection with a range of up to 50 meters, ensuring uninterrupted recording even in dynamic environments.

    Equipped with omnidirectional lavalier microphones, the AU-WM821 captures sound from all directions while reducing ambient noise for a clean and professional audio output. Its plug-and-play compatibility makes it easy to use with smartphones, cameras, and other recording devices, without the need for additional software or drivers.

    The system features a compact and lightweight design, allowing for seamless portability and comfort during extended use. The transmitter and receiver include built-in rechargeable batteries that provide up to 6 hours of continuous operation, making it perfect for long shoots or events. The LED indicators help monitor battery life and connectivity status at a glance.


    Buying Suggestion from Dear IT Solution

    Purchase the MAONO AU-WM821 Dual Wireless Mic System from Dear IT Solution to enjoy the best price and service in Bangladesh. Whether you’re a content creator or a professional presenter, this microphone system offers reliability and superior sound quality to enhance your work. Order now and experience fast delivery, ensuring you can start creating with the MAONO AU-WM821 right away.





    Review

    Write a review

    Note: HTML is not translated!
    Bad Good
    Critial Path: Hello world!
    Hello world!
    /** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: Apache-2.0 *//** * @fileoverview Diagnostic audit that lists all JavaScript libraries detected on the page */import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js';const UIStrings = { /** Title of a Lighthouse audit that provides detail on the Javascript libraries that are used on the page. */ title: 'Detected JavaScript libraries', /** Description of a Lighthouse audit that tells the user what this audit is detecting. This is displayed after a user expands the section to see more. No character length limits. */ description: 'All front-end JavaScript libraries detected on the page. [Learn more about this JavaScript library detection diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/).', /** Label for a column in a data table; entries will be the version numbers of the detected Javascript libraries. */ columnVersion: 'Version', };const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);class JsLibrariesAudit extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'js-libraries', title: str_(UIStrings.title), scoreDisplayMode: Audit.SCORING_MODES.INFORMATIVE, description: str_(UIStrings.description), requiredArtifacts: ['Stacks'], }; }/** * @param {LH.Artifacts} artifacts * @return {LH.Audit.Product} */ static audit(artifacts) { const libDetails = artifacts.Stacks .filter(stack => stack.detector === 'js') // Don't show the fast paths in the table. .filter(stack => !stack.id.endsWith('-fast')) .map(stack => ({ name: stack.name, version: stack.version, npm: stack.npm, }));/** @type {LH.Audit.Details.Table['headings']} */ const headings = [ {key: 'name', valueType: 'text', label: str_(i18n.UIStrings.columnName)}, {key: 'version', valueType: 'text', label: str_(UIStrings.columnVersion)}, ]; const details = Audit.makeTableDetails(headings, libDetails);const debugData = { type: /** @type {const} */ ('debugdata'), stacks: artifacts.Stacks.map(stack => { return { id: stack.id, version: stack.version, }; }), };if (!libDetails.length) { return {score: null, notApplicable: true}; }return { score: 1, // Always pass for now. details: { ...details, debugData, }, }; } }export default JsLibrariesAudit; export {UIStrings};