Menu
Your Cart

MAONO DM30 RGB USB Gaming Microphone – Certified Special Edition

MAONO DM30 RGB USB Gaming Microphone – Certified Special Edition
MAONO DM30 RGB USB Gaming Microphone – Certified Special Edition
MAONO DM30 RGB USB Gaming Microphone – Certified Special Edition
MAONO DM30 RGB USB Gaming Microphone – Certified Special Edition
MAONO DM30 RGB USB Gaming Microphone – Certified Special Edition
  • Price: TK 4,500/-
  • Stock: In Stock
  • Model: DM30
TK 4,500/-
Ex Tax: TK 4,500/-

Key Features

    • Model: DM30
    • Connector: USB 2.0,
    • Type: Condenser, Polar Pattern: Cardioid
    • Sensitivity: -4dBFS (1V/Pa at 1kHz)
    • Frequency Response: 2OHz - 20kHz
    Specification
    General Feature
    BrandMaona
    ModelDM30
    Microphone TypeCondenser
    Technical Info
    Frequency Range2OHz - 20kHz
    Sensitivity-4dBFS (1V/Pa at 1kHz)
    Compatibility
    DSLRYes
    PCYes
    SmartphoneYes
    Physical Attributes
    ColorBlack & White
    ConnectorUSB 2.0
    Warranty Information
    Warranty06 Month
    Description

    MAONO DM30 RGB USB Gaming Microphone In BD  

    The MAONO DM30 RGB USB Gaming Microphone is a certified special edition designed for serious gamers and streamers who demand superior sound quality and a visually dynamic setup. Featuring RGB lighting, this microphone adds an extra layer of personalization to your gaming or streaming environment, with customizable color modes that match your style and set the right mood.

    Equipped with a premium condenser capsule, the DM30 delivers crystal-clear audio that captures every nuance of your voice, ensuring your audience hears you with pristine clarity. The cardioid polar pattern focuses on picking up sound from the front, significantly reducing background noise and unwanted distractions. Whether you're recording podcasts, streaming games, or chatting with friends, the DM30 ensures your voice takes center stage.

    This microphone offers plug-and-play functionality via USB, making it compatible with PCs, laptops, and gaming consoles without the need for additional drivers or complex setups. Simply connect it, and you're good to go, saving you time and hassle.

    The adjustable stand allows you to position the mic at the perfect angle, and its shock mount helps reduce vibrations and handling noise, ensuring smooth, consistent audio during intense gaming sessions or long streaming marathons.

    With its RGB lighting, high-quality condenser, and easy setup, the MAONO DM30 RGB USB Gaming Microphone is a must-have for any gamer or content creator looking to level up their setup.


    Buying Suggestion from Dear IT Solution

    For the best price in Bangladesh, buy the MAONO DM30 RGB USB Gaming Microphone is a certified special edition from Dear IT Solution. Get this high-performance, certified microphone today and enhance your gaming or streaming experience with stunning sound and customizable RGB lighting. Order now to take your content to the next level!

    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};