Menu
Your Cart

Dahua HAC-T1A51P 5MP HDCVI IR Dome Camera

Dahua HAC-T1A51P 5MP HDCVI IR Dome Camera
In Stock
Dahua HAC-T1A51P 5MP HDCVI IR Dome Camera
  • Stock: In Stock
  • Model: DH-HAC-T1A51P
TK 1,900/-
Ex Tax: TK 1,900/-

Key Features

    • MPN: DH-HAC-T1A51P
    • Model: HAC-T1A51P
    • Max. 25 fps@5MP (16:9 video output)
    • 2.8 mm fixed lens
    • Max. IR length 20 m, Smart IR
    Specification
    Camera Info
    BrandDahua
    ModelDH-HAC-T1A51P
    Image Sensor1/2.7″ CMOS
    Effective Pixels2592(H)×1944(V), 5MP
    IR DistanceUp to 20m (66feet)
    Camera Lens
    Lens TypeFixed lens / Fixed iris
    Max ApertureF1.85
    Angle of ViewH: 77.5° (93°, 49°) v: 56.5° (68°, 37°)
    Physical Attributes
    Dimensions85mm×85mm×69mm(3.35″×3.35″×2.72″)
    Weight0.09kg (0.20lb)
    Warranty Information
    Warranty01 Year
    Description

    Dahua HAC-T1A51P 5MP HDCVI IR Dome Camera in bd 

    The Dahua HAC-T1A51P 5MP HDCVI IR Dome Camera is a high-performance security solution that delivers ultra-clear 5MP resolution for superior image quality, ensuring that every detail is captured in high definition. Ideal for both indoor and outdoor surveillance, this dome camera offers advanced HDCVI technology, allowing high-definition video transmission over long distances with no signal loss, making it suitable for large security systems.

    With Infrared (IR) technology, the camera ensures night vision capabilities up to 30 meters, enabling you to monitor areas in total darkness without compromising on image quality. The built-in IR LED lights automatically adjust to provide clear and detailed images even in low-light conditions. This makes the Dahua HAC-T1A51P perfect for round-the-clock surveillance.

    The dome design of this camera makes it a discreet and durable option for indoor environments like hallways, lobbies, or retail spaces. The camera’s IP67-rated weatherproof housing ensures that it performs reliably even in harsh weather conditions, making it suitable for outdoor applications as well. The sleek, compact design allows it to blend seamlessly into various settings without attracting attention.

    This camera is equipped with Dahua's advanced image processing technology, delivering crisp, clear footage with a wide dynamic range. Whether you're monitoring a low-light area or a bright outdoor scene, the Dahua HAC-T1A51P 5MP camera ensures optimal performance with its superior color accuracy and detail retention.

    Buying Suggestions from Dear IT Solution

    For the Dahua HAC-T1A51P 5MP HDCVI IR Dome Camera, trust Dear IT Solution, your go-to source for the best price in Bangladesh and best quality product insured in Bangladesh. We provide genuine products and excellent customer service, ensuring a hassle-free shopping experience.

    Order today at Dear IT Solution for reliable, high-quality surveillance solutions that offer peace of mind and security for your home or business.

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