Menu
Your Cart

BOYA BY-M1S Universal Lavalier Microphone

BOYA BY-M1S Universal Lavalier Microphone
BOYA BY-M1S Universal Lavalier Microphone
BOYA BY-M1S Universal Lavalier Microphone
BOYA BY-M1S Universal Lavalier Microphone
BOYA BY-M1S Universal Lavalier Microphone
  • Price: TK 1,100/-
  • Stock: In Stock
  • Model: BY-M1S
TK 1,100/-
Ex Tax: TK 1,100/-

Key Features

    • Model: BY-M1S
    • Clip-on mic for smartphones
    • High-quality condenser ideal for voice/video recording
    • Omni-directional pick-up pattern
    • No need battery, powered by devices
    Specification
    General Feature
    BrandBoya
    ModelBY-M1S
    Specification
    Output Impedance600Ω
    Technical Info
    BatteryN/A
    Frequency Range50Hz-20kHz
    Sensitivity-30dB,+/-3dB.f=1KHZ,Pin=1Pa,0dB=1V/Pa
    Physical Attributes
    ColorBlack
    Cable length6.0m
    Connector3.5mm(1/8’’) plug
    Dimensions18.00mmH x 8.30mmW x 8.30mmD
    Warranty Information
    Warranty02 Years
    Description

    BOYA BY-M1S Universal Lavalier Microphone

    The BOYA BY-M1S Universal Lavalier Microphone is a professional-grade audio solution designed to capture clear and crisp sound for a wide variety of applications. Ideal for vloggers, content creators, podcasters, and anyone needing high-quality audio for their videos or recordings, the BY-M1S provides exceptional performance in both indoor and outdoor environments.

    This omnidirectional microphone captures sound from all directions, ensuring that your voice is clear and audible, even if you move or turn away slightly from the mic. The flexible 6-meter (20 feet) cable gives you the freedom to move while recording, making it perfect for interviews, presentations, and live-streaming situations.

    The BOYA BY-M1S features a 3.5mm jack, making it compatible with a wide range of devices, including smartphones, tablets, DSLR cameras, laptops, and camcorders. Its plug-and-play functionality means that you don’t need to install any drivers or software – simply plug it in, and you’re ready to record.

    The microphone is equipped with a low-noise preamp, ensuring that your recordings are clear and free from background interference. The included clip makes it easy to attach the mic to your clothing for hands-free recording, adding convenience and comfort while you work.

    With its durable build and easy portability, the BOYA BY-M1S is a must-have for anyone serious about improving the audio quality of their video or audio recordings.

    Buying Suggestions from Dear IT Solution
    Get the BOYA BY-M1S Universal Lavalier Microphone at the best price in Bangladesh from Dear IT Solution. Known for its excellent sound quality and ease of use, this microphone is a fantastic choice for anyone looking to improve their recording setup. Order today for fast, reliable delivery!





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