Menu
Your Cart

BOYA Mini-12 Wireless Microphone System

BOYA Mini-12 Wireless Microphone System
BOYA Mini-12 Wireless Microphone System
BOYA Mini-12 Wireless Microphone System
BOYA Mini-12 Wireless Microphone System
BOYA Mini-12 Wireless Microphone System
BOYA Mini-12 Wireless Microphone System
BOYA Mini-12 Wireless Microphone System
  • Price: TK 6,400/-
  • Stock: In Stock
  • Model: Mini-12
TK 6,400/-
Ex Tax: TK 6,400/-

Key Features

    • Model: Mini-12
    • Noise Cancellation & 3-Level Voice Changer
    • 2 x Plug-In Receivers, USB Type-C & Lightning
    • Plug and Play, Auto Pairing, Studio-Quality Sound
    • 30-Hour Battery Life
    Specification
    General Feature
    BrandBoya
    ModelMini-12
    Noise/Signal> 80 dB
    Technical Info
    BatteryBattery Life: 6 Hours Battery Capacity: 260 mAh
    Frequency Range20 Hz - 20 kHz
    Physical Attributes
    ColorBlack
    Dimensions67.4 × 48.4 × 22.5 mm
    Weight29 g
    Warranty Information
    Warranty02 Years
    Description

    BOYA Mini-12 Wireless Microphone System

    The BOYA Mini-12 Wireless Microphone System is an advanced, compact, and portable solution for high-quality audio recording. Designed for vloggers, content creators, and professional videographers, this wireless microphone system ensures clear and crisp audio while offering ease of use and flexibility.

    Featuring 2.4GHz wireless technology, the Mini-12 delivers stable and interference-free audio transmission, even in environments with multiple wireless devices. Its compact design makes it easy to carry and use in various recording scenarios, whether for indoor interviews, outdoor shooting, or live-streaming sessions. The wireless feature eliminates the need for tangled cables, providing you with a hassle-free experience as you move around while recording.

    Equipped with an omnidirectional microphone, the BOYA Mini-12 picks up sound from all directions, ensuring natural and balanced audio capture. This makes it ideal for capturing interviews, discussions, and other dynamic audio sources without worrying about mic placement. The system operates on a rechargeable battery that can last up to 6 hours, making it suitable for long recording sessions without interruptions.

    The BOYA Mini-12 Wireless Microphone System is compatible with a variety of devices, including cameras, smartphones, and laptops, making it versatile for all types of content creation. Its easy plug-and-play setup allows you to start recording right away, with no need for additional equipment or software.

    Buying Suggestions from Dear IT Solution
    Purchase the BOYA Mini-12 Wireless Microphone System from Dear IT Solution for the best price in Bangladesh. Perfect for content creators and professionals alike, this microphone system guarantees high-quality audio recording, whether you're shooting indoors or outdoors. Order now and elevate your sound recording experience

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