Menu
Your Cart

MAONO HD300T USB/XLR Dynamic Broadcast Microphone

MAONO HD300T USB/XLR Dynamic Broadcast Microphone
MAONO HD300T USB/XLR Dynamic Broadcast Microphone
-23 % Out Of Stock
MAONO HD300T USB/XLR Dynamic Broadcast Microphone
MAONO HD300T USB/XLR Dynamic Broadcast Microphone
MAONO HD300T USB/XLR Dynamic Broadcast Microphone
  • Stock: Out Of Stock
  • Model: HD300T
TK 5,400/-
TK 7,000/-
Ex Tax: TK 5,400/-

Key Features

    • Model:HD300T
    • Microphone-core: Dynamic
    • Polar Pattern: Cardioid
    • Frequency Response: 40Hz -17kHz
    • Bit Depth: 16 bit
    • Warranty: 06 Month
    Specification
    General Feature
    BrandMaono
    ModelHD300T
    Microphone TypeYes
    Compatibility
    Audio recordersYes
    DSLRYes
    PCYes
    SmartphoneYes
    Physical Attributes
    ColorBlack
    Dimensions
    Weight318g
    Warranty Information
    Warranty06 Month
    Description

    MAONO HD300T USB/XLR Dynamic Broadcast Microphone

    The MAONO HD300T is a professional-grade dynamic microphone designed for broadcasting, podcasting, live streaming, and studio recording. Featuring both USB and XLR connectivity, this microphone offers versatility for different recording setups. Whether you are a content creator, musician, or professional broadcaster, the HD300T delivers clear and natural audio output with minimal background noise.

    Equipped with a high-quality cardioid pickup pattern, the MAONO HD300T focuses on capturing sound directly in front of the microphone, effectively reducing ambient noise. The built-in headphone jack allows for real-time monitoring, ensuring precise audio adjustments.

    The microphone features a sturdy metal construction, providing durability and a professional feel. The included shock mount and pop filter further enhance audio quality by reducing vibrations and plosive sounds. With plug-and-play USB compatibility, it works seamlessly with Windows, Mac, and most recording software.


    Buying Suggestion from Dear IT Solution

    Get the MAONO HD300T USB/XLR Dynamic Broadcast Microphone at the best price in Bangladesh from Dear IT Solution. Perfect for professional recordings, podcasts, and live streaming, this microphone offers superior sound quality and versatility. Order now for fast delivery and excellent customer support

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