Menu
Your Cart

BOYA Mini-13 Wireless Microphone System

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

Key Features

    • Model: Mini-13
    • Noise Cancellation & 3-Level Voice Changer
    • 2x Plug-In Receivers, USB Type-C & Lightning
    • Plug and Play, Auto Pairing, Studio-Quality Sound
    • 30-Hour Battery Life
    Specification
    General Feature
    BrandBoya
    ModelMini-13
    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
    Weight29g
    Warranty Information
    Warranty02 Years
    Description

    BOYA Mini-13 Wireless Microphone System

    The BOYA Mini-13 Wireless Microphone System is a compact and highly efficient audio solution designed for content creators, vloggers, and professionals who need high-quality sound without the hassle of wires. Featuring advanced wireless technology, this system offers reliable, clear, and distortion-free audio transmission, making it perfect for capturing voice in various environments, from interviews to outdoor shoots.

    Equipped with 2.4GHz wireless transmission, the BOYA Mini-13 ensures a stable and interference-free connection, which is essential for maintaining high audio quality. It operates across a wide range, providing flexibility to move around freely while still maintaining clear audio reception, even from a distance. This feature is especially beneficial for dynamic filming scenarios, allowing for more natural movement and interaction.

    The system includes a compact transmitter and receiver that are lightweight and easy to handle, perfect for on-the-go recording. The omnidirectional microphone captures sound from all directions, ensuring that your voice is clearly heard without having to position the mic directly in front of you. It’s ideal for capturing natural, unintrusive audio, whether you’re shooting indoors or outdoors.

    The BOYA Mini-13 features long battery life, supporting up to 6 hours of continuous use, ensuring that you can record without worrying about frequent recharging. It is compatible with smartphones, cameras, and other devices with a 3.5mm audio input, making it highly versatile for different types of recording setups.

    Buying Suggestions from Dear IT Solution
    Get the BOYA Mini-13 Wireless Microphone System at the best price in Bangladesh from Dear IT Solution. Offering excellent sound quality and ease of use, this system is perfect for professionals and enthusiasts looking to enhance their audio recording setup. Order now and enjoy the convenience of wireless audio!

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