Menu
Your Cart

MAONO PD200X + Boom Arm Stand USB/XLR Microphone Set for Streamers

MAONO PD200X + Boom Arm Stand USB/XLR Microphone Set for Streamers
MAONO PD200X + Boom Arm Stand USB/XLR Microphone Set for Streamers
-14 % Out Of Stock
MAONO PD200X + Boom Arm Stand USB/XLR Microphone Set for Streamers
MAONO PD200X + Boom Arm Stand USB/XLR Microphone Set for Streamers
MAONO PD200X + Boom Arm Stand USB/XLR Microphone Set for Streamers
  • Stock: Out Of Stock
  • Model: PD200X
TK 6,800/-
TK 7,900/-
Ex Tax: TK 6,800/-

Key Features

    • Model: PD200X
    • Connector Type: USB, USB Type-C, XLR
    • Polar Pattern: Cardioid
    • Material: Metal
    • Max.SPL: >130dB SPL
    Specification
    General Feature
    BrandMaono
    ModelPD200X
    Microphone TypeYes
    Technical Info
    SensitivityXLR:-52dBV USB:-10.5dBFS/Pa(Max)
    Compatibility
    Audio recordersYes
    DSLRYes
    PCYes
    SmartphoneYes
    Physical Attributes
    ColorBlack & White
    ConnectorUSB, USB Type-C, XLR
    Warranty Information
    Warranty06 Month
    Description

    MAONO PD200X + Boom Arm Stand USB/XLR Microphone In BD  

    The MAONO PD200X + Boom Arm Stand USB/XLR Microphone Set is the ultimate solution for streamers, podcasters, and content creators who demand exceptional audio quality and versatility. This all-in-one microphone bundle includes the PD200X USB/XLR dynamic microphone and a premium boom arm stand, providing everything you need to enhance your streaming or recording setup.

    The PD200X microphone is designed with dual connectivity options (USB for easy plug-and-play use and XLR for professional audio setups), making it ideal for a wide range of applications. Whether you're streaming, podcasting, or recording vocals, the microphone's dynamic cardioid polar pattern isolates your voice while minimizing background noise, delivering crystal-clear sound quality.

    Additionally, the dynamic capsule of the PD200X ensures warmth and clarity in your recordings, capturing every nuance of your voice for a professional audio experience. The built-in gain control knob allows you to adjust the microphone sensitivity based on your environment, ensuring consistent sound levels throughout your session.

    Included with the microphone is a high-quality boom arm stand, designed to provide flexible positioning and support. The arm is fully adjustable, allowing you to set the microphone at the perfect angle for your recordings or streams. The stand's sturdy build ensures durability and minimizes vibrations, delivering smooth and stable performance during use.

    This bundle is compatible with a range of devices, including PCs, laptops, and gaming consoles via USB, and can be used with audio interfaces for professional setups through XLR.


    Buying Suggestion from Dear IT Solution

    Upgrade your content creation setup today by purchasing the MAONO PD200X + Boom Arm Stand USB/XLR Microphone Set from Dear IT Solution. We offer the best price in Bangladesh and guarantee top-quality products along with excellent customer service. Whether you're a beginner or a seasoned streamer, this bundle has everything you need for superior sound and performance. Order now and take your streams and recordings 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};